mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
125 lines
3.1 KiB
Plaintext
125 lines
3.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Input should support maxLength 1`] = `
|
|
<Input
|
|
disabled={false}
|
|
maxLength="3"
|
|
prefixCls="ant-input"
|
|
type="text"
|
|
>
|
|
<input
|
|
className="ant-input"
|
|
disabled={false}
|
|
maxLength="3"
|
|
onKeyDown={[Function]}
|
|
type="text"
|
|
/>
|
|
</Input>
|
|
`;
|
|
|
|
exports[`Input.Search should support suffix 1`] = `
|
|
<Search
|
|
enterButton={false}
|
|
inputPrefixCls="ant-input"
|
|
prefixCls="ant-input-search"
|
|
suffix="suffix"
|
|
>
|
|
<Input
|
|
className="ant-input-search"
|
|
disabled={false}
|
|
onPressEnter={[Function]}
|
|
prefixCls="ant-input"
|
|
suffix={
|
|
Array [
|
|
"suffix",
|
|
<Icon
|
|
className="ant-input-search-icon"
|
|
onClick={[Function]}
|
|
type="search"
|
|
/>,
|
|
]
|
|
}
|
|
type="text"
|
|
>
|
|
<span
|
|
className="ant-input-search ant-input-affix-wrapper"
|
|
>
|
|
<input
|
|
className="ant-input"
|
|
disabled={false}
|
|
onKeyDown={[Function]}
|
|
style={null}
|
|
type="text"
|
|
/>
|
|
<span
|
|
className="ant-input-suffix"
|
|
>
|
|
suffix
|
|
<Icon
|
|
className="ant-input-search-icon"
|
|
key="searchIcon"
|
|
onClick={[Function]}
|
|
type="search"
|
|
>
|
|
<AntdIcon
|
|
className="anticon ant-input-search-icon"
|
|
onClick={[Function]}
|
|
type="search"
|
|
>
|
|
<svg
|
|
className="anticon ant-input-search-icon"
|
|
data-icon="search"
|
|
fill="currentColor"
|
|
height="1em"
|
|
onClick={[Function]}
|
|
viewBox="0 0 1024 1024"
|
|
width="1em"
|
|
>
|
|
<path
|
|
d="M769.2 254.8C726.2 211.7 668.9 188 608 188s-118.2 23.7-161.2 66.8C403.7 297.8 380 355.1 380 416s23.7 118.2 66.8 161.2c43 43.1 100.3 66.8 161.2 66.8s118.2-23.7 161.2-66.8c43.1-43 66.8-100.3 66.8-161.2s-23.7-118.2-66.8-161.2z"
|
|
fill="none"
|
|
key="path-0"
|
|
/>
|
|
<path
|
|
d="M608 112c-167.9 0-304 136.1-304 304 0 70.3 23.9 135 63.9 186.5L114.3 856.1c-3.1 3.1-3.1 8.2 0 11.3l42.3 42.3c3.1 3.1 8.2 3.1 11.3 0l253.6-253.6C473 696.1 537.7 720 608 720c167.9 0 304-136.1 304-304S775.9 112 608 112zm161.2 465.2C726.2 620.3 668.9 644 608 644s-118.2-23.7-161.2-66.8C403.7 534.2 380 476.9 380 416s23.7-118.2 66.8-161.2c43-43.1 100.3-66.8 161.2-66.8s118.2 23.7 161.2 66.8c43.1 43 66.8 100.3 66.8 161.2s-23.7 118.2-66.8 161.2z"
|
|
key="path-1"
|
|
/>
|
|
</svg>
|
|
</AntdIcon>
|
|
</Icon>
|
|
</span>
|
|
</span>
|
|
</Input>
|
|
</Search>
|
|
`;
|
|
|
|
exports[`TextArea should support disabled 1`] = `
|
|
<TextArea
|
|
disabled={true}
|
|
prefixCls="ant-input"
|
|
>
|
|
<textarea
|
|
className="ant-input ant-input-disabled"
|
|
disabled={true}
|
|
onChange={[Function]}
|
|
onKeyDown={[Function]}
|
|
style={Object {}}
|
|
/>
|
|
</TextArea>
|
|
`;
|
|
|
|
exports[`TextArea should support maxLength 1`] = `
|
|
<TextArea
|
|
maxLength="10"
|
|
prefixCls="ant-input"
|
|
>
|
|
<textarea
|
|
className="ant-input"
|
|
maxLength="10"
|
|
onChange={[Function]}
|
|
onKeyDown={[Function]}
|
|
style={Object {}}
|
|
/>
|
|
</TextArea>
|
|
`;
|