@smart-webcomponents-angular/window 9.2.21 → 11.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/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 +3294 -650
- package/package.json +1 -1
- package/source/modules/smart.window.js +2 -1
- package/source/smart.button.js +2 -2
- package/source/smart.combobox.js +2 -2
- package/source/smart.dropdownlist.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.listbox.js +2 -2
- package/source/smart.multilinetextbox.js +2 -2
- package/source/smart.progressbar.js +2 -2
- package/source/smart.scrollbar.js +2 -2
- package/source/smart.textbox.js +2 -2
- package/source/smart.window.js +2 -2
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +58 -4
- 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.window.css +5 -5
- package/demo/src/app/app.component.ts +0 -36
- package/demo/src/app/app.module.ts +0 -16
- package/demo/src/app/main.ts +0 -6
- package/demo/src/main.ts +0 -16
- package/demo/src/polyfills.ts +0 -73
package/demo/angular.json
CHANGED
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"src/assets"
|
|
23
23
|
],
|
|
24
24
|
"styles": [
|
|
25
|
-
"./node_modules/@smart-webcomponents-angular/button/styles/smart.base.css",
|
|
26
|
-
"./node_modules/@smart-webcomponents-angular/button/styles/smart.button.css",
|
|
27
|
-
"./node_modules/@smart-webcomponents-angular/window/styles/smart.window.css",
|
|
25
|
+
"./node_modules/@smart-webcomponents-angular/button/styles/smart.base.css",
|
|
26
|
+
"./node_modules/@smart-webcomponents-angular/button/styles/smart.button.css",
|
|
27
|
+
"./node_modules/@smart-webcomponents-angular/window/styles/smart.window.css",
|
|
28
28
|
"./node_modules/@smart-webcomponents-angular/button/styles/smart.common.css",
|
|
29
29
|
"src/assets/fonts.css",
|
|
30
30
|
"src/assets/styles.css"
|
package/demo/package.json
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"@types/node": "^14.14.31",
|
|
19
19
|
"core-js": "3.9.1",
|
|
20
20
|
"moment": "^2.29.1",
|
|
21
|
-
"@smart-webcomponents-angular/button": "9.2.
|
|
22
|
-
"@smart-webcomponents-angular/window": "9.2.
|
|
21
|
+
"@smart-webcomponents-angular/button": "9.2.22",
|
|
22
|
+
"@smart-webcomponents-angular/window": "9.2.22",
|
|
23
23
|
"rxjs": "^6.6.6",
|
|
24
24
|
"zone.js": "^0.11.4"
|
|
25
25
|
},
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"extends": "./tsconfig.json",
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "./out-tsc/app",
|
|
6
|
-
"types": []
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"main.ts",
|
|
10
|
-
"polyfills.ts"
|
|
11
|
-
],
|
|
12
|
-
"include": [
|
|
13
|
-
"src/**/*.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"extends": "./tsconfig.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"outDir": "./out-tsc/app",
|
|
6
|
+
"types": []
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"main.ts",
|
|
10
|
+
"polyfills.ts"
|
|
11
|
+
],
|
|
12
|
+
"include": [
|
|
13
|
+
"src/**/*.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
package/demo/src/tsconfig.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"compileOnSave": false,
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"outDir": "./dist/out-tsc",
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": false,
|
|
9
|
-
"downlevelIteration": true,
|
|
10
|
-
"experimentalDecorators": true,
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"importHelpers": true,
|
|
13
|
-
"target": "es2015",
|
|
14
|
-
"module": "es2020",
|
|
15
|
-
"lib": [
|
|
16
|
-
"es2018",
|
|
17
|
-
"dom"
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
|
-
"angularCompilerOptions": {
|
|
21
|
-
"enableI18nLegacyMessageIdFormat": false
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
+
{
|
|
3
|
+
"compileOnSave": false,
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"baseUrl": "./",
|
|
6
|
+
"outDir": "./dist/out-tsc",
|
|
7
|
+
"sourceMap": true,
|
|
8
|
+
"declaration": false,
|
|
9
|
+
"downlevelIteration": true,
|
|
10
|
+
"experimentalDecorators": true,
|
|
11
|
+
"moduleResolution": "node",
|
|
12
|
+
"importHelpers": true,
|
|
13
|
+
"target": "es2015",
|
|
14
|
+
"module": "es2020",
|
|
15
|
+
"lib": [
|
|
16
|
+
"es2018",
|
|
17
|
+
"dom"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"angularCompilerOptions": {
|
|
21
|
+
"enableI18nLegacyMessageIdFormat": false
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Background_Complete" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
4
|
+
x="0px" y="0px" viewBox="0 0 66.3 52.9" style="enable-background:new 0 0 66.3 52.9;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#EBEBEB;}
|
|
7
|
+
.st1{fill:#F5F5F5;}
|
|
8
|
+
</style>
|
|
9
|
+
<g>
|
|
10
|
+
<g>
|
|
11
|
+
<g>
|
|
12
|
+
|
|
13
|
+
<rect x="6.8" y="-6.5" transform="matrix(2.345817e-03 -1 1 2.345817e-03 6.6612 59.5521)" class="st0" width="52.7" height="65.9"/>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
<rect x="10.1" y="-4.2" transform="matrix(2.344414e-03 -1 1 2.344414e-03 6.6184 59.509)" class="st1" width="46" height="61.2"/>
|
|
17
|
+
<polygon class="st0" points="2.5,49.4 23.9,20.8 37.1,38.8 46.1,29.2 63.7,49.5 "/>
|
|
18
|
+
<g>
|
|
19
|
+
<g>
|
|
20
|
+
<path class="st0" d="M42.8,17.4c0,2.7-2.2,4.8-4.8,4.8c-2.7,0-4.8-2.2-4.8-4.8c0-2.7,2.2-4.8,4.8-4.8
|
|
21
|
+
C40.7,12.5,42.8,14.7,42.8,17.4z"/>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
package/images/error.png
ADDED
|
Binary file
|
package/images/flags.png
ADDED
|
Binary file
|
|
@@ -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
|