You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
2.9 KiB
136 lines
2.9 KiB
8 years ago
|
exports[`test renders ./components/time-picker/demo/addon.md correctly 1`] = `
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/basic.md correctly 1`] = `
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/disable-options.md correctly 1`] = `
|
||
|
<div>
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="Just Disabled"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="Hide Directly"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/disabled.md correctly 1`] = `
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
disabled=""
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="12:08:23" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/hide-column.md correctly 1`] = `
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="12:08" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/size.md correctly 1`] = `
|
||
|
<div>
|
||
|
<span
|
||
|
class="ant-time-picker ant-time-picker-large">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="12:08:23" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="12:08:23" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
<span
|
||
|
class="ant-time-picker ant-time-picker-small">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="12:08:23" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
|
exports[`test renders ./components/time-picker/demo/value.md correctly 1`] = `
|
||
|
<span
|
||
|
class="ant-time-picker ">
|
||
|
<input
|
||
|
class="ant-time-picker-input"
|
||
|
placeholder="请选择时间"
|
||
|
readonly=""
|
||
|
type="text"
|
||
|
value="" />
|
||
|
<span
|
||
|
class="ant-time-picker-icon" />
|
||
|
</span>
|
||
|
`;
|