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.
 
 

97 lines
2.3 KiB

exports[`test renders ./components/tree-select/demo/basic.md correctly 1`] = `
<span
class="ant-select ant-select-enabled"
style="width:300px;">
<span
aria-autocomplete="list"
aria-haspopup="true"
class="ant-select-selection
ant-select-selection--single"
role="combobox"
tabindex="0">
<span
class="ant-select-selection__rendered">
<span
class="ant-select-selection__placeholder">
Please select
</span>
</span>
<span
class="ant-select-arrow"
style="outline:none;">
<b />
</span>
</span>
</span>
`;
exports[`test renders ./components/tree-select/demo/checkable.md correctly 1`] = `
<span
class="ant-select ant-select-enabled"
style="width:300px;">
<span
aria-autocomplete="list"
aria-haspopup="true"
class="ant-select-selection
ant-select-selection--multiple"
role="combobox">
<ul
class="ant-select-selection__rendered">
<li
class="ant-select-selection__choice"
style="user-select:none;-webkit-user-select:none;"
title="Node1"
unselectable="unselectable">
<span
class="ant-select-selection__choice__remove" />
<span
class="ant-select-selection__choice__content">
Node1
</span>
</li>
<li
class="ant-select-search ant-select-search--inline">
<span
class="ant-select-search__field__wrap">
<input
class="ant-select-search__field"
role="textbox"
value="" />
</span>
</li>
</ul>
<span
class="ant-select-search__field__placeholder"
style="display:none;">
Please select
</span>
</span>
</span>
`;
exports[`test renders ./components/tree-select/demo/treeData.md correctly 1`] = `
<span
class="ant-select ant-select-enabled"
style="width:300px;">
<span
aria-autocomplete="list"
aria-haspopup="true"
class="ant-select-selection
ant-select-selection--single"
role="combobox"
tabindex="0">
<span
class="ant-select-selection__rendered">
<span
class="ant-select-selection__placeholder">
Please select
</span>
</span>
<span
class="ant-select-arrow"
style="outline:none;">
<b />
</span>
</span>
</span>
`;