@progress/kendo-react-dateinputs 15.2.0-develop.1 → 15.2.0-develop.2
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/calendar/components/Calendar.js +1 -1
- package/calendar/components/Calendar.mjs +1 -1
- package/calendar/components/CalendarHeaderTitle.js +1 -1
- package/calendar/components/CalendarHeaderTitle.mjs +17 -5
- package/calendar/components/HorizontalViewList.js +1 -1
- package/calendar/components/HorizontalViewList.mjs +29 -29
- package/calendar/components/MultiViewCalendar.js +1 -1
- package/calendar/components/MultiViewCalendar.mjs +131 -128
- package/calendar/components/TodayCommand.js +1 -1
- package/calendar/components/TodayCommand.mjs +21 -32
- package/calendar/components/View.js +1 -1
- package/calendar/components/View.mjs +66 -66
- package/calendar/components/ViewList.js +1 -1
- package/calendar/components/ViewList.mjs +135 -125
- package/calendar/models/WeekDaysFormat.d.ts +1 -1
- package/common/AdaptiveMode.js +1 -1
- package/common/AdaptiveMode.mjs +30 -31
- package/dateinput/DateInput.js +1 -1
- package/dateinput/DateInput.mjs +35 -36
- package/datepicker/DatePicker.js +1 -1
- package/datepicker/DatePicker.mjs +21 -20
- package/datetimepicker/DateTimePicker.js +1 -1
- package/datetimepicker/DateTimePicker.mjs +15 -14
- package/dist/cdn/js/kendo-react-dateinputs.js +1 -1
- package/messages/index.d.ts +5 -0
- package/messages/index.js +1 -1
- package/messages/index.mjs +46 -44
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
- package/timepicker/TimeList.js +2 -2
- package/timepicker/TimeList.mjs +51 -47
- package/timepicker/TimePart.js +1 -1
- package/timepicker/TimePart.mjs +57 -68
- package/timepicker/TimePicker.d.ts +7 -0
- package/timepicker/TimePicker.js +1 -1
- package/timepicker/TimePicker.mjs +20 -17
- package/timepicker/TimeSelector.js +1 -1
- package/timepicker/TimeSelector.mjs +56 -57
package/timepicker/TimePart.mjs
CHANGED
|
@@ -7,18 +7,18 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import * as n from "react";
|
|
9
9
|
import t from "prop-types";
|
|
10
|
-
import { cloneDate as
|
|
11
|
-
import { Keys as
|
|
12
|
-
import { provideIntlService as
|
|
13
|
-
import { selectNow as
|
|
14
|
-
import { TimeList as
|
|
15
|
-
import { MAX_TIME as
|
|
10
|
+
import { cloneDate as E } from "@progress/kendo-date-math";
|
|
11
|
+
import { Keys as b, classNames as h, uTime as u, getActiveElement as F } from "@progress/kendo-react-common";
|
|
12
|
+
import { provideIntlService as O, provideLocalizationService as R, registerForIntl as k, registerForLocalization as S } from "@progress/kendo-react-intl";
|
|
13
|
+
import { selectNow as y, messages as T, now as L } from "../messages/index.mjs";
|
|
14
|
+
import { TimeList as M } from "./TimeList.mjs";
|
|
15
|
+
import { MAX_TIME as P, MIN_TIME as C, MIDNIGHT_DATE as A } from "../utils.mjs";
|
|
16
16
|
import { TIME_PART as d } from "./models/TimePart.mjs";
|
|
17
|
-
import { isInTimeRange as
|
|
18
|
-
import { Button as
|
|
17
|
+
import { isInTimeRange as K, getNow as _, snapTime as x, generateSnappers as I, timeInRange as z } from "./utils.mjs";
|
|
18
|
+
import { Button as $ } from "@progress/kendo-react-buttons";
|
|
19
19
|
const v = new RegExp(
|
|
20
20
|
`${d.hour}|${d.minute}|${d.second}|${d.dayperiod}|literal`
|
|
21
|
-
),
|
|
21
|
+
), r = class r extends n.Component {
|
|
22
22
|
constructor(i) {
|
|
23
23
|
super(i), this._element = null, this._nowButton = null, this.dateFormatParts = [], this.timeLists = [], this.focus = (s, e) => {
|
|
24
24
|
Promise.resolve().then(() => {
|
|
@@ -27,25 +27,25 @@ const v = new RegExp(
|
|
|
27
27
|
!e && this.state.activeListIndex === -1 && !this.hasActiveButton() && o && o.element && o.focus(s);
|
|
28
28
|
});
|
|
29
29
|
}, this.timeFormatReducer = (s, e) => s + e.pattern, this.timeFormatFilter = (s, e, o) => {
|
|
30
|
-
const
|
|
31
|
-
return
|
|
30
|
+
const a = e >= 1 && o[e - 1];
|
|
31
|
+
return a && a && s.type === "literal" ? v.test(a.type || "") : v.test(s.type || "");
|
|
32
32
|
}, this.focusList = (s) => {
|
|
33
33
|
this.timeLists.length && this.timeLists.reduce(this.listReducer, []).map((e) => s === 1 ? e.next : e.prev).map((e) => e && e.element && e.element.focus({ preventScroll: !0 }));
|
|
34
|
-
}, this.listReducer = (s, e, o,
|
|
34
|
+
}, this.listReducer = (s, e, o, a) => s.length || e.props.id !== this.state.activeListIndex ? s : [
|
|
35
35
|
{
|
|
36
|
-
next:
|
|
37
|
-
prev:
|
|
36
|
+
next: a[o + 1] || e,
|
|
37
|
+
prev: a[o - 1] || e
|
|
38
38
|
}
|
|
39
|
-
], this.showNowButton = () => !this.hasSteps() && this.props.nowButton &&
|
|
39
|
+
], this.showNowButton = () => !this.hasSteps() && this.props.nowButton && K(_(), this.min, this.max), this.handleKeyDown = (s) => {
|
|
40
40
|
const { keyCode: e } = s;
|
|
41
41
|
switch (e) {
|
|
42
|
-
case
|
|
42
|
+
case b.left:
|
|
43
43
|
s.preventDefault(), this.focusList(
|
|
44
44
|
0
|
|
45
45
|
/* Left */
|
|
46
46
|
);
|
|
47
47
|
return;
|
|
48
|
-
case
|
|
48
|
+
case b.right:
|
|
49
49
|
s.preventDefault(), this.focusList(
|
|
50
50
|
1
|
|
51
51
|
/* Right */
|
|
@@ -65,7 +65,7 @@ const v = new RegExp(
|
|
|
65
65
|
}, this.handleChange = (s) => {
|
|
66
66
|
const { onChange: e } = this.props;
|
|
67
67
|
e && e.call(void 0, s);
|
|
68
|
-
}, this.snapTime =
|
|
68
|
+
}, this.snapTime = x(I(this.props.steps, this.props.min || r.defaultProps.min)), this.state = {
|
|
69
69
|
activeListIndex: -1
|
|
70
70
|
}, this.hasActiveButton = this.hasActiveButton.bind(this);
|
|
71
71
|
}
|
|
@@ -76,22 +76,22 @@ const v = new RegExp(
|
|
|
76
76
|
return this._element;
|
|
77
77
|
}
|
|
78
78
|
get value() {
|
|
79
|
-
return
|
|
79
|
+
return z(this.snapTime(E(this.props.value || A)), this.min, this.max);
|
|
80
80
|
}
|
|
81
81
|
get intl() {
|
|
82
|
-
return
|
|
82
|
+
return O(this);
|
|
83
83
|
}
|
|
84
84
|
get min() {
|
|
85
|
-
return this.snapTime(this.props.min ||
|
|
85
|
+
return this.snapTime(this.props.min || r.defaultProps.min);
|
|
86
86
|
}
|
|
87
87
|
get max() {
|
|
88
|
-
return this.snapTime(this.props.max ||
|
|
88
|
+
return this.snapTime(this.props.max || r.defaultProps.max);
|
|
89
89
|
}
|
|
90
90
|
get steps() {
|
|
91
|
-
return this.props.steps ||
|
|
91
|
+
return this.props.steps || r.defaultProps.steps;
|
|
92
92
|
}
|
|
93
93
|
get boundRange() {
|
|
94
|
-
return this.props.boundRange !== void 0 ? this.props.boundRange :
|
|
94
|
+
return this.props.boundRange !== void 0 ? this.props.boundRange : r.defaultProps.boundRange;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* @hidden
|
|
@@ -107,66 +107,55 @@ const v = new RegExp(
|
|
|
107
107
|
* @hidden
|
|
108
108
|
*/
|
|
109
109
|
render() {
|
|
110
|
-
const { format: i, smoothScroll: s, onNowClick: e,
|
|
111
|
-
this.snapTime =
|
|
112
|
-
const
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
mobileMode: w,
|
|
116
|
-
disabled: r
|
|
117
|
-
}),
|
|
118
|
-
o
|
|
119
|
-
);
|
|
120
|
-
this.timeLists = [];
|
|
121
|
-
const b = S(this), y = b.toLanguageString(L, x[L]);
|
|
122
|
-
return /* @__PURE__ */ n.createElement("div", { className: F }, /* @__PURE__ */ n.createElement("div", { className: l(h.header({ c: m })) }, /* @__PURE__ */ n.createElement("span", { className: l(h.title({ c: m })) }, this.intl.formatDate(this.value, this.dateFormatParts.reduce(this.timeFormatReducer, ""))), this.showNowButton() && /* @__PURE__ */ n.createElement(
|
|
123
|
-
j,
|
|
110
|
+
const { format: i, smoothScroll: s, onNowClick: e, disabled: o, mobileMode: a, show: B, onNowKeyDown: N, unstyled: g } = this.props, m = g && g.uTime;
|
|
111
|
+
this.snapTime = x(I(this.steps, this.min)), this.dateFormatParts = this.intl.splitDateFormat(i || r.defaultProps.format).filter(this.timeFormatFilter), this.timeLists = [];
|
|
112
|
+
const w = R(this), D = w.toLanguageString(y, T[y]);
|
|
113
|
+
return /* @__PURE__ */ n.createElement(n.Fragment, null, /* @__PURE__ */ n.createElement("div", { className: h(u.header({ c: m })) }, /* @__PURE__ */ n.createElement("span", { className: h(u.title({ c: m })) }, this.intl.formatDate(this.value, this.dateFormatParts.reduce(this.timeFormatReducer, ""))), this.showNowButton() && /* @__PURE__ */ n.createElement(
|
|
114
|
+
$,
|
|
124
115
|
{
|
|
125
116
|
type: "button",
|
|
126
|
-
ref: (
|
|
127
|
-
this._nowButton =
|
|
117
|
+
ref: (l) => {
|
|
118
|
+
this._nowButton = l;
|
|
128
119
|
},
|
|
129
|
-
|
|
120
|
+
size: a ? "large" : void 0,
|
|
121
|
+
className: h(u.now({ c: m })),
|
|
130
122
|
fillMode: "flat",
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
onKeyDown: E,
|
|
134
|
-
"aria-label": y,
|
|
123
|
+
title: D,
|
|
124
|
+
onKeyDown: N,
|
|
135
125
|
onClick: e,
|
|
136
|
-
tabIndex:
|
|
126
|
+
tabIndex: o ? -1 : 0
|
|
137
127
|
},
|
|
138
|
-
|
|
139
|
-
)), /* @__PURE__ */ n.createElement("div", { className:
|
|
128
|
+
w.toLanguageString(L, T[L])
|
|
129
|
+
)), /* @__PURE__ */ n.createElement("div", { className: h(u.listContainer({ c: m })), onKeyDown: this.handleKeyDown }, /* @__PURE__ */ n.createElement("span", { className: h(u.highlight({ c: m })) }), this.dateFormatParts.map((l, c) => l.type !== "literal" ? /* @__PURE__ */ n.createElement(
|
|
140
130
|
"div",
|
|
141
131
|
{
|
|
142
132
|
key: c,
|
|
143
|
-
className:
|
|
144
|
-
|
|
133
|
+
className: h(
|
|
134
|
+
u.listWrapper({
|
|
145
135
|
c: m,
|
|
146
136
|
focused: c === this.state.activeListIndex
|
|
147
137
|
})
|
|
148
138
|
),
|
|
149
|
-
role: "presentation",
|
|
150
139
|
tabIndex: -1
|
|
151
140
|
},
|
|
152
141
|
/* @__PURE__ */ n.createElement(
|
|
153
142
|
"span",
|
|
154
143
|
{
|
|
155
|
-
className:
|
|
144
|
+
className: h(u.title({ c: m })),
|
|
156
145
|
onMouseDown: (p) => {
|
|
157
146
|
p.preventDefault();
|
|
158
147
|
}
|
|
159
148
|
},
|
|
160
|
-
this.intl.dateFieldName(
|
|
149
|
+
this.intl.dateFieldName(l)
|
|
161
150
|
),
|
|
162
151
|
/* @__PURE__ */ n.createElement(
|
|
163
|
-
|
|
152
|
+
M,
|
|
164
153
|
{
|
|
165
154
|
min: this.min,
|
|
166
155
|
max: this.max,
|
|
167
156
|
boundRange: this.boundRange,
|
|
168
|
-
part:
|
|
169
|
-
step:
|
|
157
|
+
part: l,
|
|
158
|
+
step: l.type ? this.steps[l.type] : 1,
|
|
170
159
|
smoothScroll: s,
|
|
171
160
|
ref: (p) => {
|
|
172
161
|
p && this.timeLists.push(p);
|
|
@@ -178,19 +167,19 @@ const v = new RegExp(
|
|
|
178
167
|
onBlur: this.handleListBlur,
|
|
179
168
|
onChange: this.handleChange,
|
|
180
169
|
value: this.value,
|
|
181
|
-
disabled:
|
|
182
|
-
show:
|
|
183
|
-
mobileMode:
|
|
170
|
+
disabled: o,
|
|
171
|
+
show: B,
|
|
172
|
+
mobileMode: a,
|
|
184
173
|
unstyled: g
|
|
185
174
|
}
|
|
186
175
|
)
|
|
187
|
-
) : /* @__PURE__ */ n.createElement("div", { key: c, className:
|
|
176
|
+
) : /* @__PURE__ */ n.createElement("div", { key: c, className: h(u.separator({ c: m })) }, l.pattern))));
|
|
188
177
|
}
|
|
189
178
|
nextTick(i) {
|
|
190
179
|
clearTimeout(this.nextTickId), this.nextTickId = window.setTimeout(() => i());
|
|
191
180
|
}
|
|
192
181
|
hasActiveButton() {
|
|
193
|
-
const i =
|
|
182
|
+
const i = F(document);
|
|
194
183
|
return this._nowButton && i === this._nowButton.element;
|
|
195
184
|
}
|
|
196
185
|
hasSteps() {
|
|
@@ -198,7 +187,7 @@ const v = new RegExp(
|
|
|
198
187
|
return i.length !== i.reduce((s, e) => s + this.steps[e], 0);
|
|
199
188
|
}
|
|
200
189
|
};
|
|
201
|
-
|
|
190
|
+
r.propTypes = {
|
|
202
191
|
cancelButton: t.bool,
|
|
203
192
|
disabled: t.bool,
|
|
204
193
|
format: t.oneOfType([
|
|
@@ -233,20 +222,20 @@ a.propTypes = {
|
|
|
233
222
|
tabIndex: t.number,
|
|
234
223
|
value: t.instanceOf(Date),
|
|
235
224
|
show: t.bool
|
|
236
|
-
},
|
|
225
|
+
}, r.defaultProps = {
|
|
237
226
|
value: null,
|
|
238
227
|
disabled: !1,
|
|
239
228
|
nowButton: !0,
|
|
240
229
|
cancelButton: !0,
|
|
241
230
|
format: "hh:mm a",
|
|
242
|
-
min:
|
|
243
|
-
max:
|
|
231
|
+
min: C,
|
|
232
|
+
max: P,
|
|
244
233
|
steps: {},
|
|
245
234
|
boundRange: !1
|
|
246
235
|
};
|
|
247
|
-
let f =
|
|
248
|
-
|
|
249
|
-
|
|
236
|
+
let f = r;
|
|
237
|
+
k(f);
|
|
238
|
+
S(f);
|
|
250
239
|
export {
|
|
251
240
|
f as TimePart
|
|
252
241
|
};
|
|
@@ -135,6 +135,13 @@ export interface TimePickerProps extends TimePickerSettings, FormComponentProps,
|
|
|
135
135
|
* Applicable only when `adaptive` is set to `true`.
|
|
136
136
|
*/
|
|
137
137
|
adaptiveSubtitle?: string;
|
|
138
|
+
/**
|
|
139
|
+
* Controls the Popup animation.
|
|
140
|
+
* Set to `false` to disable animation.
|
|
141
|
+
*
|
|
142
|
+
* @default true
|
|
143
|
+
*/
|
|
144
|
+
animation?: boolean;
|
|
138
145
|
/**
|
|
139
146
|
* @hidden
|
|
140
147
|
*/
|
package/timepicker/TimePicker.js
CHANGED
|
@@ -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 X=require("react"),e=require("prop-types"),Z=require("@progress/kendo-react-popup"),y=require("@progress/kendo-date-math"),n=require("@progress/kendo-react-common"),$=require("@progress/kendo-svg-icons"),P=require("@progress/kendo-react-intl"),T=require("../package-metadata.js"),l=require("../messages/index.js"),J=require("../dateinput/DateInput.js"),Q=require("./TimeSelector.js"),p=require("../utils.js"),g=require("./utils.js"),Y=require("../hooks/usePickerFloatingLabel.js"),ee=require("@progress/kendo-react-buttons"),te=require("../common/AdaptiveMode.js"),ie=require("@progress/kendo-react-layout");function se(c){const s=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(c){for(const t in c)if(t!=="default"){const i=Object.getOwnPropertyDescriptor(c,t);Object.defineProperty(s,t,i.get?i:{enumerable:!0,get:()=>c[t]})}}return s.default=c,Object.freeze(s)}const a=se(X),r=class r extends a.Component{constructor(s){super(s),this._element=null,this._dateInput=a.createRef(),this._timeSelector=null,this.shouldFocusDateInput=!1,this.prevShow=!1,this.showLicenseWatermark=!1,this.handleKendoPasteValue=t=>{if(t instanceof Date&&!isNaN(t.getTime())){this.applyKendoPasteTime(t);return}const i=t!=null?String(t):"";if(!i)return;const o=new Date(i);isNaN(o.getTime())||this.applyKendoPasteTime(o)},this.applyKendoPasteTime=t=>{const i=this.normalizeTime(t);if(!g.isInRange(i,this.min,this.max))return;const o=new Event("change",{bubbles:!0}),h={target:this._element,currentTarget:this._element,nativeEvent:o};this.handleValueChange({syntheticEvent:h,nativeEvent:o,value:i})},this.focus=()=>{this.dateInput&&this.dateInput.focus()},this.renderTimeSelector=()=>{const{smoothScroll:t,cancelButton:i,nowButton:o,disabled:h,format:d,steps:u,unstyled:f}=this.props;return a.createElement(Q.TimeSelector,{ref:this.setTimeSelectorRef,mobileMode:this.mobileMode,show:this.show,cancelButton:i,disabled:h,nowButton:o,format:d,min:this.min,max:this.max,steps:u,smoothScroll:t,value:this.value,footer:!this.mobileMode,handleTimeChange:this.mobileMode&&this.handleTimeChange,onChange:this.handleValueChange,onReject:this.handleValueReject,unstyled:f})},this.renderPopup=()=>{const{popupClass:t,...i}=this.popupSettings,{unstyled:o}=this.props,h=o&&o.uTimePicker,d=n.classNames(t),u={popupClass:n.uTimePicker.popup({c:h}),show:this.show,animate:this.element!==null,anchor:this.element,className:d,id:this._popupId,anchorAlign:{horizontal:"left",vertical:"bottom"},popupAlign:{horizontal:"left",vertical:"top"},...i};return this.props.popup?a.createElement(this.props.popup,{...u},this.renderTimeSelector()):a.createElement(Z.Popup,{...u},this.renderTimeSelector())},this.renderAdaptivePopup=()=>{const{windowWidth:t=0}=this.state,i={expand:this.show,onClose:this.handleBlur,title:this.props.adaptiveTitle||this.props.label,subTitle:this.props.adaptiveSubtitle,windowWidth:t,footer:{cancelText:this.localizationService.toLanguageString(l.toggleClock,l.messages[l.timePickerCancel]),onCancel:this.handleValueReject,applyText:this.localizationService.toLanguageString(l.timePickerSet,l.messages[l.timePickerSet]),onApply:o=>this.handleValueChange(o)}};return a.createElement(te.AdaptiveMode,{...i},a.createElement(ie.ActionSheetContent,null,this.renderTimeSelector()))},this.setTimeSelectorRef=t=>{this._timeSelector=t},this.nextValue=(t,i)=>t.value!==void 0?t.value:i.value,this.nextShow=(t,i)=>t.show!==void 0?t.show:i.show,this.handleInputValueChange=t=>{const i=this.mergeTime(t.value);this.handleValueChange({...t,value:i})},this.handleTimeChange=t=>{this.setState({candidate:t.time})},this.handleValueChange=t=>{this.setState({value:y.cloneDate(t.value||this.state.candidate)}),this.valueDuringOnChange=t.value,this.showDuringOnChange=!1,this.mobileMode||(this.shouldFocusDateInput=!0);const{onChange:i}=this.props,o=this.valueDuringOnChange!==void 0?this.value:this.state.candidate||this.value;i&&i.call(void 0,{syntheticEvent:t.syntheticEvent,nativeEvent:t.nativeEvent,value:o,show:this.show,target:this}),this.valueDuringOnChange=void 0,this.showDuringOnChange=void 0,this.setState({candidate:null}),this.setShow(!1)},this.handleFocus=()=>{this.setState({focused:!0})},this.handleBlur=()=>{this.setState({focused:!1}),this.setShow(!1)},this.handleValueReject=t=>{this.mobileMode||(this.shouldFocusDateInput=!0),this.setShow(!1)},this.handleClick=t=>{this.props.disabled||(this.shouldFocusDateInput=!0,this.setShow(!this.show))},this.handleIconMouseDown=t=>{t.preventDefault()},this.handleKeyDown=t=>{const{altKey:i,keyCode:o}=t;if(o===n.Keys.esc){this.shouldFocusDateInput=!0,this.setShow(!1);return}i&&(o===n.Keys.up||o===n.Keys.down)&&(t.preventDefault(),t.stopPropagation(),this.shouldFocusDateInput=o===n.Keys.up,this.setShow(o===n.Keys.down))},this.showLicenseWatermark=!n.validatePackage(T.packageMetadata,{component:"TimePicker"}),this.licenseMessage=n.getLicenseMessage(T.packageMetadata),this.state={value:this.props.defaultValue||r.defaultProps.defaultValue,show:this.props.defaultShow||r.defaultProps.defaultShow,focused:!1,candidate:null},this.normalizeTime=this.normalizeTime.bind(this),this.setShow=this.setShow.bind(this),this.mergeTime=this.mergeTime.bind(this)}get _popupId(){return this.props.id+"-popup-id"}get document(){if(n.canUseDOM)return this.element&&this.element.ownerDocument||document}get element(){return this._element}get dateInput(){return this._dateInput.current}get timeSelector(){return this._timeSelector}get value(){const s=this.valueDuringOnChange!==void 0?this.valueDuringOnChange:this.props.value!==void 0?this.props.value:this.state.value;return s!==null?y.cloneDate(s):null}get show(){return this.showDuringOnChange!==void 0?this.showDuringOnChange:this.props.show!==void 0?this.props.show:this.state.show}get name(){return this.props.name}get validity(){const s=this.value&&this.normalizeTime(this.value),t=this.normalizeTime(this.min),i=this.normalizeTime(this.max),o=g.isInRange(s,t,i),h=this.props.validationMessage!==void 0,d=(!this.required||this.value!==null)&&o,u=this.props.valid!==void 0?this.props.valid:d;return{customError:h,rangeOverflow:g.isBiggerThanMax(s,i),rangeUnderflow:g.isSmallerThanMin(s,t),valid:u,valueMissing:this.value===null}}get mobileMode(){var t;return!!(this.state.windowWidth&&this.props._adaptiveMode&&this.state.windowWidth<=((t=this.props._adaptiveMode)==null?void 0:t.medium)&&this.props.adaptive)}get validityStyles(){return this.props.validityStyles!==void 0?this.props.validityStyles:r.defaultProps.validityStyles}get required(){return this.props.required!==void 0?this.props.required:!1}get popupSettings(){return this.props.popupSettings||r.defaultProps.popupSettings}get min(){return this.props.min!==void 0?this.props.min:r.defaultProps.min}get max(){return this.props.max!==void 0?this.props.max:r.defaultProps.max}get dateInputComp(){return this.props.dateInput||r.defaultProps.dateInput}get localizationService(){return P.provideLocalizationService(this)}componentDidMount(){var t;this.observerResize=n.canUseDOM&&window.ResizeObserver&&new window.ResizeObserver(this.calculateMedia.bind(this)),this.show&&this.forceUpdate(),(t=this.document)!=null&&t.body&&this.observerResize&&this.observerResize.observe(this.document.body);const s=this.props.name||this.props.id;this.KendoPasteSubscription=n.subscribeToKendoPaste(this._element,{fieldName:s,onValueChange:i=>{this.handleKendoPasteValue(i)}})}componentDidUpdate(){this._timeSelector&&this.show&&!this.prevShow&&this._timeSelector.focusActiveList(),this.mobileMode&&this.show&&!this.prevShow&&setTimeout(()=>{this._timeSelector&&this._timeSelector.focusActiveList()},300),this.dateInput&&this.dateInput.element&&!this.show&&this.shouldFocusDateInput&&this.dateInput.element.focus({preventScroll:!0}),this.prevShow=this.show,this.shouldFocusDateInput=!1}componentWillUnmount(){var s,t;(s=this.document)!=null&&s.body&&this.observerResize&&this.observerResize.disconnect(),(t=this.KendoPasteSubscription)==null||t.unsubscribe()}render(){const{size:s=r.defaultProps.size,rounded:t=r.defaultProps.rounded,fillMode:i=r.defaultProps.fillMode,disabled:o,tabIndex:h,title:d,id:u,className:f,format:I,formatPlaceholder:D,width:k,name:O,steps:z,validationMessage:x,required:R,validityStyles:q,ariaLabelledBy:E,ariaDescribedBy:L,unstyled:v,enableMouseWheel:N,autoCorrectParts:B,autoSwitchParts:F,autoSwitchKeys:K,allowCaretMode:V,inputAttributes:A}=this.props,b=v&&v.uTimePicker,w=!this.validityStyles||this.validity.valid,_={disabled:o,format:I,formatPlaceholder:D,id:u,ariaLabelledBy:E,ariaDescribedBy:L,ariaLabel:this.props.ariaLabel,max:this.normalizeTime(this.max),min:this.normalizeTime(this.min),name:O,onChange:this.handleInputValueChange,required:R,steps:z,tabIndex:this.show?-1:h,title:d,valid:this.validity.valid,validationMessage:x,validityStyles:q,value:this.value&&this.normalizeTime(this.value),label:void 0,placeholder:this.state.focused?null:this.props.placeholder,ariaHasPopup:"dialog",ariaExpanded:this.show,enableMouseWheel:N,autoCorrectParts:B,autoSwitchParts:F,autoSwitchKeys:K,allowCaretMode:V,inputAttributes:A},j=this.localizationService.toLanguageString(l.toggleClock,l.messages[l.toggleClock]),W=this.localizationService.toLanguageString(l.toggleTimeSelector,l.messages[l.toggleTimeSelector]),S=a.createElement(n.AsyncFocusBlur,{onFocus:this.handleFocus,onBlur:this.mobileMode?void 0:this.handleBlur,onSyncBlur:this.props.onBlur,onSyncFocus:this.props.onFocus},({onFocus:U,onBlur:H})=>a.createElement(a.Fragment,null,a.createElement("span",{ref:G=>{this._element=G},className:n.classNames(n.uTimePicker.wrapper({c:b,size:s,rounded:t,fillMode:i,invalid:!w,required:this.required,disabled:o}),{"k-focus":this.state.focused},f),onKeyDown:this.handleKeyDown,style:{width:k},onFocus:this.mobileMode?this.handleClick:U,onBlur:H,onClick:this.mobileMode?this.handleClick:void 0},a.createElement(this.dateInputComp,{_ref:this._dateInput,ariaRole:"combobox",ariaControls:this.show?this._popupId:void 0,..._}),a.createElement(ee.Button,{tabIndex:-1,type:"button",icon:"clock",svgIcon:$.clockIcon,onMouseDown:this.handleIconMouseDown,onClick:this.mobileMode?void 0:this.handleClick,title:W,className:n.classNames(n.uTimePicker.inputButton({c:b})),fillMode:i,"aria-label":j}),!this.mobileMode&&this.renderPopup()),this.mobileMode&&this.renderAdaptivePopup(),this.showLicenseWatermark&&a.createElement(n.WatermarkOverlay,{message:this.licenseMessage})));return this.props.label?a.createElement(Y.PickerFloatingLabel,{dateInput:this._dateInput,label:this.props.label,editorId:u,editorValid:w,editorDisabled:this.props.disabled,children:S,style:{width:this.props.width}}):S}normalizeTime(s){return p.setTime(p.MIDNIGHT_DATE,s)}setShow(s){const{onOpen:t,onClose:i}=this.props;this.show!==s&&(this.setState({show:s}),s&&t&&t.call(void 0,{target:this}),!s&&i&&i.call(void 0,{target:this}))}mergeTime(s){return this.value&&s?p.setTime(this.value,s):s}calculateMedia(s){for(const t of s)this.setState({windowWidth:t.target.clientWidth})}};r.displayName="TimePicker",r.propTypes={className:e.string,cancelButton:e.bool,nowButton:e.bool,defaultShow:e.bool,defaultValue:e.instanceOf(Date),disabled:e.bool,format:e.oneOfType([e.string,e.shape({skeleton:e.string,pattern:e.string,date:e.oneOf(["short","medium","long","full"]),time:e.oneOf(["short","medium","long","full"]),datetime:e.oneOf(["short","medium","long","full"]),era:e.oneOf(["narrow","short","long"]),year:e.oneOf(["numeric","2-digit"]),month:e.oneOf(["numeric","2-digit","narrow","short","long"]),day:e.oneOf(["numeric","2-digit"]),weekday:e.oneOf(["narrow","short","long"]),hour:e.oneOf(["numeric","2-digit"]),hour12:e.bool,minute:e.oneOf(["numeric","2-digit"]),second:e.oneOf(["numeric","2-digit"]),timeZoneName:e.oneOf(["short","long"])})]),formatPlaceholder:e.oneOfType([e.oneOf(["wide","narrow","short","formatPattern"]),e.shape({year:e.string,month:e.string,day:e.string,hour:e.string,minute:e.string,second:e.string})]),id:e.string,ariaLabelledBy:e.string,ariaLabel:e.string,ariaDescribedBy:e.string,min:e.instanceOf(Date),max:e.instanceOf(Date),name:e.string,popupSettings:e.shape({animate:e.bool,appendTo:e.any,popupClass:e.string}),dateInput:e.elementType,show:e.bool,steps:e.shape({hour:e.number,minute:e.number,second:e.number}),smoothScroll:e.bool,tabIndex:e.number,title:e.string,value:e.instanceOf(Date),width:e.oneOfType([e.number,e.string]),validationMessage:e.string,required:e.bool,validate:e.bool,valid:e.bool,size:e.oneOf(["small","medium","large"]),rounded:e.oneOf(["small","medium","large","full","none"]),fillMode:e.oneOf(["solid","flat","outline"]),inputAttributes:e.object},r.defaultProps={defaultShow:!1,defaultValue:null,disabled:!1,format:"t",max:p.MAX_TIME,min:p.MIN_TIME,popupSettings:{},tabIndex:0,steps:{},validityStyles:!0,dateInput:J.DateInputInner,size:void 0,rounded:void 0,fillMode:void 0};let m=r;const C=n.createPropsContext(),M=n.withIdHOC(n.withPropsContext(C,n.withUnstyledHOC(n.withAdaptiveModeContext(m))));M.displayName="KendoReactTimePicker";P.registerForLocalization(m);exports.TimePicker=M;exports.TimePickerPropsContext=C;exports.TimePickerWithoutContext=m;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const X=require("react"),e=require("prop-types"),Z=require("@progress/kendo-react-popup"),y=require("@progress/kendo-date-math"),n=require("@progress/kendo-react-common"),$=require("@progress/kendo-svg-icons"),P=require("@progress/kendo-react-intl"),T=require("../package-metadata.js"),l=require("../messages/index.js"),J=require("../dateinput/DateInput.js"),Q=require("./TimeSelector.js"),c=require("../utils.js"),g=require("./utils.js"),Y=require("../hooks/usePickerFloatingLabel.js"),ee=require("@progress/kendo-react-buttons"),te=require("../common/AdaptiveMode.js"),ie=require("@progress/kendo-react-layout");function se(p){const s=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(p){for(const t in p)if(t!=="default"){const i=Object.getOwnPropertyDescriptor(p,t);Object.defineProperty(s,t,i.get?i:{enumerable:!0,get:()=>p[t]})}}return s.default=p,Object.freeze(s)}const a=se(X),r=class r extends a.Component{constructor(s){super(s),this._element=null,this._dateInput=a.createRef(),this._timeSelector=null,this.shouldFocusDateInput=!1,this.prevShow=!1,this.showLicenseWatermark=!1,this.handleKendoPasteValue=t=>{if(t instanceof Date&&!isNaN(t.getTime())){this.applyKendoPasteTime(t);return}const i=t!=null?String(t):"";if(!i)return;const o=new Date(i);isNaN(o.getTime())||this.applyKendoPasteTime(o)},this.applyKendoPasteTime=t=>{const i=this.normalizeTime(t);if(!g.isInRange(i,this.min,this.max))return;const o=new Event("change",{bubbles:!0}),h={target:this._element,currentTarget:this._element,nativeEvent:o};this.handleValueChange({syntheticEvent:h,nativeEvent:o,value:i})},this.focus=()=>{this.dateInput&&this.dateInput.focus()},this.renderTimeSelector=()=>{const{smoothScroll:t,cancelButton:i,nowButton:o,disabled:h,format:d,steps:u,unstyled:f}=this.props;return a.createElement(Q.TimeSelector,{ref:this.setTimeSelectorRef,mobileMode:this.mobileMode,show:this.show,cancelButton:i,disabled:h,nowButton:o,format:d,min:this.min,max:this.max,steps:u,smoothScroll:t,value:this.value,footer:!this.mobileMode,handleTimeChange:this.mobileMode&&this.handleTimeChange,onChange:this.handleValueChange,onReject:this.handleValueReject,unstyled:f})},this.renderPopup=()=>{const{popupClass:t,...i}=this.popupSettings,{unstyled:o}=this.props,h=o&&o.uTimePicker,d=n.classNames(t),u={popupClass:n.uTimePicker.popup({c:h}),show:this.show,animate:this.props.animation===!1?!1:this.element!==null,anchor:this.element,className:d,id:this._popupId,anchorAlign:{horizontal:"left",vertical:"bottom"},popupAlign:{horizontal:"left",vertical:"top"},...i};return this.props.popup?a.createElement(this.props.popup,{...u},this.renderTimeSelector()):a.createElement(Z.Popup,{...u},this.renderTimeSelector())},this.renderAdaptivePopup=()=>{const{windowWidth:t=0}=this.state,i={id:this._popupId,expand:this.show,onClose:this.handleBlur,title:this.props.adaptiveTitle||this.props.label,subTitle:this.props.adaptiveSubtitle,animation:this.props.animation,windowWidth:t,footer:{cancelText:this.localizationService.toLanguageString(l.toggleClock,l.messages[l.timePickerCancel]),onCancel:this.handleValueReject,applyText:this.localizationService.toLanguageString(l.timePickerSet,l.messages[l.timePickerSet]),onApply:o=>this.handleValueChange(o)}};return a.createElement(te.AdaptiveMode,{...i},a.createElement(ie.ActionSheetContent,null,this.renderTimeSelector()))},this.setTimeSelectorRef=t=>{this._timeSelector=t},this.nextValue=(t,i)=>t.value!==void 0?t.value:i.value,this.nextShow=(t,i)=>t.show!==void 0?t.show:i.show,this.handleInputValueChange=t=>{const i=this.mergeTime(t.value);this.handleValueChange({...t,value:i})},this.handleTimeChange=t=>{this.setState({candidate:t.time})},this.handleValueChange=t=>{this.setState({value:y.cloneDate(t.value||this.state.candidate)}),this.valueDuringOnChange=t.value,this.showDuringOnChange=!1,this.mobileMode||(this.shouldFocusDateInput=!0);const{onChange:i}=this.props,o=this.valueDuringOnChange!==void 0?this.value:this.state.candidate||this.value;i&&i.call(void 0,{syntheticEvent:t.syntheticEvent,nativeEvent:t.nativeEvent,value:o,show:this.show,target:this}),this.valueDuringOnChange=void 0,this.showDuringOnChange=void 0,this.setState({candidate:null}),this.setShow(!1)},this.handleFocus=()=>{this.setState({focused:!0})},this.handleBlur=()=>{this.setState({focused:!1}),this.setShow(!1)},this.handleValueReject=t=>{this.mobileMode||(this.shouldFocusDateInput=!0),this.setShow(!1)},this.handleClick=t=>{this.props.disabled||(this.shouldFocusDateInput=!0,this.setShow(!this.show))},this.handleIconMouseDown=t=>{t.preventDefault()},this.handleKeyDown=t=>{const{altKey:i,keyCode:o}=t;if(o===n.Keys.esc){this.shouldFocusDateInput=!0,this.setShow(!1);return}i&&(o===n.Keys.up||o===n.Keys.down)&&(t.preventDefault(),t.stopPropagation(),this.shouldFocusDateInput=o===n.Keys.up,this.setShow(o===n.Keys.down))},this.showLicenseWatermark=!n.validatePackage(T.packageMetadata,{component:"TimePicker"}),this.licenseMessage=n.getLicenseMessage(T.packageMetadata),this.state={value:this.props.defaultValue||r.defaultProps.defaultValue,show:this.props.defaultShow||r.defaultProps.defaultShow,focused:!1,candidate:null},this.normalizeTime=this.normalizeTime.bind(this),this.setShow=this.setShow.bind(this),this.mergeTime=this.mergeTime.bind(this)}get _popupId(){return this.props.id+"-popup-id"}get document(){if(n.canUseDOM)return this.element&&this.element.ownerDocument||document}get element(){return this._element}get dateInput(){return this._dateInput.current}get timeSelector(){return this._timeSelector}get value(){const s=this.valueDuringOnChange!==void 0?this.valueDuringOnChange:this.props.value!==void 0?this.props.value:this.state.value;return s!==null?y.cloneDate(s):null}get show(){return this.showDuringOnChange!==void 0?this.showDuringOnChange:this.props.show!==void 0?this.props.show:this.state.show}get name(){return this.props.name}get validity(){const s=this.value&&this.normalizeTime(this.value),t=this.normalizeTime(this.min),i=this.normalizeTime(this.max),o=g.isInRange(s,t,i),h=this.props.validationMessage!==void 0,d=(!this.required||this.value!==null)&&o,u=this.props.valid!==void 0?this.props.valid:d;return{customError:h,rangeOverflow:g.isBiggerThanMax(s,i),rangeUnderflow:g.isSmallerThanMin(s,t),valid:u,valueMissing:this.value===null}}get mobileMode(){var t;return!!(this.state.windowWidth&&this.props._adaptiveMode&&this.state.windowWidth<=((t=this.props._adaptiveMode)==null?void 0:t.medium)&&this.props.adaptive)}get validityStyles(){return this.props.validityStyles!==void 0?this.props.validityStyles:r.defaultProps.validityStyles}get required(){return this.props.required!==void 0?this.props.required:!1}get popupSettings(){return this.props.popupSettings||r.defaultProps.popupSettings}get min(){return this.props.min!==void 0?this.props.min:r.defaultProps.min}get max(){return this.props.max!==void 0?this.props.max:r.defaultProps.max}get dateInputComp(){return this.props.dateInput||r.defaultProps.dateInput}get localizationService(){return P.provideLocalizationService(this)}componentDidMount(){var t;this.observerResize=n.canUseDOM&&window.ResizeObserver&&new window.ResizeObserver(this.calculateMedia.bind(this)),this.show&&this.forceUpdate(),(t=this.document)!=null&&t.body&&this.observerResize&&this.observerResize.observe(this.document.body);const s=this.props.name||this.props.id;this.KendoPasteSubscription=n.subscribeToKendoPaste(this._element,{fieldName:s,onValueChange:i=>{this.handleKendoPasteValue(i)}})}componentDidUpdate(){this._timeSelector&&this.show&&!this.prevShow&&this._timeSelector.focusActiveList(),this.mobileMode&&this.show&&!this.prevShow&&setTimeout(()=>{this._timeSelector&&this._timeSelector.focusActiveList()},300),this.dateInput&&this.dateInput.element&&!this.show&&this.shouldFocusDateInput&&this.dateInput.element.focus({preventScroll:!0}),this.prevShow=this.show,this.shouldFocusDateInput=!1}componentWillUnmount(){var s,t;(s=this.document)!=null&&s.body&&this.observerResize&&this.observerResize.disconnect(),(t=this.KendoPasteSubscription)==null||t.unsubscribe()}render(){const{size:s=r.defaultProps.size,rounded:t=r.defaultProps.rounded,fillMode:i=r.defaultProps.fillMode,disabled:o,tabIndex:h,title:d,id:u,className:f,format:I,formatPlaceholder:D,width:k,name:O,steps:z,validationMessage:x,required:R,validityStyles:q,ariaLabelledBy:E,ariaDescribedBy:L,unstyled:v,enableMouseWheel:N,autoCorrectParts:B,autoSwitchParts:F,autoSwitchKeys:K,allowCaretMode:V,inputAttributes:_}=this.props,b=v&&v.uTimePicker,w=!this.validityStyles||this.validity.valid,A={disabled:o,format:I,formatPlaceholder:D,id:u,ariaLabelledBy:E,ariaDescribedBy:L,ariaLabel:this.props.ariaLabel,max:this.normalizeTime(this.max),min:this.normalizeTime(this.min),name:O,onChange:this.handleInputValueChange,required:R,steps:z,tabIndex:this.show?-1:h,title:d,valid:this.validity.valid,validationMessage:x,validityStyles:q,value:this.value&&this.normalizeTime(this.value),label:void 0,placeholder:this.state.focused?null:this.props.placeholder,ariaHasPopup:"dialog",ariaExpanded:this.mobileMode?!1:this.show,enableMouseWheel:N,autoCorrectParts:B,autoSwitchParts:F,autoSwitchKeys:K,allowCaretMode:V,inputAttributes:_},j=this.localizationService.toLanguageString(l.toggleClock,l.messages[l.toggleClock]),W=this.localizationService.toLanguageString(l.toggleTimeSelector,l.messages[l.toggleTimeSelector]),S=a.createElement(n.AsyncFocusBlur,{onFocus:this.handleFocus,onBlur:this.mobileMode?void 0:this.handleBlur,onSyncBlur:this.props.onBlur,onSyncFocus:this.props.onFocus},({onFocus:U,onBlur:H})=>a.createElement(a.Fragment,null,a.createElement("span",{ref:G=>{this._element=G},className:n.classNames(n.uTimePicker.wrapper({c:b,size:s,rounded:t,fillMode:i,invalid:!w,required:this.required,disabled:o}),{"k-focus":this.state.focused},f),onKeyDown:this.handleKeyDown,style:{width:k},onFocus:this.mobileMode?this.handleClick:U,onBlur:H,onClick:this.mobileMode?this.handleClick:void 0},a.createElement(this.dateInputComp,{_ref:this._dateInput,ariaRole:"combobox",ariaControls:this.show?this._popupId:void 0,...A}),a.createElement(ee.Button,{tabIndex:-1,type:"button",disabled:o,icon:"clock",svgIcon:$.clockIcon,onMouseDown:this.handleIconMouseDown,onClick:this.mobileMode?void 0:this.handleClick,title:W,className:n.classNames(n.uTimePicker.inputButton({c:b})),fillMode:i,"aria-label":j}),!this.mobileMode&&this.renderPopup()),this.mobileMode&&this.renderAdaptivePopup(),this.showLicenseWatermark&&a.createElement(n.WatermarkOverlay,{message:this.licenseMessage})));return this.props.label?a.createElement(Y.PickerFloatingLabel,{dateInput:this._dateInput,label:this.props.label,editorId:u,editorValid:w,editorDisabled:this.props.disabled,children:S,style:{width:this.props.width}}):S}normalizeTime(s){return c.setTime(c.MIDNIGHT_DATE,s)}setShow(s){const{onOpen:t,onClose:i}=this.props;this.show!==s&&(this.setState({show:s}),s&&t&&t.call(void 0,{target:this}),!s&&i&&i.call(void 0,{target:this}))}mergeTime(s){return this.value&&s?c.setTime(this.value,s):s}calculateMedia(s){for(const t of s)this.setState({windowWidth:t.target.clientWidth})}};r.displayName="TimePicker",r.propTypes={className:e.string,cancelButton:e.bool,nowButton:e.bool,defaultShow:e.bool,defaultValue:e.instanceOf(Date),disabled:e.bool,format:e.oneOfType([e.string,e.shape({skeleton:e.string,pattern:e.string,date:e.oneOf(["short","medium","long","full"]),time:e.oneOf(["short","medium","long","full"]),datetime:e.oneOf(["short","medium","long","full"]),era:e.oneOf(["narrow","short","long"]),year:e.oneOf(["numeric","2-digit"]),month:e.oneOf(["numeric","2-digit","narrow","short","long"]),day:e.oneOf(["numeric","2-digit"]),weekday:e.oneOf(["narrow","short","long"]),hour:e.oneOf(["numeric","2-digit"]),hour12:e.bool,minute:e.oneOf(["numeric","2-digit"]),second:e.oneOf(["numeric","2-digit"]),timeZoneName:e.oneOf(["short","long"])})]),formatPlaceholder:e.oneOfType([e.oneOf(["wide","narrow","short","formatPattern"]),e.shape({year:e.string,month:e.string,day:e.string,hour:e.string,minute:e.string,second:e.string})]),id:e.string,ariaLabelledBy:e.string,ariaLabel:e.string,ariaDescribedBy:e.string,min:e.instanceOf(Date),max:e.instanceOf(Date),name:e.string,popupSettings:e.shape({animate:e.bool,appendTo:e.any,popupClass:e.string}),dateInput:e.elementType,show:e.bool,steps:e.shape({hour:e.number,minute:e.number,second:e.number}),smoothScroll:e.bool,tabIndex:e.number,title:e.string,value:e.instanceOf(Date),width:e.oneOfType([e.number,e.string]),validationMessage:e.string,required:e.bool,validate:e.bool,valid:e.bool,size:e.oneOf(["small","medium","large"]),rounded:e.oneOf(["small","medium","large","full","none"]),fillMode:e.oneOf(["solid","flat","outline"]),inputAttributes:e.object},r.defaultProps={defaultShow:!1,defaultValue:null,disabled:!1,format:"t",max:c.MAX_TIME,min:c.MIN_TIME,popupSettings:{},tabIndex:0,steps:{},validityStyles:!0,dateInput:J.DateInputInner,size:void 0,rounded:void 0,fillMode:void 0};let m=r;const C=n.createPropsContext(),M=n.withIdHOC(n.withPropsContext(C,n.withUnstyledHOC(n.withAdaptiveModeContext(m))));M.displayName="KendoReactTimePicker";P.registerForLocalization(m);exports.TimePicker=M;exports.TimePickerPropsContext=C;exports.TimePickerWithoutContext=m;
|
|
@@ -9,14 +9,14 @@ import * as a from "react";
|
|
|
9
9
|
import e from "prop-types";
|
|
10
10
|
import { Popup as J } from "@progress/kendo-react-popup";
|
|
11
11
|
import { cloneDate as y } from "@progress/kendo-date-math";
|
|
12
|
-
import { createPropsContext as Q, classNames as
|
|
12
|
+
import { createPropsContext as Q, classNames as c, uTimePicker as g, Keys as d, validatePackage as Y, getLicenseMessage as $, canUseDOM as T, subscribeToKendoPaste as ee, AsyncFocusBlur as te, WatermarkOverlay as ie, withIdHOC as se, withPropsContext as oe, withUnstyledHOC as ae, withAdaptiveModeContext as ne } from "@progress/kendo-react-common";
|
|
13
13
|
import { clockIcon as re } from "@progress/kendo-svg-icons";
|
|
14
14
|
import { provideLocalizationService as le, registerForLocalization as he } from "@progress/kendo-react-intl";
|
|
15
15
|
import { packageMetadata as C } from "../package-metadata.mjs";
|
|
16
16
|
import { timePickerSet as I, messages as u, toggleClock as f, timePickerCancel as de, toggleTimeSelector as M } from "../messages/index.mjs";
|
|
17
17
|
import { DateInputInner as ue } from "../dateinput/DateInput.mjs";
|
|
18
18
|
import { TimeSelector as pe } from "./TimeSelector.mjs";
|
|
19
|
-
import { MIN_TIME as
|
|
19
|
+
import { MIN_TIME as me, MAX_TIME as ce, setTime as P, MIDNIGHT_DATE as ge } from "../utils.mjs";
|
|
20
20
|
import { isInRange as D, isSmallerThanMin as fe, isBiggerThanMax as ve } from "./utils.mjs";
|
|
21
21
|
import { PickerFloatingLabel as be } from "../hooks/usePickerFloatingLabel.mjs";
|
|
22
22
|
import { Button as we } from "@progress/kendo-react-buttons";
|
|
@@ -51,7 +51,7 @@ const n = class n extends a.Component {
|
|
|
51
51
|
}, this.focus = () => {
|
|
52
52
|
this.dateInput && this.dateInput.focus();
|
|
53
53
|
}, this.renderTimeSelector = () => {
|
|
54
|
-
const { smoothScroll: t, cancelButton: i, nowButton: o, disabled: r, format: h, steps: l, unstyled:
|
|
54
|
+
const { smoothScroll: t, cancelButton: i, nowButton: o, disabled: r, format: h, steps: l, unstyled: m } = this.props;
|
|
55
55
|
return /* @__PURE__ */ a.createElement(
|
|
56
56
|
pe,
|
|
57
57
|
{
|
|
@@ -71,14 +71,14 @@ const n = class n extends a.Component {
|
|
|
71
71
|
handleTimeChange: this.mobileMode && this.handleTimeChange,
|
|
72
72
|
onChange: this.handleValueChange,
|
|
73
73
|
onReject: this.handleValueReject,
|
|
74
|
-
unstyled:
|
|
74
|
+
unstyled: m
|
|
75
75
|
}
|
|
76
76
|
);
|
|
77
77
|
}, this.renderPopup = () => {
|
|
78
|
-
const { popupClass: t, ...i } = this.popupSettings, { unstyled: o } = this.props, r = o && o.uTimePicker, h =
|
|
78
|
+
const { popupClass: t, ...i } = this.popupSettings, { unstyled: o } = this.props, r = o && o.uTimePicker, h = c(t), l = {
|
|
79
79
|
popupClass: g.popup({ c: r }),
|
|
80
80
|
show: this.show,
|
|
81
|
-
animate: this.element !== null,
|
|
81
|
+
animate: this.props.animation === !1 ? !1 : this.element !== null,
|
|
82
82
|
anchor: this.element,
|
|
83
83
|
className: h,
|
|
84
84
|
id: this._popupId,
|
|
@@ -95,10 +95,12 @@ const n = class n extends a.Component {
|
|
|
95
95
|
return this.props.popup ? /* @__PURE__ */ a.createElement(this.props.popup, { ...l }, this.renderTimeSelector()) : /* @__PURE__ */ a.createElement(J, { ...l }, this.renderTimeSelector());
|
|
96
96
|
}, this.renderAdaptivePopup = () => {
|
|
97
97
|
const { windowWidth: t = 0 } = this.state, i = {
|
|
98
|
+
id: this._popupId,
|
|
98
99
|
expand: this.show,
|
|
99
100
|
onClose: this.handleBlur,
|
|
100
101
|
title: this.props.adaptiveTitle || this.props.label,
|
|
101
102
|
subTitle: this.props.adaptiveSubtitle,
|
|
103
|
+
animation: this.props.animation,
|
|
102
104
|
windowWidth: t,
|
|
103
105
|
footer: {
|
|
104
106
|
cancelText: this.localizationService.toLanguageString(f, u[de]),
|
|
@@ -283,7 +285,7 @@ const n = class n extends a.Component {
|
|
|
283
285
|
tabIndex: r,
|
|
284
286
|
title: h,
|
|
285
287
|
id: l,
|
|
286
|
-
className:
|
|
288
|
+
className: m,
|
|
287
289
|
format: O,
|
|
288
290
|
formatPlaceholder: z,
|
|
289
291
|
width: k,
|
|
@@ -297,8 +299,8 @@ const n = class n extends a.Component {
|
|
|
297
299
|
unstyled: v,
|
|
298
300
|
enableMouseWheel: A,
|
|
299
301
|
autoCorrectParts: N,
|
|
300
|
-
autoSwitchParts:
|
|
301
|
-
autoSwitchKeys:
|
|
302
|
+
autoSwitchParts: _,
|
|
303
|
+
autoSwitchKeys: K,
|
|
302
304
|
allowCaretMode: q,
|
|
303
305
|
inputAttributes: W
|
|
304
306
|
} = this.props, b = v && v.uTimePicker, w = !this.validityStyles || this.validity.valid, U = {
|
|
@@ -324,11 +326,11 @@ const n = class n extends a.Component {
|
|
|
324
326
|
label: void 0,
|
|
325
327
|
placeholder: this.state.focused ? null : this.props.placeholder,
|
|
326
328
|
ariaHasPopup: "dialog",
|
|
327
|
-
ariaExpanded: this.show,
|
|
329
|
+
ariaExpanded: this.mobileMode ? !1 : this.show,
|
|
328
330
|
enableMouseWheel: A,
|
|
329
331
|
autoCorrectParts: N,
|
|
330
|
-
autoSwitchParts:
|
|
331
|
-
autoSwitchKeys:
|
|
332
|
+
autoSwitchParts: _,
|
|
333
|
+
autoSwitchKeys: K,
|
|
332
334
|
allowCaretMode: q,
|
|
333
335
|
inputAttributes: W
|
|
334
336
|
}, j = this.localizationService.toLanguageString(f, u[f]), H = this.localizationService.toLanguageString(
|
|
@@ -348,7 +350,7 @@ const n = class n extends a.Component {
|
|
|
348
350
|
ref: (Z) => {
|
|
349
351
|
this._element = Z;
|
|
350
352
|
},
|
|
351
|
-
className:
|
|
353
|
+
className: c(
|
|
352
354
|
g.wrapper({
|
|
353
355
|
c: b,
|
|
354
356
|
size: s,
|
|
@@ -359,7 +361,7 @@ const n = class n extends a.Component {
|
|
|
359
361
|
disabled: o
|
|
360
362
|
}),
|
|
361
363
|
{ "k-focus": this.state.focused },
|
|
362
|
-
|
|
364
|
+
m
|
|
363
365
|
),
|
|
364
366
|
onKeyDown: this.handleKeyDown,
|
|
365
367
|
style: { width: k },
|
|
@@ -381,12 +383,13 @@ const n = class n extends a.Component {
|
|
|
381
383
|
{
|
|
382
384
|
tabIndex: -1,
|
|
383
385
|
type: "button",
|
|
386
|
+
disabled: o,
|
|
384
387
|
icon: "clock",
|
|
385
388
|
svgIcon: re,
|
|
386
389
|
onMouseDown: this.handleIconMouseDown,
|
|
387
390
|
onClick: this.mobileMode ? void 0 : this.handleClick,
|
|
388
391
|
title: H,
|
|
389
|
-
className:
|
|
392
|
+
className: c(g.inputButton({ c: b })),
|
|
390
393
|
fillMode: i,
|
|
391
394
|
"aria-label": j
|
|
392
395
|
}
|
|
@@ -506,8 +509,8 @@ n.displayName = "TimePicker", n.propTypes = {
|
|
|
506
509
|
defaultValue: null,
|
|
507
510
|
disabled: !1,
|
|
508
511
|
format: "t",
|
|
509
|
-
max:
|
|
510
|
-
min:
|
|
512
|
+
max: ce,
|
|
513
|
+
min: me,
|
|
511
514
|
popupSettings: {},
|
|
512
515
|
tabIndex: 0,
|
|
513
516
|
steps: {},
|
|
@@ -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 I=require("react"),e=require("prop-types"),g=require("@progress/kendo-date-math"),s=require("@progress/kendo-react-common"),f=require("@progress/kendo-react-intl"),
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const I=require("react"),e=require("prop-types"),g=require("@progress/kendo-date-math"),s=require("@progress/kendo-react-common"),f=require("@progress/kendo-react-intl"),l=require("../messages/index.js"),b=require("../utils.js"),m=require("./utils.js"),K=require("./TimePart.js"),O=require("@progress/kendo-react-buttons");function x(u){const i=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(u){for(const t in u)if(t!=="default"){const n=Object.getOwnPropertyDescriptor(u,t);Object.defineProperty(i,t,n.get?n:{enumerable:!0,get:()=>u[t]})}}return i.default=u,Object.freeze(i)}const a=x(I),c=class c extends a.Component{constructor(i){super(i),this._element=null,this._cancelButton=null,this._acceptButton=null,this.timePart=null,this.focusActiveList=()=>{this.timePart&&this.timePart.focus({preventScroll:!0})},this.handleKeyDown=t=>{const{keyCode:n}=t;switch(n){case s.Keys.enter:this.hasActiveButton()||this.handleAccept(t);return;default:return}},this.revertToNowButton=t=>{const{keyCode:n,shiftKey:o}=t;!o&&n===s.Keys.tab&&(t.preventDefault(),this.props.nowButton!==!1?this.timePart&&this.timePart.focus({preventScroll:!0},!0):this.timePart&&this.timePart.focus({preventScroll:!0}))},this.handleNowKeyDown=t=>{var p;const{keyCode:n,shiftKey:o}=t;o&&n===s.Keys.tab?(t.preventDefault(),this._acceptButton&&((p=this._acceptButton.element)==null||p.focus({preventScroll:!0}))):n===s.Keys.enter&&(t.stopPropagation(),this.handleNowClick(t))},this.handleAccept=t=>{const n=this.mergeValue(g.cloneDate(this.value||m.getNow()),this.timePart?this.timePart.value:this.current);this.setState({value:n}),this.valueDuringOnChange=n;const{onChange:o}=this.props;o&&o.call(void 0,{syntheticEvent:t,nativeEvent:t.nativeEvent,value:this.value,target:this}),this.valueDuringOnChange=void 0},this.handleReject=t=>{this.setState({current:this.value});const{onReject:n}=this.props;n&&n.call(void 0,t)},this.handleNowClick=t=>{const n=this.mergeValue(g.cloneDate(this.value||m.getNow()),m.getNow());this.setState({current:n,value:n}),this.valueDuringOnChange=n;const{onChange:o}=this.props;o&&o.call(void 0,{syntheticEvent:t,nativeEvent:t.nativeEvent,value:this.value,target:this}),this.valueDuringOnChange=void 0},this.handleChange=t=>{this.setState({current:t});const{handleTimeChange:n}=this.props;n&&n.call(void 0,{time:t})},this.dateFormatParts=this.intl.splitDateFormat(this.props.format||c.defaultProps.format),this.mergeValue=m.valueMerger(m.generateGetters(this.dateFormatParts)),this.hasActiveButton=this.hasActiveButton.bind(this),this.state={current:this.props.value||b.MIDNIGHT_DATE,value:this.props.value||c.defaultProps.value}}get element(){return this._element}get value(){const i=this.valueDuringOnChange!==void 0?this.valueDuringOnChange:this.props.value!==void 0?this.props.value:this.state.value;return i!==null?g.cloneDate(i):null}get intl(){return f.provideIntlService(this)}get current(){return this.state.current!==null?g.cloneDate(this.state.current):null}componentWillUnmount(){clearTimeout(this.nextTickId)}render(){const{format:i,cancelButton:t,disabled:n,tabIndex:o,className:p,smoothScroll:P,min:B,max:k,boundRange:N,nowButton:T,steps:S,show:E,mobileMode:w,unstyled:h}=this.props,_=h&&h.uTimePicker,v=h&&h.uTime,y=f.provideLocalizationService(this),C=y.toLanguageString(l.timePickerCancel,l.messages[l.timePickerCancel]),D=y.toLanguageString(l.timePickerSet,l.messages[l.timePickerSet]);return a.createElement(a.Fragment,null,a.createElement("div",{ref:r=>{this._element=r},tabIndex:n?void 0:o||0,className:s.classNames(s.uTimePicker.timeSelector({c:_,mobileMode:w,disabled:n}),p),role:"group","aria-label":"Time selector",onKeyDown:this.handleKeyDown},a.createElement(K.TimePart,{ref:r=>{this.timePart=r},value:this.current,onChange:this.handleChange,onNowClick:this.handleNowClick,format:i,smoothScroll:P,min:B,max:k,boundRange:N,disabled:n,nowButton:T,steps:S,show:E,mobileMode:w,onNowKeyDown:this.handleNowKeyDown,unstyled:h})),this.props.footer&&a.createElement("div",{className:s.classNames(s.uTime.footer({c:v}))},t&&a.createElement(O.Button,{type:"button",ref:r=>{this._cancelButton=r},className:s.classNames(s.uTime.cancel({c:v})),onClick:this.handleReject,title:C},C),a.createElement(O.Button,{type:"button",ref:r=>{this._acceptButton=r},className:s.classNames(s.uTime.accept({c:v})),themeColor:"primary",onClick:this.handleAccept,onKeyDown:this.revertToNowButton,title:D},D)))}nextTick(i){clearTimeout(this.nextTickId),this.nextTickId=window.setTimeout(()=>i())}hasActiveButton(){if(!this._acceptButton||!this._acceptButton.element)return!1;const i=s.getActiveElement(document);return this._acceptButton&&i===this._acceptButton.element||this._cancelButton&&i===this._cancelButton.element}};c.propTypes={cancelButton:e.bool,className:e.string,disabled:e.bool,format:e.oneOfType([e.string,e.shape({skeleton:e.string,pattern:e.string,date:e.oneOf(["short","medium","long","full"]),time:e.oneOf(["short","medium","long","full"]),datetime:e.oneOf(["short","medium","long","full"]),era:e.oneOf(["narrow","short","long"]),year:e.oneOf(["numeric","2-digit"]),month:e.oneOf(["numeric","2-digit","narrow","short","long"]),day:e.oneOf(["numeric","2-digit"]),weekday:e.oneOf(["narrow","short","long"]),hour:e.oneOf(["numeric","2-digit"]),hour12:e.bool,minute:e.oneOf(["numeric","2-digit"]),second:e.oneOf(["numeric","2-digit"]),timeZoneName:e.oneOf(["short","long"])})]),max:e.instanceOf(Date),min:e.instanceOf(Date),nowButton:e.bool,steps:e.shape({hour:e.number,minute:e.number,second:e.number}),smoothScroll:e.bool,tabIndex:e.number,value:e.instanceOf(Date),show:e.bool},c.defaultProps={value:null,disabled:!1,cancelButton:!0,format:"t",min:b.MIN_TIME,max:b.MAX_TIME,boundRange:!1,footer:!0};let d=c;f.registerForIntl(d);f.registerForLocalization(d);exports.TimeSelector=d;
|