@smart-webcomponents-angular/passwordtextbox 9.2.21 → 13.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/i18n.phonenumbers.min.js +501 -0
- package/common/runtime.js +748 -0
- package/demo/angular.json +3 -3
- package/demo/package.json +2 -2
- package/demo/src/tsconfig.app.json +15 -15
- package/demo/src/tsconfig.json +23 -23
- package/esm2020/passwordtextbox/index.mjs +2 -0
- package/{esm2015/passwordtextbox/public_api.js → esm2020/passwordtextbox/public_api.mjs} +0 -0
- package/{esm2015/passwordtextbox/smart-webcomponents-angular-passwordtextbox.js → esm2020/passwordtextbox/smart-webcomponents-angular-passwordtextbox.mjs} +2 -3
- package/esm2020/passwordtextbox/smart.element.mjs +96 -0
- package/esm2020/passwordtextbox/smart.passwordtextbox.mjs +428 -0
- package/esm2020/passwordtextbox/smart.passwordtextbox.module.mjs +18 -0
- package/fesm2015/{smart-webcomponents-angular-passwordtextbox.js → smart-webcomponents-angular-passwordtextbox.mjs} +116 -60
- package/fesm2015/smart-webcomponents-angular-passwordtextbox.mjs.map +1 -0
- package/fesm2020/smart-webcomponents-angular-passwordtextbox.mjs +550 -0
- package/fesm2020/smart-webcomponents-angular-passwordtextbox.mjs.map +1 -0
- package/images/dropable_zone_image.svg +25 -0
- package/images/error.png +0 -0
- package/images/flags.png +0 -0
- package/images/icons-sprite.svg +85 -0
- package/images/icons-stack.svg +132 -0
- package/images/info.png +0 -0
- package/images/magnifier.png +0 -0
- package/images/mail.png +0 -0
- package/images/radial.svg +1 -0
- package/images/success.png +0 -0
- package/images/time.png +0 -0
- package/images/warning.png +0 -0
- package/index.d.ts +3548 -647
- package/package.json +26 -24
- package/passwordtextbox/index.d.ts +1 -0
- package/passwordtextbox/smart-webcomponents-angular-passwordtextbox.d.ts +2 -2
- package/passwordtextbox/smart.element.d.ts +4 -1
- package/passwordtextbox/smart.passwordtextbox.d.ts +10 -1
- package/passwordtextbox/smart.passwordtextbox.module.d.ts +5 -0
- package/source/modules/smart.passwordtextbox.js +1 -1
- package/source/smart.button.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.input.js +2 -2
- package/source/smart.passwordtextbox.js +6 -0
- package/source/smart.tooltip.js +6 -0
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +64 -2
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +4 -4
- package/styles/smart.common.css +1 -1
- package/styles/smart.passwordtextbox.css +2 -2
- package/bundles/smart-webcomponents-angular-passwordtextbox.umd.js +0 -961
- package/bundles/smart-webcomponents-angular-passwordtextbox.umd.min.js +0 -25
- package/demo/src/app/app.component.ts +0 -29
- package/demo/src/app/app.module.ts +0 -15
- package/demo/src/app/main.ts +0 -6
- package/demo/src/main.ts +0 -16
- package/demo/src/polyfills.ts +0 -73
- package/esm2015/passwordtextbox/smart.element.js +0 -83
- package/esm2015/passwordtextbox/smart.passwordtextbox.js +0 -388
- package/esm2015/passwordtextbox/smart.passwordtextbox.module.js +0 -13
- package/fesm2015/smart-webcomponents-angular-passwordtextbox.js.map +0 -1
- package/passwordtextbox/smart-webcomponents-angular-passwordtextbox.metadata.json +0 -1
- package/source/smart.maskedtextbox.js +0 -6
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
#check-mark-component polyline{
|
|
7
|
+
fill:none;
|
|
8
|
+
stroke:#000;
|
|
9
|
+
stroke-width:2;
|
|
10
|
+
stroke-linejoin:round;
|
|
11
|
+
stroke-miterlimit:10;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#check-mark-circle-component rect{
|
|
15
|
+
fill:#000;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#check-mark-circle-component circle{
|
|
19
|
+
fill:#A9A9A9;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#numeric-text-box-arrow-component polygon{
|
|
23
|
+
fill:#808080;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#numeric-text-box-arrow-metro-component path,
|
|
27
|
+
#numeric-text-box-arrow-metro-90deg-component path{
|
|
28
|
+
fill:#808080;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
31
|
+
</defs>
|
|
32
|
+
|
|
33
|
+
<!-- viewBox block -->
|
|
34
|
+
<view id="check-mark" viewBox="0 0 24 24" />
|
|
35
|
+
<view id="check-mark-indetermined" viewBox="0 24 24 24" />
|
|
36
|
+
<view id="check-mark-circle" viewBox="0 48 20 20" />
|
|
37
|
+
<view id="check-mark-empty" viewBox="0 68 1 1" />
|
|
38
|
+
<view id="power-button-on" viewBox="0 80 90 90" />
|
|
39
|
+
<view id="power-button-off" viewBox="0 170 90 90" />
|
|
40
|
+
<view id="numeric-text-box-arrow" viewBox="0 275 10 10" />
|
|
41
|
+
<view id="numeric-text-box-arrow-metro" viewBox="0 285 48 48" />
|
|
42
|
+
<view id="numeric-text-box-arrow-metro-90deg" viewBox="0 335 48 48" />
|
|
43
|
+
|
|
44
|
+
<!-- SVG components block -->
|
|
45
|
+
<!-- Checkbox svg components -->
|
|
46
|
+
<svg id="check-mark-component" x="0" y="0">
|
|
47
|
+
<polyline points="7,13 11,17 19,8 "/>
|
|
48
|
+
</svg>
|
|
49
|
+
<svg id="check-mark-indetermined-component" x="0" y="24">
|
|
50
|
+
<rect x="6" y="11" width="12" height="2" />
|
|
51
|
+
</svg>
|
|
52
|
+
<!-- Radio Button's svg components -->
|
|
53
|
+
<svg id="check-mark-circle-component" x="0" y="48">
|
|
54
|
+
<circle cx="10" cy="10" r="6"/>
|
|
55
|
+
</svg>
|
|
56
|
+
<svg id="check-mark-empty-component" x="0" y="68"></svg>
|
|
57
|
+
|
|
58
|
+
<!-- Power Button's svg elements -->
|
|
59
|
+
<svg id="power-button-on-component" x="16" y="95" style="enable-background:new 0 0 57 57;" fill="white" xml:space="preserve">
|
|
60
|
+
<g>
|
|
61
|
+
<path d="M28.5,29c1.104,0,2-0.896,2-2V2c0-1.104-0.896-2-2-2s-2,0.896-2,2v25C26.5,28.104,27.396,29,28.5,29z"></path>
|
|
62
|
+
<path d="M54.418,29.025c-0.007-0.091-0.013-0.183-0.021-0.274c-0.86-10.027-7.407-18.423-16.403-21.955 c-0.092-0.036-0.182-0.073-0.274-0.108c-0.584-0.221-1.177-0.422-1.78-0.602c-0.044-0.013-0.086-0.031-0.13-0.044 c-0.012-0.003-0.024,0-0.036-0.003C34.551,5.683,33.29,5.419,32,5.244v4.038C42.473,10.963,50.5,20.06,50.5,31 c0,12.131-9.869,22-22,22s-22-9.869-22-22c0-10.94,8.027-20.037,18.5-21.719V5.243c-1.278,0.174-2.529,0.435-3.742,0.786 c-0.012,0.003-0.025,0-0.037,0.003c-0.047,0.014-0.091,0.032-0.137,0.046c-0.604,0.179-1.198,0.379-1.783,0.601 c-0.09,0.034-0.178,0.071-0.268,0.106c-1.255,0.491-2.463,1.076-3.614,1.748c-0.01,0.006-0.02,0.011-0.031,0.017 C8.292,12.705,3.344,20.123,2.603,28.748c-0.008,0.091-0.014,0.183-0.021,0.275C2.533,29.676,2.5,30.334,2.5,31 c0,14.359,11.641,26,26,26s26-11.641,26-26C54.5,30.335,54.467,29.677,54.418,29.025z"></path>
|
|
63
|
+
</g>
|
|
64
|
+
</svg>
|
|
65
|
+
<svg id="power-button-off-component" x="16" y="185" style="enable-background:new 0 0 57 57;" fill="gray" xml:space="preserve">
|
|
66
|
+
<g>
|
|
67
|
+
<path d="M28.5,29c1.104,0,2-0.896,2-2V2c0-1.104-0.896-2-2-2s-2,0.896-2,2v25C26.5,28.104,27.396,29,28.5,29z"></path>
|
|
68
|
+
<path d="M54.418,29.025c-0.007-0.091-0.013-0.183-0.021-0.274c-0.86-10.027-7.407-18.423-16.403-21.955 c-0.092-0.036-0.182-0.073-0.274-0.108c-0.584-0.221-1.177-0.422-1.78-0.602c-0.044-0.013-0.086-0.031-0.13-0.044 c-0.012-0.003-0.024,0-0.036-0.003C34.551,5.683,33.29,5.419,32,5.244v4.038C42.473,10.963,50.5,20.06,50.5,31 c0,12.131-9.869,22-22,22s-22-9.869-22-22c0-10.94,8.027-20.037,18.5-21.719V5.243c-1.278,0.174-2.529,0.435-3.742,0.786 c-0.012,0.003-0.025,0-0.037,0.003c-0.047,0.014-0.091,0.032-0.137,0.046c-0.604,0.179-1.198,0.379-1.783,0.601 c-0.09,0.034-0.178,0.071-0.268,0.106c-1.255,0.491-2.463,1.076-3.614,1.748c-0.01,0.006-0.02,0.011-0.031,0.017 C8.292,12.705,3.344,20.123,2.603,28.748c-0.008,0.091-0.014,0.183-0.021,0.275C2.533,29.676,2.5,30.334,2.5,31 c0,14.359,11.641,26,26,26s26-11.641,26-26C54.5,30.335,54.467,29.677,54.418,29.025z"></path>
|
|
69
|
+
</g>
|
|
70
|
+
</svg>
|
|
71
|
+
|
|
72
|
+
<!-- Numeric text box svg elements -->
|
|
73
|
+
<!-- Numeric text box arrow -->
|
|
74
|
+
<svg id="numeric-text-box-arrow-component" x="0" y="275">
|
|
75
|
+
<polygon points="0,5 5,0 10,5"/>
|
|
76
|
+
</svg>
|
|
77
|
+
<!-- Numeric text box arrow metro theme -->
|
|
78
|
+
<svg id="numeric-text-box-arrow-metro-component" x="0" y="285">
|
|
79
|
+
<path d="M14.83 16.42l9.17 9.17 9.17-9.17 2.83 2.83-12 12-12-12z"/>
|
|
80
|
+
</svg>
|
|
81
|
+
<svg id="numeric-text-box-arrow-metro-90deg-component" x="0" y="335">
|
|
82
|
+
<path d="M17.17 32.92l9.17-9.17-9.17-9.17 2.83-2.83 12 12-12 12z"/>
|
|
83
|
+
</svg>
|
|
84
|
+
|
|
85
|
+
</svg>
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
|
|
4
|
+
|
|
5
|
+
<defs>
|
|
6
|
+
<style>
|
|
7
|
+
svg {
|
|
8
|
+
visibility:hidden;
|
|
9
|
+
}
|
|
10
|
+
svg:target {
|
|
11
|
+
visibility:visible;
|
|
12
|
+
}
|
|
13
|
+
#check-mark polyline{
|
|
14
|
+
fill:none;
|
|
15
|
+
stroke:#000;
|
|
16
|
+
stroke-width:2;
|
|
17
|
+
stroke-linejoin:round;
|
|
18
|
+
stroke-miterlimit:10;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#check-mark-circle rect{
|
|
22
|
+
fill:#000;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
#check-mark-circle circle{
|
|
26
|
+
fill:#A9A9A9;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#numeric-text-box-arrow polygon{
|
|
30
|
+
fill:#808080;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
#numeric-text-box-arrow-metro path,
|
|
34
|
+
#numeric-text-box-arrow-metro-90deg path{
|
|
35
|
+
fill:#808080;
|
|
36
|
+
}
|
|
37
|
+
</style>
|
|
38
|
+
</defs>
|
|
39
|
+
|
|
40
|
+
<!-- Checkbox svg elements -->
|
|
41
|
+
<svg id="check-mark" viewBox="0 0 24 24">
|
|
42
|
+
<polyline style="fill:none; stroke:black; stroke-width:2; stroke-linejoin:round; stroke-miterlimit:10; " points="7,13 11,17 19,8 "/>
|
|
43
|
+
</svg>
|
|
44
|
+
<svg id="check-mark-indetermined" viewBox="-5 -9 15 20">
|
|
45
|
+
<rect style="width:14px; height:2px; fill:black; " />
|
|
46
|
+
</svg>
|
|
47
|
+
|
|
48
|
+
<!-- Checkbox hearth theme svg elements -->
|
|
49
|
+
<svg id="check-mark-heart" viewBox="-30 -10 150 150">
|
|
50
|
+
<g class="heart-loader__group" transform = "rotate(-45 50 50)" translate="-200 200">
|
|
51
|
+
<path class="heart-loader__square" stroke-width="1" fill="none" d="M0,30 0,90 60,90 60,30z"/>
|
|
52
|
+
<path class="heart-loader__circle m--left" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
53
|
+
<path class="heart-loader__circle m--right" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
54
|
+
<path class="heart-loader__heartPath" stroke-width="2" d="M60,30 a30,30 0 0,1 0,60 L0,90 0,30 a30,30 0 0,1 60,0" />
|
|
55
|
+
</g>
|
|
56
|
+
</svg>
|
|
57
|
+
<svg id="check-mark-heart-empty" viewBox="0 0 512 512">
|
|
58
|
+
<path stid="template" d="M340.8,98.4c50.7,0,91.9,41.3,91.9,92.3c0,26.2-10.9,49.8-28.3,66.6L256,407.1L105,254.6c-15.8-16.6-25.6-39.1-25.6-63.9
|
|
59
|
+
c0-51,41.1-92.3,91.9-92.3c38.2,0,70.9,23.4,84.8,56.8C269.8,121.9,302.6,98.4,340.8,98.4 M340.8,83C307,83,276,98.8,256,124.8
|
|
60
|
+
c-20-26-51-41.8-84.8-41.8C112.1,83,64,131.3,64,190.7c0,27.9,10.6,54.4,29.9,74.6L245.1,418l10.9,11l10.9-11l148.3-149.8
|
|
61
|
+
c21-20.3,32.8-47.9,32.8-77.5C448,131.3,399.9,83,340.8,83L340.8,83z"/>
|
|
62
|
+
</svg>
|
|
63
|
+
<svg id="check-mark-heart-empty" viewBox="0 0 512 512">
|
|
64
|
+
<path stid="template" d="M340.8,98.4c50.7,0,91.9,41.3,91.9,92.3c0,26.2-10.9,49.8-28.3,66.6L256,407.1L105,254.6c-15.8-16.6-25.6-39.1-25.6-63.9
|
|
65
|
+
c0-51,41.1-92.3,91.9-92.3c38.2,0,70.9,23.4,84.8,56.8C269.8,121.9,302.6,98.4,340.8,98.4 M340.8,83C307,83,276,98.8,256,124.8
|
|
66
|
+
c-20-26-51-41.8-84.8-41.8C112.1,83,64,131.3,64,190.7c0,27.9,10.6,54.4,29.9,74.6L245.1,418l10.9,11l10.9-11l148.3-149.8
|
|
67
|
+
c21-20.3,32.8-47.9,32.8-77.5C448,131.3,399.9,83,340.8,83L340.8,83z"/>
|
|
68
|
+
</svg>
|
|
69
|
+
<svg id="check-mark-heart-indetermined" viewBox="-30 -10 150 150">
|
|
70
|
+
<g transform = "rotate(-45 50 50)" translate="-200 200" style="fill:lightgray;">
|
|
71
|
+
<path stroke-width="1" fill="none" d="M0,30 0,90 60,90 60,30z"/>
|
|
72
|
+
<path stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
73
|
+
<path stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
74
|
+
<path stroke-width="2" d="M60,30 a30,30 0 0,1 0,60 L0,90 0,30 a30,30 0 0,1 60,0" />
|
|
75
|
+
</g>
|
|
76
|
+
</svg>
|
|
77
|
+
|
|
78
|
+
<!-- Radio Button's svg element -->
|
|
79
|
+
<svg id="check-mark-circle" viewBox="0 0 20 20">
|
|
80
|
+
<circle fill="#A9A9A9" cx="10" cy="10" r="6"/>
|
|
81
|
+
</svg>
|
|
82
|
+
|
|
83
|
+
<!-- Empty svg elements -->
|
|
84
|
+
<svg id="check-mark-empty" viewBox="0 0 24 24"></svg>
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
<!-- Switch Button's hearth theme svg elements -->
|
|
88
|
+
<svg id="switch-mark-heart-gray" viewBox="-10 10 110 110">
|
|
89
|
+
<g class="heart-loader__group" transform = "rotate(-45 50 50)" translate="-200 200" fill="#a6a6a6">
|
|
90
|
+
<path class="heart-loader__square" stroke-width="1" fill="none" d="M0,30 0,90 60,90 60,30z"/>
|
|
91
|
+
<path class="heart-loader__circle m--left" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
92
|
+
<path class="heart-loader__circle m--right" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
93
|
+
<path class="heart-loader__heartPath" stroke-width="2" d="M60,30 a30,30 0 0,1 0,60 L0,90 0,30 a30,30 0 0,1 60,0" />
|
|
94
|
+
</g>
|
|
95
|
+
</svg>
|
|
96
|
+
<svg id="switch-mark-heart-red" viewBox="-10 10 110 110">
|
|
97
|
+
<g class="heart-loader__group" transform = "rotate(-45 50 50)" translate="-200 200" fill="rosybrown">
|
|
98
|
+
<path class="heart-loader__square" stroke-width="1" fill="none" d="M0,30 0,90 60,90 60,30z"/>
|
|
99
|
+
<path class="heart-loader__circle m--left" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
100
|
+
<path class="heart-loader__circle m--right" stroke-width="1" fill="none" d="M60,60 a30,30 0 0,1 -60,0 a30,30 0 0,1 60,0"/>
|
|
101
|
+
<path class="heart-loader__heartPath" stroke-width="2" d="M60,30 a30,30 0 0,1 0,60 L0,90 0,30 a30,30 0 0,1 60,0" />
|
|
102
|
+
</g>
|
|
103
|
+
</svg>
|
|
104
|
+
|
|
105
|
+
<!-- Power Button's svg elements -->
|
|
106
|
+
<svg id="power-button-on" version="1.1" x="0px" y="0px" viewBox="-16 -15 90 90" style="enable-background:new 0 0 57 57;" fill="white" xml:space="preserve">
|
|
107
|
+
<g>
|
|
108
|
+
<path d="M28.5,29c1.104,0,2-0.896,2-2V2c0-1.104-0.896-2-2-2s-2,0.896-2,2v25C26.5,28.104,27.396,29,28.5,29z"></path>
|
|
109
|
+
<path d="M54.418,29.025c-0.007-0.091-0.013-0.183-0.021-0.274c-0.86-10.027-7.407-18.423-16.403-21.955 c-0.092-0.036-0.182-0.073-0.274-0.108c-0.584-0.221-1.177-0.422-1.78-0.602c-0.044-0.013-0.086-0.031-0.13-0.044 c-0.012-0.003-0.024,0-0.036-0.003C34.551,5.683,33.29,5.419,32,5.244v4.038C42.473,10.963,50.5,20.06,50.5,31 c0,12.131-9.869,22-22,22s-22-9.869-22-22c0-10.94,8.027-20.037,18.5-21.719V5.243c-1.278,0.174-2.529,0.435-3.742,0.786 c-0.012,0.003-0.025,0-0.037,0.003c-0.047,0.014-0.091,0.032-0.137,0.046c-0.604,0.179-1.198,0.379-1.783,0.601 c-0.09,0.034-0.178,0.071-0.268,0.106c-1.255,0.491-2.463,1.076-3.614,1.748c-0.01,0.006-0.02,0.011-0.031,0.017 C8.292,12.705,3.344,20.123,2.603,28.748c-0.008,0.091-0.014,0.183-0.021,0.275C2.533,29.676,2.5,30.334,2.5,31 c0,14.359,11.641,26,26,26s26-11.641,26-26C54.5,30.335,54.467,29.677,54.418,29.025z"></path>
|
|
110
|
+
</g>
|
|
111
|
+
</svg>
|
|
112
|
+
<svg id="power-button-off" version="1.1" x="0px" y="0px" viewBox="-16 -15 90 90" style="enable-background:new 0 0 57 57;" fill="gray" xml:space="preserve">
|
|
113
|
+
<g>
|
|
114
|
+
<path d="M28.5,29c1.104,0,2-0.896,2-2V2c0-1.104-0.896-2-2-2s-2,0.896-2,2v25C26.5,28.104,27.396,29,28.5,29z"></path>
|
|
115
|
+
<path d="M54.418,29.025c-0.007-0.091-0.013-0.183-0.021-0.274c-0.86-10.027-7.407-18.423-16.403-21.955 c-0.092-0.036-0.182-0.073-0.274-0.108c-0.584-0.221-1.177-0.422-1.78-0.602c-0.044-0.013-0.086-0.031-0.13-0.044 c-0.012-0.003-0.024,0-0.036-0.003C34.551,5.683,33.29,5.419,32,5.244v4.038C42.473,10.963,50.5,20.06,50.5,31 c0,12.131-9.869,22-22,22s-22-9.869-22-22c0-10.94,8.027-20.037,18.5-21.719V5.243c-1.278,0.174-2.529,0.435-3.742,0.786 c-0.012,0.003-0.025,0-0.037,0.003c-0.047,0.014-0.091,0.032-0.137,0.046c-0.604,0.179-1.198,0.379-1.783,0.601 c-0.09,0.034-0.178,0.071-0.268,0.106c-1.255,0.491-2.463,1.076-3.614,1.748c-0.01,0.006-0.02,0.011-0.031,0.017 C8.292,12.705,3.344,20.123,2.603,28.748c-0.008,0.091-0.014,0.183-0.021,0.275C2.533,29.676,2.5,30.334,2.5,31 c0,14.359,11.641,26,26,26s26-11.641,26-26C54.5,30.335,54.467,29.677,54.418,29.025z"></path>
|
|
116
|
+
</g>
|
|
117
|
+
</svg>
|
|
118
|
+
|
|
119
|
+
<!-- Numeric text box svg elements -->
|
|
120
|
+
<!-- Numeric text box arrow -->
|
|
121
|
+
<svg id="numeric-text-box-arrow" x="0" y="0" viewBox="0 0 10 10">
|
|
122
|
+
<polygon points="0,5 5,0 10,5"/>
|
|
123
|
+
</svg>
|
|
124
|
+
<!-- Numeric text box arrow metro theme -->
|
|
125
|
+
<svg id="numeric-text-box-arrow-metro" x="0" y="0" viewBox="0 0 48 48">
|
|
126
|
+
<path d="M14.83 16.42l9.17 9.17 9.17-9.17 2.83 2.83-12 12-12-12z"/>
|
|
127
|
+
</svg>
|
|
128
|
+
<svg id="numeric-text-box-arrow-metro-90deg" x="0" y="0" viewBox="0 0 48 48">
|
|
129
|
+
<path d="M17.17 32.92l9.17-9.17-9.17-9.17 2.83-2.83 12 12-12 12z"/>
|
|
130
|
+
</svg>
|
|
131
|
+
|
|
132
|
+
</svg>
|
package/images/info.png
ADDED
|
Binary file
|
|
Binary file
|
package/images/mail.png
ADDED
|
Binary file
|