mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
Add focus() blur() and autoFocus to DatePicker (#8345)
This commit is contained in:
parent
4aeb811b72
commit
b44a0c93cd
@ -46,6 +46,8 @@ export default class RangePicker extends React.Component<any, any> {
|
||||
showToday: false,
|
||||
};
|
||||
|
||||
private picker: HTMLSpanElement;
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
const value = props.value || props.defaultValue || [];
|
||||
@ -128,6 +130,18 @@ export default class RangePicker extends React.Component<any, any> {
|
||||
}
|
||||
}
|
||||
|
||||
focus() {
|
||||
this.picker.focus();
|
||||
}
|
||||
|
||||
blur() {
|
||||
this.picker.blur();
|
||||
}
|
||||
|
||||
savePicker = (node: HTMLSpanElement) => {
|
||||
this.picker = node;
|
||||
}
|
||||
|
||||
renderFooter = (...args: any[]) => {
|
||||
const { prefixCls, ranges, renderExtraFooter } = this.props;
|
||||
if (!ranges && !renderExtraFooter) {
|
||||
@ -254,6 +268,7 @@ export default class RangePicker extends React.Component<any, any> {
|
||||
value={(start && start.format(props.format)) || ''}
|
||||
placeholder={startPlaceholder}
|
||||
className={`${prefixCls}-range-picker-input`}
|
||||
tabIndex={-1}
|
||||
/>
|
||||
<span className={`${prefixCls}-range-picker-separator`}> ~ </span>
|
||||
<input
|
||||
@ -262,6 +277,7 @@ export default class RangePicker extends React.Component<any, any> {
|
||||
value={(end && end.format(props.format)) || ''}
|
||||
placeholder={endPlaceholder}
|
||||
className={`${prefixCls}-range-picker-input`}
|
||||
tabIndex={-1}
|
||||
/>
|
||||
{clearIcon}
|
||||
<span className={`${prefixCls}-picker-icon`} />
|
||||
@ -271,11 +287,12 @@ export default class RangePicker extends React.Component<any, any> {
|
||||
|
||||
return (
|
||||
<span
|
||||
ref={this.savePicker}
|
||||
className={classNames(props.className, props.pickerClass)}
|
||||
style={{
|
||||
...style,
|
||||
...pickerStyle,
|
||||
}}
|
||||
style={{ ...style, ...pickerStyle }}
|
||||
tabIndex={props.disabled ? -1 : 0}
|
||||
onFocus={props.onFocus}
|
||||
onBlur={props.onBlur}
|
||||
>
|
||||
<RcDatePicker
|
||||
{...props}
|
||||
|
@ -14,6 +14,9 @@ export default class WeekPicker extends React.Component<any, any> {
|
||||
format: 'YYYY-Wo',
|
||||
allowClear: true,
|
||||
};
|
||||
|
||||
private input: any;
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
const value = props.value || props.defaultValue;
|
||||
@ -63,6 +66,19 @@ export default class WeekPicker extends React.Component<any, any> {
|
||||
e.stopPropagation();
|
||||
this.handleChange(null);
|
||||
}
|
||||
|
||||
focus() {
|
||||
this.input.focus();
|
||||
}
|
||||
|
||||
blur() {
|
||||
this.input.blur();
|
||||
}
|
||||
|
||||
saveInput = (node: any) => {
|
||||
this.input = node;
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
prefixCls, className, disabled, pickerClass, popupStyle,
|
||||
@ -100,11 +116,14 @@ export default class WeekPicker extends React.Component<any, any> {
|
||||
return (
|
||||
<span>
|
||||
<input
|
||||
ref={this.saveInput}
|
||||
disabled={disabled}
|
||||
readOnly
|
||||
value={(value && value.format(format)) || ''}
|
||||
placeholder={placeholder}
|
||||
className={pickerInputClass}
|
||||
onFocus={this.props.onFocus}
|
||||
onBlur={this.props.onBlur}
|
||||
/>
|
||||
{clearIcon}
|
||||
<span className={`${prefixCls}-picker-icon`} />
|
||||
|
6
components/date-picker/__tests__/DatePicker.test.js
Normal file
6
components/date-picker/__tests__/DatePicker.test.js
Normal file
@ -0,0 +1,6 @@
|
||||
import DatePicker from '..';
|
||||
import focusTest from '../../../tests/shared/focusTest';
|
||||
|
||||
describe('DatePicker', () => {
|
||||
focusTest(DatePicker);
|
||||
});
|
6
components/date-picker/__tests__/MonthPicker.test.js
Normal file
6
components/date-picker/__tests__/MonthPicker.test.js
Normal file
@ -0,0 +1,6 @@
|
||||
import { MonthPicker } from '..';
|
||||
import focusTest from '../../../tests/shared/focusTest';
|
||||
|
||||
describe('MonthPicker', () => {
|
||||
focusTest(MonthPicker);
|
||||
});
|
@ -2,8 +2,11 @@ import React from 'react';
|
||||
import { mount, render } from 'enzyme';
|
||||
import moment from 'moment';
|
||||
import { RangePicker } from '../';
|
||||
import focusTest from '../../../tests/shared/focusTest';
|
||||
|
||||
describe('RangePicker', () => {
|
||||
focusTest(RangePicker);
|
||||
|
||||
it('show month panel according to value', () => {
|
||||
const birthday = moment('2000-01-01', 'YYYY-MM-DD').locale('zh-cn');
|
||||
const wrapper = mount(
|
||||
|
6
components/date-picker/__tests__/WeekPicker.test.js
Normal file
6
components/date-picker/__tests__/WeekPicker.test.js
Normal file
@ -0,0 +1,6 @@
|
||||
import { WeekPicker } from '..';
|
||||
import focusTest from '../../../tests/shared/focusTest';
|
||||
|
||||
describe('WeekPicker', () => {
|
||||
focusTest(WeekPicker);
|
||||
});
|
@ -36,6 +36,7 @@ exports[`renders ./components/date-picker/demo/basic.md correctly 1`] = `
|
||||
<br />
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -44,6 +45,7 @@ exports[`renders ./components/date-picker/demo/basic.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -55,6 +57,7 @@ exports[`renders ./components/date-picker/demo/basic.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -100,6 +103,7 @@ exports[`renders ./components/date-picker/demo/date-render.md correctly 1`] = `
|
||||
</span>
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -108,6 +112,7 @@ exports[`renders ./components/date-picker/demo/date-render.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -119,6 +124,7 @@ exports[`renders ./components/date-picker/demo/date-render.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -167,6 +173,7 @@ exports[`renders ./components/date-picker/demo/disabled.md correctly 1`] = `
|
||||
<br />
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="-1"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input ant-input-disabled"
|
||||
@ -176,6 +183,7 @@ exports[`renders ./components/date-picker/demo/disabled.md correctly 1`] = `
|
||||
disabled=""
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value="2015-06-06"
|
||||
/>
|
||||
<span
|
||||
@ -188,6 +196,7 @@ exports[`renders ./components/date-picker/demo/disabled.md correctly 1`] = `
|
||||
disabled=""
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value="2015-06-06"
|
||||
/>
|
||||
<span
|
||||
@ -235,6 +244,7 @@ exports[`renders ./components/date-picker/demo/disabled-date.md correctly 1`] =
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:350px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -243,6 +253,7 @@ exports[`renders ./components/date-picker/demo/disabled-date.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -254,6 +265,7 @@ exports[`renders ./components/date-picker/demo/disabled-date.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -298,6 +310,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
</span>
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -306,6 +319,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -317,6 +331,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -327,6 +342,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:350px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -335,6 +351,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -346,6 +363,7 @@ exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -413,6 +431,7 @@ exports[`renders ./components/date-picker/demo/format.md correctly 1`] = `
|
||||
<br />
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -421,6 +440,7 @@ exports[`renders ./components/date-picker/demo/format.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value="2015/01/01"
|
||||
/>
|
||||
<span
|
||||
@ -432,6 +452,7 @@ exports[`renders ./components/date-picker/demo/format.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value="2015/01/01"
|
||||
/>
|
||||
<i
|
||||
@ -465,6 +486,7 @@ exports[`renders ./components/date-picker/demo/mode.md correctly 1`] = `
|
||||
<br />
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -473,6 +495,7 @@ exports[`renders ./components/date-picker/demo/mode.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start month"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -484,6 +507,7 @@ exports[`renders ./components/date-picker/demo/mode.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End month"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -498,6 +522,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
<div>
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -506,6 +531,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -517,6 +543,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -528,6 +555,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:350px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -536,6 +564,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -547,6 +576,7 @@ exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`]
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -654,6 +684,7 @@ exports[`renders ./components/date-picker/demo/size.md correctly 1`] = `
|
||||
<br />
|
||||
<span
|
||||
class="ant-calendar-picker ant-calendar-picker-default"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -662,6 +693,7 @@ exports[`renders ./components/date-picker/demo/size.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -673,6 +705,7 @@ exports[`renders ./components/date-picker/demo/size.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -755,6 +788,7 @@ exports[`renders ./components/date-picker/demo/time.md correctly 1`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:350px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -763,6 +797,7 @@ exports[`renders ./components/date-picker/demo/time.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start Time"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -774,6 +809,7 @@ exports[`renders ./components/date-picker/demo/time.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End Time"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
|
@ -21,6 +21,8 @@ export default function createPicker(TheCalendar: React.ComponentClass): any {
|
||||
showToday: true,
|
||||
};
|
||||
|
||||
private input: any;
|
||||
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
const value = props.value || props.defaultValue;
|
||||
@ -66,6 +68,18 @@ export default function createPicker(TheCalendar: React.ComponentClass): any {
|
||||
props.onChange(value, (value && value.format(props.format)) || '');
|
||||
}
|
||||
|
||||
focus() {
|
||||
this.input.focus();
|
||||
}
|
||||
|
||||
blur() {
|
||||
this.input.blur();
|
||||
}
|
||||
|
||||
saveInput = (node: any) => {
|
||||
this.input = node;
|
||||
}
|
||||
|
||||
render() {
|
||||
const { value } = this.state;
|
||||
const props = omit(this.props, ['onChange']);
|
||||
@ -130,6 +144,7 @@ export default function createPicker(TheCalendar: React.ComponentClass): any {
|
||||
const input = ({ value: inputValue }: { value: moment.Moment | null }) => (
|
||||
<div>
|
||||
<input
|
||||
ref={this.saveInput}
|
||||
disabled={props.disabled}
|
||||
readOnly
|
||||
value={(inputValue && inputValue.format(props.format)) || ''}
|
||||
@ -146,7 +161,12 @@ export default function createPicker(TheCalendar: React.ComponentClass): any {
|
||||
pickerValue.locale(localeCode);
|
||||
}
|
||||
return (
|
||||
<span className={classNames(props.className, props.pickerClass)} style={props.style}>
|
||||
<span
|
||||
className={classNames(props.className, props.pickerClass)}
|
||||
style={props.style}
|
||||
onFocus={props.onFocus}
|
||||
onBlur={props.onBlur}
|
||||
>
|
||||
<RcDatePicker
|
||||
{...props}
|
||||
{...pickerProps}
|
||||
|
@ -3,6 +3,7 @@ order: 0
|
||||
title:
|
||||
zh-CN: 基本
|
||||
en-US: Basic
|
||||
only: true
|
||||
---
|
||||
|
||||
## zh-CN
|
||||
|
@ -1,3 +1,5 @@
|
||||
@import "../../button/style/mixin";
|
||||
|
||||
.@{calendar-prefix-cls}-picker-container {
|
||||
.reset-component;
|
||||
position: absolute;
|
||||
@ -44,6 +46,10 @@
|
||||
border-color: @primary-color;
|
||||
}
|
||||
|
||||
&:focus &-input:not(.@{ant-prefix}-input-disabled) {
|
||||
.active();
|
||||
}
|
||||
|
||||
&-clear,
|
||||
&-icon {
|
||||
position: absolute;
|
||||
|
@ -40,11 +40,46 @@ export default function wrapPicker(Picker: React.ComponentClass<any>, defaultFor
|
||||
inputPrefixCls: 'ant-input',
|
||||
};
|
||||
|
||||
private picker: any;
|
||||
|
||||
componentDidMount() {
|
||||
const { autoFocus, disabled } = this.props;
|
||||
if (autoFocus && !disabled) {
|
||||
this.focus();
|
||||
}
|
||||
}
|
||||
|
||||
handleOpenChange = (open: boolean) => {
|
||||
const { onOpenChange } = this.props;
|
||||
onOpenChange(open);
|
||||
}
|
||||
|
||||
handleFocus = (e: React.FocusEventHandler<HTMLInputElement>) => {
|
||||
const { onFocus } = this.props;
|
||||
if (onFocus) {
|
||||
onFocus(e);
|
||||
}
|
||||
}
|
||||
|
||||
handleBlur = (e: React.FocusEventHandler<HTMLInputElement>) => {
|
||||
const { onBlur } = this.props;
|
||||
if (onBlur) {
|
||||
onBlur(e);
|
||||
}
|
||||
}
|
||||
|
||||
focus() {
|
||||
this.picker.focus();
|
||||
}
|
||||
|
||||
blur() {
|
||||
this.picker.blur();
|
||||
}
|
||||
|
||||
savePicker = (node: any) => {
|
||||
this.picker = node;
|
||||
}
|
||||
|
||||
getDefaultLocale() {
|
||||
const locale = require('./locale/en_US');
|
||||
return locale.default || locale;
|
||||
@ -84,12 +119,15 @@ export default function wrapPicker(Picker: React.ComponentClass<any>, defaultFor
|
||||
return (
|
||||
<Picker
|
||||
{...props}
|
||||
ref={this.savePicker}
|
||||
pickerClass={pickerClass}
|
||||
pickerInputClass={pickerInputClass}
|
||||
locale={locale}
|
||||
localeCode={localeCode}
|
||||
timePicker={timePicker}
|
||||
onOpenChange={this.handleOpenChange}
|
||||
onFocus={this.handleFocus}
|
||||
onBlur={this.handleBlur}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
@ -1834,6 +1834,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -1842,6 +1843,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -1853,6 +1855,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -1886,6 +1889,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:350px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -1894,6 +1898,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -1905,6 +1910,7 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
|
@ -244,6 +244,7 @@ exports[`renders ./components/locale-provider/demo/all.md correctly 1`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width:200px"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -252,6 +253,7 @@ exports[`renders ./components/locale-provider/demo/all.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -263,6 +265,7 @@ exports[`renders ./components/locale-provider/demo/all.md correctly 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
|
@ -182,6 +182,7 @@ exports[`Locale Provider should display the text as locale changed 1`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -190,6 +191,7 @@ exports[`Locale Provider should display the text as locale changed 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -201,6 +203,7 @@ exports[`Locale Provider should display the text as locale changed 1`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -1746,6 +1749,7 @@ exports[`Locale Provider should display the text as locale changed 2`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -1754,6 +1758,7 @@ exports[`Locale Provider should display the text as locale changed 2`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data de início"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -1765,6 +1770,7 @@ exports[`Locale Provider should display the text as locale changed 2`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data de fim"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -3310,6 +3316,7 @@ exports[`Locale Provider should display the text as locale changed 3`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -3318,6 +3325,7 @@ exports[`Locale Provider should display the text as locale changed 3`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data inicial"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -3329,6 +3337,7 @@ exports[`Locale Provider should display the text as locale changed 3`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data final"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -4874,6 +4883,7 @@ exports[`Locale Provider should display the text as locale changed 4`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -4882,6 +4892,7 @@ exports[`Locale Provider should display the text as locale changed 4`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Начальная дата"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -4893,6 +4904,7 @@ exports[`Locale Provider should display the text as locale changed 4`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Конечная дата"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -6438,6 +6450,7 @@ exports[`Locale Provider should display the text as locale changed 5`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -6446,6 +6459,7 @@ exports[`Locale Provider should display the text as locale changed 5`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Fecha inicial"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -6457,6 +6471,7 @@ exports[`Locale Provider should display the text as locale changed 5`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Fecha final"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -8002,6 +8017,7 @@ exports[`Locale Provider should display the text as locale changed 6`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -8010,6 +8026,7 @@ exports[`Locale Provider should display the text as locale changed 6`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Startdatum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -8021,6 +8038,7 @@ exports[`Locale Provider should display the text as locale changed 6`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Slutdatum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -9566,6 +9584,7 @@ exports[`Locale Provider should display the text as locale changed 7`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -9574,6 +9593,7 @@ exports[`Locale Provider should display the text as locale changed 7`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Date de début"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -9585,6 +9605,7 @@ exports[`Locale Provider should display the text as locale changed 7`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Date de fin"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -11130,6 +11151,7 @@ exports[`Locale Provider should display the text as locale changed 8`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -11138,6 +11160,7 @@ exports[`Locale Provider should display the text as locale changed 8`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Startdatum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -11149,6 +11172,7 @@ exports[`Locale Provider should display the text as locale changed 8`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Enddatum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -12694,6 +12718,7 @@ exports[`Locale Provider should display the text as locale changed 9`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -12702,6 +12727,7 @@ exports[`Locale Provider should display the text as locale changed 9`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Begin datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -12713,6 +12739,7 @@ exports[`Locale Provider should display the text as locale changed 9`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Eind datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -14258,6 +14285,7 @@ exports[`Locale Provider should display the text as locale changed 10`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -14266,6 +14294,7 @@ exports[`Locale Provider should display the text as locale changed 10`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data inicial"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -14277,6 +14306,7 @@ exports[`Locale Provider should display the text as locale changed 10`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data final"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -15822,6 +15852,7 @@ exports[`Locale Provider should display the text as locale changed 11`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -15830,6 +15861,7 @@ exports[`Locale Provider should display the text as locale changed 11`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Od"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -15841,6 +15873,7 @@ exports[`Locale Provider should display the text as locale changed 11`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Do"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -17386,6 +17419,7 @@ exports[`Locale Provider should display the text as locale changed 12`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -17394,6 +17428,7 @@ exports[`Locale Provider should display the text as locale changed 12`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="시작일"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -17405,6 +17440,7 @@ exports[`Locale Provider should display the text as locale changed 12`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="종료일"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -18950,6 +18986,7 @@ exports[`Locale Provider should display the text as locale changed 13`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -18958,6 +18995,7 @@ exports[`Locale Provider should display the text as locale changed 13`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Algus kuupäev"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -18969,6 +19007,7 @@ exports[`Locale Provider should display the text as locale changed 13`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Lõpu kuupäev"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -20514,6 +20553,7 @@ exports[`Locale Provider should display the text as locale changed 14`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -20522,6 +20562,7 @@ exports[`Locale Provider should display the text as locale changed 14`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Od"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -20533,6 +20574,7 @@ exports[`Locale Provider should display the text as locale changed 14`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Do"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -22078,6 +22120,7 @@ exports[`Locale Provider should display the text as locale changed 15`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -22086,6 +22129,7 @@ exports[`Locale Provider should display the text as locale changed 15`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="開始日付"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -22097,6 +22141,7 @@ exports[`Locale Provider should display the text as locale changed 15`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="終了日付"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -23642,6 +23687,7 @@ exports[`Locale Provider should display the text as locale changed 16`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -23650,6 +23696,7 @@ exports[`Locale Provider should display the text as locale changed 16`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Başlangıç Tarihi"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -23661,6 +23708,7 @@ exports[`Locale Provider should display the text as locale changed 16`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Bitiş Tarihi"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -25206,6 +25254,7 @@ exports[`Locale Provider should display the text as locale changed 17`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -25214,6 +25263,7 @@ exports[`Locale Provider should display the text as locale changed 17`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="開始日期"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -25225,6 +25275,7 @@ exports[`Locale Provider should display the text as locale changed 17`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="結束日期"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -26770,6 +26821,7 @@ exports[`Locale Provider should display the text as locale changed 18`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -26778,6 +26830,7 @@ exports[`Locale Provider should display the text as locale changed 18`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Alku päivä"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -26789,6 +26842,7 @@ exports[`Locale Provider should display the text as locale changed 18`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Loppu päivä"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -28334,6 +28388,7 @@ exports[`Locale Provider should display the text as locale changed 19`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -28342,6 +28397,7 @@ exports[`Locale Provider should display the text as locale changed 19`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data początkowa"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -28353,6 +28409,7 @@ exports[`Locale Provider should display the text as locale changed 19`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data końcowa"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -29898,6 +29955,7 @@ exports[`Locale Provider should display the text as locale changed 20`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -29906,6 +29964,7 @@ exports[`Locale Provider should display the text as locale changed 20`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Начална"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -29917,6 +29976,7 @@ exports[`Locale Provider should display the text as locale changed 20`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Крайна"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -31462,6 +31522,7 @@ exports[`Locale Provider should display the text as locale changed 21`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -31470,6 +31531,7 @@ exports[`Locale Provider should display the text as locale changed 21`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Start date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -31481,6 +31543,7 @@ exports[`Locale Provider should display the text as locale changed 21`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="End date"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -33026,6 +33089,7 @@ exports[`Locale Provider should display the text as locale changed 22`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -33034,6 +33098,7 @@ exports[`Locale Provider should display the text as locale changed 22`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Date de début"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -33045,6 +33110,7 @@ exports[`Locale Provider should display the text as locale changed 22`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Date de fin"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -34590,6 +34656,7 @@ exports[`Locale Provider should display the text as locale changed 23`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -34598,6 +34665,7 @@ exports[`Locale Provider should display the text as locale changed 23`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Begin datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -34609,6 +34677,7 @@ exports[`Locale Provider should display the text as locale changed 23`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Eind datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -36154,6 +36223,7 @@ exports[`Locale Provider should display the text as locale changed 24`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -36162,6 +36232,7 @@ exports[`Locale Provider should display the text as locale changed 24`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data d'inizio"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -36173,6 +36244,7 @@ exports[`Locale Provider should display the text as locale changed 24`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Data di fine"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -37718,6 +37790,7 @@ exports[`Locale Provider should display the text as locale changed 25`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -37726,6 +37799,7 @@ exports[`Locale Provider should display the text as locale changed 25`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Ngày bắt đầu"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -37737,6 +37811,7 @@ exports[`Locale Provider should display the text as locale changed 25`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Ngày kết thúc"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -39282,6 +39357,7 @@ exports[`Locale Provider should display the text as locale changed 26`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -39290,6 +39366,7 @@ exports[`Locale Provider should display the text as locale changed 26`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="วันเริ่มต้น"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -39301,6 +39378,7 @@ exports[`Locale Provider should display the text as locale changed 26`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="วันสิ้นสุด"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -40846,6 +40924,7 @@ exports[`Locale Provider should display the text as locale changed 27`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -40854,6 +40933,7 @@ exports[`Locale Provider should display the text as locale changed 27`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="تاریخ شروع"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -40865,6 +40945,7 @@ exports[`Locale Provider should display the text as locale changed 27`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="تاریخ پایان"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -42410,6 +42491,7 @@ exports[`Locale Provider should display the text as locale changed 28`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -42418,6 +42500,7 @@ exports[`Locale Provider should display the text as locale changed 28`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Αρχική ημερομηνία"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -42429,6 +42512,7 @@ exports[`Locale Provider should display the text as locale changed 28`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Τελική ημερομηνία"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -43974,6 +44058,7 @@ exports[`Locale Provider should display the text as locale changed 29`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -43982,6 +44067,7 @@ exports[`Locale Provider should display the text as locale changed 29`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Startdato"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -43993,6 +44079,7 @@ exports[`Locale Provider should display the text as locale changed 29`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Sluttdato"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -45538,6 +45625,7 @@ exports[`Locale Provider should display the text as locale changed 30`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -45546,6 +45634,7 @@ exports[`Locale Provider should display the text as locale changed 30`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Početni datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -45557,6 +45646,7 @@ exports[`Locale Provider should display the text as locale changed 30`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Krajnji datum"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -47102,6 +47192,7 @@ exports[`Locale Provider should display the text as locale changed 31`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -47110,6 +47201,7 @@ exports[`Locale Provider should display the text as locale changed 31`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Upphafsdagur"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -47121,6 +47213,7 @@ exports[`Locale Provider should display the text as locale changed 31`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Lokadagur"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -48666,6 +48759,7 @@ exports[`Locale Provider should display the text as locale changed 32`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -48674,6 +48768,7 @@ exports[`Locale Provider should display the text as locale changed 32`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="البداية"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -48685,6 +48780,7 @@ exports[`Locale Provider should display the text as locale changed 32`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="النهاية"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -50230,6 +50326,7 @@ exports[`Locale Provider should display the text as locale changed 33`] = `
|
||||
<span
|
||||
class="ant-calendar-picker"
|
||||
style="width: 200px;"
|
||||
tabindex="0"
|
||||
>
|
||||
<span
|
||||
class="ant-calendar-picker-input ant-input"
|
||||
@ -50238,6 +50335,7 @@ exports[`Locale Provider should display the text as locale changed 33`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Початкова дата"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
@ -50249,6 +50347,7 @@ exports[`Locale Provider should display the text as locale changed 33`] = `
|
||||
class="ant-calendar-range-picker-input"
|
||||
placeholder="Кінцева дата"
|
||||
readonly=""
|
||||
tabindex="-1"
|
||||
value=""
|
||||
/>
|
||||
<span
|
||||
|
Loading…
Reference in New Issue
Block a user