1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`InputPasswordToggle.vue should render correctly 1`] = `
<div
class="input-password-toggle-container"
>
<b-button
class="input-action-btn btn-icon-only"
title="Show password as plain text. Note: this will visually expose your password on the screen."
variant="link"
>
<svg
aria-hidden="true"
fill="currentColor"
focusable="false"
height="20"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
width="20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,25c-5.3,0-10.9-3.93-12.93-9C5.1,10.93,10.7,7,16,7s10.9,3.93,12.93,9C26.9,21.07,21.3,25,16,25Z"
/>
<path
d="M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z"
/>
</svg>
<span
class="sr-only"
>
Show password as plain text. Note: this will visually expose your password on the screen.
</span>
</b-button>
</div>
`;
|