2017-01-13 21:19:23 +08:00
|
|
|
exports[`test renders ./components/auto-complete/demo/antd.md correctly 1`] = `
|
|
|
|
<div
|
|
|
|
class="ant-select-show-search ant-select-auto-complete ant-select ant-select-combobox ant-select-enabled"
|
|
|
|
style="width:200px;">
|
|
|
|
<div
|
|
|
|
aria-autocomplete="list"
|
|
|
|
aria-expanded="false"
|
|
|
|
aria-haspopup="true"
|
|
|
|
class="ant-select-selection
|
|
|
|
ant-select-selection--single"
|
|
|
|
role="combobox">
|
|
|
|
<div
|
|
|
|
class="ant-select-selection__rendered">
|
|
|
|
<div
|
|
|
|
class="ant-select-selection__placeholder"
|
|
|
|
style="display:block;user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
input here
|
|
|
|
</div>
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
class="ant-select-search ant-select-search--inline">
|
|
|
|
<div
|
|
|
|
class="ant-select-search__field__wrap">
|
|
|
|
<textarea
|
|
|
|
class="ant-input ant-select-search__field" />
|
|
|
|
<span
|
|
|
|
class="ant-select-search__field__mirror" />
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<span
|
|
|
|
class="ant-select-arrow"
|
|
|
|
style="user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
<b />
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2016-11-22 14:28:05 +08:00
|
|
|
exports[`test renders ./components/auto-complete/demo/basic.md correctly 1`] = `
|
|
|
|
<div
|
2017-01-13 21:19:23 +08:00
|
|
|
class="ant-select-show-search ant-select-auto-complete ant-select ant-select-combobox ant-select-enabled"
|
2016-11-22 14:28:05 +08:00
|
|
|
style="width:200px;">
|
|
|
|
<div
|
|
|
|
aria-autocomplete="list"
|
|
|
|
aria-expanded="false"
|
|
|
|
aria-haspopup="true"
|
|
|
|
class="ant-select-selection
|
|
|
|
ant-select-selection--single"
|
|
|
|
role="combobox">
|
|
|
|
<div
|
|
|
|
class="ant-select-selection__rendered">
|
2016-12-03 16:23:35 +08:00
|
|
|
<div
|
|
|
|
class="ant-select-selection__placeholder"
|
|
|
|
style="display:block;user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
input here
|
|
|
|
</div>
|
2016-11-22 14:28:05 +08:00
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
class="ant-select-search ant-select-search--inline">
|
|
|
|
<div
|
|
|
|
class="ant-select-search__field__wrap">
|
|
|
|
<input
|
2017-01-13 21:19:23 +08:00
|
|
|
class="ant-input ant-input ant-select-search__field"
|
|
|
|
type="text"
|
2016-11-22 14:28:05 +08:00
|
|
|
value="" />
|
|
|
|
<span
|
|
|
|
class="ant-select-search__field__mirror" />
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<span
|
|
|
|
class="ant-select-arrow"
|
|
|
|
style="user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
<b />
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
|
|
|
exports[`test renders ./components/auto-complete/demo/options.md correctly 1`] = `
|
|
|
|
<div
|
2017-01-13 21:19:23 +08:00
|
|
|
class="ant-select-show-search ant-select-auto-complete ant-select ant-select-combobox ant-select-enabled"
|
2016-11-22 14:28:05 +08:00
|
|
|
style="width:200px;">
|
|
|
|
<div
|
|
|
|
aria-autocomplete="list"
|
|
|
|
aria-expanded="false"
|
|
|
|
aria-haspopup="true"
|
|
|
|
class="ant-select-selection
|
|
|
|
ant-select-selection--single"
|
|
|
|
role="combobox">
|
|
|
|
<div
|
|
|
|
class="ant-select-selection__rendered">
|
2016-12-03 16:23:35 +08:00
|
|
|
<div
|
|
|
|
class="ant-select-selection__placeholder"
|
|
|
|
style="display:block;user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
input here
|
|
|
|
</div>
|
2016-11-22 14:28:05 +08:00
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
class="ant-select-search ant-select-search--inline">
|
|
|
|
<div
|
|
|
|
class="ant-select-search__field__wrap">
|
|
|
|
<input
|
2017-01-13 21:19:23 +08:00
|
|
|
class="ant-input ant-input ant-select-search__field"
|
|
|
|
type="text"
|
2016-11-22 14:28:05 +08:00
|
|
|
value="" />
|
|
|
|
<span
|
|
|
|
class="ant-select-search__field__mirror" />
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<span
|
|
|
|
class="ant-select-arrow"
|
|
|
|
style="user-select:none;-webkit-user-select:none;"
|
|
|
|
unselectable="unselectable">
|
|
|
|
<b />
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|