mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
86 lines
1.9 KiB
Plaintext
86 lines
1.9 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
||
exports[`TreeSelect TreeSelect Custom Icons should support customized icons 1`] = `
|
||
<div
|
||
class="ant-select ant-tree-select ant-select-multiple ant-select-allow-clear ant-select-show-search"
|
||
>
|
||
<div
|
||
class="ant-select-selector"
|
||
>
|
||
<span
|
||
class="ant-select-selection-item"
|
||
>
|
||
<span
|
||
class="ant-select-selection-item-content"
|
||
>
|
||
my leaf
|
||
</span>
|
||
<span
|
||
aria-hidden="true"
|
||
class="ant-select-selection-item-remove"
|
||
style="user-select: none;"
|
||
unselectable="on"
|
||
>
|
||
<span>
|
||
remove
|
||
</span>
|
||
</span>
|
||
</span>
|
||
<span
|
||
class="ant-select-selection-item"
|
||
>
|
||
<span
|
||
class="ant-select-selection-item-content"
|
||
>
|
||
your leaf
|
||
</span>
|
||
<span
|
||
aria-hidden="true"
|
||
class="ant-select-selection-item-remove"
|
||
style="user-select: none;"
|
||
unselectable="on"
|
||
>
|
||
<span>
|
||
remove
|
||
</span>
|
||
</span>
|
||
</span>
|
||
<span
|
||
class="ant-select-selection-search"
|
||
style="width: 0px;"
|
||
>
|
||
<input
|
||
aria-activedescendant="rc_select_TEST_OR_SSR_list_0"
|
||
aria-autocomplete="list"
|
||
aria-controls="rc_select_TEST_OR_SSR_list"
|
||
aria-haspopup="listbox"
|
||
aria-owns="rc_select_TEST_OR_SSR_list"
|
||
autocomplete="off"
|
||
class="ant-select-selection-search-input"
|
||
id="rc_select_TEST_OR_SSR"
|
||
readonly=""
|
||
role="combobox"
|
||
style="opacity: 0;"
|
||
value=""
|
||
/>
|
||
<span
|
||
aria-hidden="true"
|
||
class="ant-select-selection-search-mirror"
|
||
>
|
||
|
||
</span>
|
||
</span>
|
||
</div>
|
||
<span
|
||
aria-hidden="true"
|
||
class="ant-select-clear"
|
||
style="user-select: none;"
|
||
unselectable="on"
|
||
>
|
||
<span>
|
||
clear
|
||
</span>
|
||
</span>
|
||
</div>
|
||
`;
|