coer-elements 2.0.22 → 2.0.23
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/components/lib/coer-button/coer-button.component.d.ts +1 -1
- package/components/lib/coer-card/coer-card.component.d.ts +13 -0
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/components/lib/components.module.d.ts +41 -40
- package/components/public-api.d.ts +1 -0
- package/fesm2022/coer-elements-components.mjs +27 -1
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +2 -2
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +38 -45
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/fesm2022/coer-elements.mjs +2 -1
- package/fesm2022/coer-elements.mjs.map +1 -1
- package/fonts/consolas.ttf +0 -0
- package/fonts/montserrat.ttf +0 -0
- package/fonts/roboto-monospace.ttf +0 -0
- package/fonts/roboto.ttf +0 -0
- package/index.d.ts +1 -1
- package/package.json +4 -2
- package/styles/border.scss +30 -0
- package/styles/coer-elements.css +17430 -3609
- package/styles/colors.scss +28 -8
- package/styles/containers.scss +1 -1
- package/styles/font.scss +55 -5
- package/styles/icons.scss +34 -4
- package/styles/index.scss +3 -0
- package/styles/layout-flex-wrap.scss +32 -32
- package/styles/layout-grid.scss +12 -5
- package/styles/margin.scss +1 -1
- package/styles/padding.scss +1 -1
- package/styles/paragraph.scss +3 -0
- package/styles/position.scss +20 -4
- package/styles/width-height.scss +145 -0
- package/svg/bulb-light-idea-fill.svg +1 -1
- package/svg/css.svg +3 -0
- package/svg/developer.svg +3 -0
- package/svg/envelope.svg +3 -0
- package/svg/html.svg +3 -0
- package/svg/javascript.svg +3 -0
- package/svg/whatsapp.svg +3 -0
- package/tools/lib/page.tools.d.ts +12 -14
- package/tools/lib/section.tools.d.ts +0 -2
package/styles/colors.scss
CHANGED
@@ -86,33 +86,53 @@ $colors: (
|
|
86
86
|
}
|
87
87
|
|
88
88
|
//Borders
|
89
|
-
.border-#{$key} {
|
89
|
+
.border-color-#{$key} {
|
90
90
|
border-color: $value !important;
|
91
91
|
}
|
92
92
|
|
93
|
-
.border-
|
93
|
+
.border-color-#{$key}-top {
|
94
94
|
border-top-color: $value !important;
|
95
95
|
}
|
96
96
|
|
97
|
-
.border-
|
97
|
+
.border-color-#{$key}-right {
|
98
98
|
border-right-color: $value !important;
|
99
99
|
}
|
100
100
|
|
101
|
-
.border-
|
101
|
+
.border-color-#{$key}-bottom {
|
102
102
|
border-bottom-color: $value !important;
|
103
103
|
}
|
104
104
|
|
105
|
-
.border-
|
105
|
+
.border-color-#{$key}-left {
|
106
106
|
border-left-color: $value !important;
|
107
107
|
}
|
108
108
|
|
109
|
-
//
|
110
|
-
.background-#{$key} {
|
109
|
+
//Backgrounds
|
110
|
+
.background-color-#{$key} {
|
111
111
|
background-color: $value !important;
|
112
112
|
}
|
113
113
|
|
114
|
-
.background-
|
114
|
+
.background-color-#{$key}-border {
|
115
115
|
background-color: $value !important;
|
116
116
|
border-color: $value !important;
|
117
117
|
}
|
118
|
+
|
119
|
+
.background-color-#{$key}-border-top {
|
120
|
+
background-color: $value !important;
|
121
|
+
border-top-color: $value !important;
|
122
|
+
}
|
123
|
+
|
124
|
+
.background-color-#{$key}-border-right {
|
125
|
+
background-color: $value !important;
|
126
|
+
border-right-color: $value !important;
|
127
|
+
}
|
128
|
+
|
129
|
+
.background-color-#{$key}-border-bottom {
|
130
|
+
background-color: $value !important;
|
131
|
+
border-bottom-color: $value !important;
|
132
|
+
}
|
133
|
+
|
134
|
+
.background-color-#{$key}-border-left {
|
135
|
+
background-color: $value !important;
|
136
|
+
border-left-color: $value !important;
|
137
|
+
}
|
118
138
|
}
|
package/styles/containers.scss
CHANGED
package/styles/font.scss
CHANGED
@@ -1,11 +1,61 @@
|
|
1
|
-
|
2
|
-
font-family: 'consolas', 'console', monospace !important;
|
3
|
-
}
|
4
|
-
|
1
|
+
//Font Weight
|
5
2
|
.font-weight-normal {
|
6
3
|
font-weight: normal !important;
|
7
4
|
}
|
8
5
|
|
9
6
|
.font-weight-bold {
|
10
7
|
font-weight: bold !important;
|
11
|
-
}
|
8
|
+
}
|
9
|
+
|
10
|
+
|
11
|
+
//Font Size
|
12
|
+
@for $i from 1 through 50 {
|
13
|
+
.font-size-#{$i}px {
|
14
|
+
font-size: $i * 1px !important;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
//Font Family
|
20
|
+
@font-face {
|
21
|
+
font-family: 'Consolas';
|
22
|
+
src: url('../fonts/consolas.ttf') format('truetype');
|
23
|
+
font-weight: normal;
|
24
|
+
font-style: normal;
|
25
|
+
}
|
26
|
+
.font-family-consolas {
|
27
|
+
font-family: 'Consolas' !important;
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
@font-face {
|
32
|
+
font-family: 'Montserrat';
|
33
|
+
src: url('../fonts/montserrat.ttf') format('truetype');
|
34
|
+
font-weight: normal;
|
35
|
+
font-style: normal;
|
36
|
+
}
|
37
|
+
.font-family-montserrat {
|
38
|
+
font-family: 'Montserrat' !important;
|
39
|
+
}
|
40
|
+
|
41
|
+
|
42
|
+
@font-face {
|
43
|
+
font-family: 'Roboto';
|
44
|
+
src: url('../fonts/roboto.ttf') format('truetype');
|
45
|
+
font-weight: normal;
|
46
|
+
font-style: normal;
|
47
|
+
}
|
48
|
+
.font-family-roboto {
|
49
|
+
font-family: 'Roboto' !important;
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
@font-face {
|
54
|
+
font-family: 'Roboto Monospace';
|
55
|
+
src: url('../fonts/roboto-monospace.ttf') format('truetype');
|
56
|
+
font-weight: normal;
|
57
|
+
font-style: normal;
|
58
|
+
}
|
59
|
+
.font-family-roboto-monospace {
|
60
|
+
font-family: 'Roboto Monospace' !important;
|
61
|
+
}
|
package/styles/icons.scss
CHANGED
@@ -14,9 +14,9 @@
|
|
14
14
|
@include Icon();
|
15
15
|
}
|
16
16
|
|
17
|
-
.coer-icon-
|
17
|
+
.coer-icon-array {
|
18
18
|
@include Icon();
|
19
|
-
mask-image: url('../svg/
|
19
|
+
mask-image: url('../svg/array.svg');
|
20
20
|
}
|
21
21
|
|
22
22
|
.coer-icon-bulb-idea-fill {
|
@@ -24,7 +24,37 @@
|
|
24
24
|
mask-image: url('../svg/bulb-light-idea-fill.svg');
|
25
25
|
}
|
26
26
|
|
27
|
-
.coer-icon-
|
27
|
+
.coer-icon-css {
|
28
28
|
@include Icon();
|
29
|
-
mask-image: url('../svg/
|
29
|
+
mask-image: url('../svg/css.svg');
|
30
|
+
}
|
31
|
+
|
32
|
+
.coer-icon-developer {
|
33
|
+
@include Icon();
|
34
|
+
mask-image: url('../svg/developer.svg');
|
35
|
+
}
|
36
|
+
|
37
|
+
.coer-icon-envelope {
|
38
|
+
@include Icon();
|
39
|
+
mask-image: url('../svg/envelope.svg');
|
40
|
+
}
|
41
|
+
|
42
|
+
.coer-icon-house-fill {
|
43
|
+
@include Icon();
|
44
|
+
mask-image: url('../svg/house-fill.svg');
|
45
|
+
}
|
46
|
+
|
47
|
+
.coer-icon-html {
|
48
|
+
@include Icon();
|
49
|
+
mask-image: url('../svg/html.svg');
|
50
|
+
}
|
51
|
+
|
52
|
+
.coer-icon-javascript {
|
53
|
+
@include Icon();
|
54
|
+
mask-image: url('../svg/javascript.svg');
|
55
|
+
}
|
56
|
+
|
57
|
+
.coer-icon-whatsapp {
|
58
|
+
@include Icon();
|
59
|
+
mask-image: url('../svg/whatsapp.svg');
|
30
60
|
}
|
package/styles/index.scss
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
@use "./animations.scss";
|
2
|
+
@use "./border.scss";
|
2
3
|
@use "./colors.scss";
|
3
4
|
@use "./components.scss";
|
4
5
|
@use "./containers.scss";
|
@@ -11,8 +12,10 @@
|
|
11
12
|
@use "./margin.scss";
|
12
13
|
@use "./overflow.scss";
|
13
14
|
@use "./padding.scss";
|
15
|
+
@use "./paragraph";
|
14
16
|
@use "./position.scss";
|
15
17
|
@use "./scroll-bar.scss";
|
18
|
+
@use "./width-height.scss";
|
16
19
|
|
17
20
|
|
18
21
|
* {
|
@@ -58,38 +58,49 @@
|
|
58
58
|
gap: 10px;
|
59
59
|
}
|
60
60
|
}
|
61
|
-
|
62
61
|
|
63
|
-
@for $i from 1 through 10 {
|
64
|
-
@if($i == 1) {
|
65
|
-
.flex-item-50px {
|
66
|
-
flex-basis: 50px;
|
67
|
-
}
|
68
62
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
}
|
63
|
+
@for $i from 1 through 100 {
|
64
|
+
.flex-item-#{$i}px {
|
65
|
+
flex-basis: $i * 1px !important;
|
73
66
|
}
|
74
67
|
|
75
|
-
.flex-item-#{$i
|
76
|
-
flex-basis: $i *
|
77
|
-
}
|
68
|
+
.flex-item-#{$i} {
|
69
|
+
flex-basis: $i * 1% !important;
|
70
|
+
}
|
78
71
|
|
79
|
-
.flex-item-#{$i
|
80
|
-
flex-
|
81
|
-
|
72
|
+
.flex-item-grow-#{$i}px {
|
73
|
+
flex-grow: 1 !important;
|
74
|
+
flex-basis: $i * 1px !important;
|
75
|
+
}
|
82
76
|
|
83
|
-
.flex-item-grow-#{$i
|
77
|
+
.flex-item-grow-#{$i} {
|
84
78
|
flex-grow: 1 !important;
|
85
|
-
flex-basis: $i *
|
79
|
+
flex-basis: $i * 1% !important;
|
86
80
|
}
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
.flex-item-150px {
|
85
|
+
flex-basis: 150px !important;
|
86
|
+
}
|
87
|
+
|
88
|
+
.flex-item-grow-150px {
|
89
|
+
flex-grow: 1 !important;
|
90
|
+
flex-basis: 150px !important;
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
@for $i from 2 through 10 {
|
95
|
+
.flex-item-#{$i * 100}px {
|
96
|
+
flex-basis: $i * 100px !important;
|
97
|
+
}
|
87
98
|
|
88
99
|
.flex-item-grow-#{$i * 100}px {
|
89
100
|
flex-grow: 1 !important;
|
90
|
-
flex-basis: $i * 100px;
|
91
|
-
}
|
92
|
-
|
101
|
+
flex-basis: $i * 100px !important;
|
102
|
+
}
|
103
|
+
|
93
104
|
@if($i * 100 + 50 < 1000) {
|
94
105
|
.flex-item-#{$i * 100 + 50}px {
|
95
106
|
flex-basis: $i * 100px + 50px;
|
@@ -100,15 +111,4 @@
|
|
100
111
|
flex-basis: $i * 100px + 50px;
|
101
112
|
}
|
102
113
|
}
|
103
|
-
|
104
|
-
@if($i * 10 + 5 < 100) {
|
105
|
-
.flex-item-#{$i * 10 + 5} {
|
106
|
-
flex-basis: $i * 10%;
|
107
|
-
}
|
108
|
-
|
109
|
-
.flex-item-grow-#{$i * 10 + 5} {
|
110
|
-
flex-grow: 1 !important;
|
111
|
-
flex-basis: $i * 10% + 5%;
|
112
|
-
}
|
113
|
-
}
|
114
114
|
}
|
package/styles/layout-grid.scss
CHANGED
@@ -1,11 +1,18 @@
|
|
1
1
|
.grid {
|
2
|
-
margin:
|
2
|
+
margin: 10px;
|
3
3
|
display: grid !important;
|
4
|
-
gap:
|
4
|
+
gap: 10px;
|
5
5
|
}
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
$colums: 12;
|
8
|
+
@for $colum from 1 through $colums {
|
9
|
+
.grid-columns-#{$colum} {
|
10
|
+
grid-template-columns: repeat($colum, 1fr);
|
11
|
+
}
|
12
|
+
|
13
|
+
@for $span from 1 through ($colums - ($colum - 1)) {
|
14
|
+
.grid-cell-#{$colum}-#{$span} {
|
15
|
+
grid-column: $colum / span $span;
|
16
|
+
}
|
10
17
|
}
|
11
18
|
}
|
package/styles/margin.scss
CHANGED
package/styles/padding.scss
CHANGED
package/styles/position.scss
CHANGED
@@ -17,20 +17,36 @@ $counter: 10;
|
|
17
17
|
}
|
18
18
|
}
|
19
19
|
|
20
|
-
@for $i from 0 through
|
20
|
+
@for $i from 0 through 100 {
|
21
21
|
.top-#{$i}px {
|
22
22
|
top: $i * 1px !important;
|
23
23
|
}
|
24
|
+
|
25
|
+
.top-negative-#{$i}px {
|
26
|
+
top: $i * -1px !important;
|
27
|
+
}
|
24
28
|
|
25
29
|
.right-#{$i}px {
|
26
30
|
right: $i * 1px !important;
|
27
|
-
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.right-negative-#{$i}px {
|
34
|
+
right: $i * -1px !important;
|
35
|
+
}
|
28
36
|
|
29
37
|
.bottom-#{$i}px {
|
30
38
|
bottom: $i * 1px !important;
|
31
|
-
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.bottom-negative-#{$i}px {
|
42
|
+
bottom: $i * -1px !important;
|
43
|
+
}
|
32
44
|
|
33
45
|
.left-#{$i}px {
|
34
46
|
left: $i * 1px !important;
|
35
|
-
}
|
47
|
+
}
|
48
|
+
|
49
|
+
.left-negative-#{$i}px {
|
50
|
+
left: $i * -1px !important;
|
51
|
+
}
|
36
52
|
}
|
@@ -0,0 +1,145 @@
|
|
1
|
+
@each $key, $value in (
|
2
|
+
'fit-content': fit-content,
|
3
|
+
'min-content': min-content,
|
4
|
+
'max-content': max-content,
|
5
|
+
) {
|
6
|
+
.width-#{$key} {
|
7
|
+
width: $value !important;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
|
12
|
+
@for $i from 1 through 100 {
|
13
|
+
//width
|
14
|
+
.width-#{$i}px {
|
15
|
+
width: $i * 1px !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
.width-#{$i} {
|
19
|
+
width: $i * 1% !important;
|
20
|
+
}
|
21
|
+
|
22
|
+
.min-width-#{$i}px {
|
23
|
+
min-width: $i * 1px !important;
|
24
|
+
}
|
25
|
+
|
26
|
+
.min-width-#{$i} {
|
27
|
+
min-width: $i * 1% !important;
|
28
|
+
}
|
29
|
+
|
30
|
+
.max-width-#{$i}px {
|
31
|
+
max-width: $i * 1px !important;
|
32
|
+
}
|
33
|
+
|
34
|
+
.max-width-#{$i} {
|
35
|
+
max-width: $i * 1% !important;
|
36
|
+
}
|
37
|
+
|
38
|
+
//height
|
39
|
+
.height-#{$i}px {
|
40
|
+
height: $i * 1px !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
.height-#{$i} {
|
44
|
+
height: $i * 1% !important;
|
45
|
+
}
|
46
|
+
|
47
|
+
.min-height-#{$i}px {
|
48
|
+
min-height: $i * 1px !important;
|
49
|
+
}
|
50
|
+
|
51
|
+
.min-height-#{$i} {
|
52
|
+
min-height: $i * 1% !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.max-height-#{$i}px {
|
56
|
+
max-height: $i * 1px !important;
|
57
|
+
}
|
58
|
+
|
59
|
+
.max-height-#{$i} {
|
60
|
+
max-height: $i * 1% !important;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
.width-150px {
|
66
|
+
width: 150px !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
.min-width-150px {
|
70
|
+
min-width: 150px !important;
|
71
|
+
}
|
72
|
+
|
73
|
+
.max-width-150px {
|
74
|
+
max-width: 150px !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
.height-150px {
|
79
|
+
height: 150px !important;
|
80
|
+
}
|
81
|
+
|
82
|
+
.min-height-150px {
|
83
|
+
min-height: 150px !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
.max-height-150px {
|
87
|
+
max-height: 150px !important;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
@for $i from 2 through 10 {
|
92
|
+
//width
|
93
|
+
.width-#{$i * 100}px {
|
94
|
+
width: $i * 100px !important;
|
95
|
+
}
|
96
|
+
|
97
|
+
.min-width-#{$i * 100}px {
|
98
|
+
min-width: $i * 100px !important;
|
99
|
+
}
|
100
|
+
|
101
|
+
.max-width-#{$i * 100}px {
|
102
|
+
max-width: $i * 100px !important;
|
103
|
+
}
|
104
|
+
|
105
|
+
@if($i * 100 + 50 < 1000) {
|
106
|
+
.width-#{$i * 100 + 50}px {
|
107
|
+
width: $i * 100 + 50px !important;
|
108
|
+
}
|
109
|
+
|
110
|
+
.min-width-#{$i * 100 + 50}px {
|
111
|
+
min-width: $i * 100 + 50px !important;
|
112
|
+
}
|
113
|
+
|
114
|
+
.max-width-#{$i * 100 + 50}px {
|
115
|
+
max-width: $i * 100 + 50px !important;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
//height
|
120
|
+
.height-#{$i * 100}px {
|
121
|
+
height: $i * 100px !important;
|
122
|
+
}
|
123
|
+
|
124
|
+
.min-height-#{$i * 100}px {
|
125
|
+
min-height: $i * 100px !important;
|
126
|
+
}
|
127
|
+
|
128
|
+
.max-height-#{$i * 100}px {
|
129
|
+
max-height: $i * 100px !important;
|
130
|
+
}
|
131
|
+
|
132
|
+
@if($i * 100 + 50 < 1000) {
|
133
|
+
.height-#{$i * 100 + 50}px {
|
134
|
+
height: $i * 100 + 50px !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
.min-height-#{$i * 100 + 50}px {
|
138
|
+
min-height: $i * 100 + 50px !important;
|
139
|
+
}
|
140
|
+
|
141
|
+
.max-height-#{$i * 100 + 50}px {
|
142
|
+
max-height: $i * 100 + 50px !important;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 202 165" version="1.1">
|
2
2
|
<path d="M 14.635 5.073 C 11.219 7.759, 11.038 12.768, 14.250 15.718 C 18.088 19.244, 32.164 28, 33.993 28 C 34.949 28, 36.916 27.067, 38.365 25.927 C 41.781 23.241, 41.962 18.232, 38.750 15.282 C 34.912 11.756, 20.836 3, 19.007 3 C 18.051 3, 16.084 3.933, 14.635 5.073 M 90.131 4.541 C 79.108 6.933, 71.574 11.173, 63.096 19.758 C 50.918 32.089, 46.342 44.023, 47.283 60.999 C 47.954 73.104, 50.478 80.348, 57.584 90.553 C 68.414 106.107, 72.976 113.492, 74.674 118.214 L 76.395 123 101.453 123 L 126.510 123 128.762 117.192 C 131.073 111.233, 135.382 104.310, 145.193 90.793 C 152.321 80.974, 155.036 73.285, 155.717 60.999 C 156.658 44.023, 152.082 32.089, 139.904 19.758 C 131.293 11.038, 123.894 6.931, 112.412 4.499 C 103.999 2.717, 98.491 2.727, 90.131 4.541 M 174.378 8.107 C 163.604 15.092, 162 16.711, 162 20.602 C 162 24.095, 165.698 28, 169.007 28 C 170.836 28, 184.912 19.244, 188.750 15.718 C 191.962 12.768, 191.781 7.759, 188.365 5.073 C 186.916 3.933, 184.949 3, 183.993 3 C 183.038 3, 178.711 5.298, 174.378 8.107 M 96.455 25.455 C 94.011 27.898, 94 28.002, 94 48 C 94 67.998, 94.011 68.102, 96.455 70.545 C 97.805 71.895, 100.075 73, 101.500 73 C 102.925 73, 105.195 71.895, 106.545 70.545 C 108.989 68.102, 109 67.998, 109 48 C 109 28.002, 108.989 27.898, 106.545 25.455 C 105.195 24.105, 102.925 23, 101.500 23 C 100.075 23, 97.805 24.105, 96.455 25.455 M 4.635 55.073 C 2.724 56.576, 2 58.067, 2 60.500 C 2 62.933, 2.724 64.424, 4.635 65.927 C 6.960 67.757, 8.647 68, 19 68 C 29.353 68, 31.040 67.757, 33.365 65.927 C 37.009 63.061, 37.009 57.939, 33.365 55.073 C 31.040 53.243, 29.353 53, 19 53 C 8.647 53, 6.960 53.243, 4.635 55.073 M 169.635 55.073 C 167.724 56.576, 167 58.067, 167 60.500 C 167 62.933, 167.724 64.424, 169.635 65.927 C 171.960 67.757, 173.647 68, 184 68 C 194.353 68, 196.040 67.757, 198.365 65.927 C 200.276 64.424, 201 62.933, 201 60.500 C 201 58.067, 200.276 56.576, 198.365 55.073 C 196.040 53.243, 194.353 53, 184 53 C 173.647 53, 171.960 53.243, 169.635 55.073 M 95.831 84.530 C 89.917 87.741, 90.045 98.420, 96.034 101.517 C 104.995 106.151, 114.083 98.841, 110.994 89.483 C 109.076 83.671, 101.792 81.292, 95.831 84.530 M 24.378 98.107 C 13.604 105.092, 12 106.711, 12 110.602 C 12 114.095, 15.698 118, 19.007 118 C 20.836 118, 34.912 109.244, 38.750 105.718 C 41.962 102.768, 41.781 97.759, 38.365 95.073 C 36.916 93.933, 34.949 93, 33.993 93 C 33.038 93, 28.711 95.298, 24.378 98.107 M 164.635 95.073 C 161.219 97.759, 161.038 102.768, 164.250 105.718 C 168.088 109.244, 182.164 118, 183.993 118 C 184.949 118, 186.916 117.067, 188.365 115.927 C 191.781 113.241, 191.962 108.232, 188.750 105.282 C 184.912 101.756, 170.836 93, 169.007 93 C 168.051 93, 166.084 93.933, 164.635 95.073 M 77 137.634 C 77 144.265, 78.812 149.421, 82.768 154.042 C 87.933 160.076, 93.106 162.379, 101.500 162.379 C 109.894 162.379, 115.067 160.076, 120.232 154.042 C 124.188 149.421, 126 144.265, 126 137.634 L 126 133 101.500 133 L 77 133 77 137.634" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
3
|
</svg>
|
package/svg/css.svg
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123 170" version="1.1">
|
2
|
+
<path d="M 29.705 2.628 C 28.617 3.716, 28.869 21.789, 29.977 22.167 C 30.514 22.350, 34.366 22.351, 38.536 22.169 C 46.091 21.839, 46.116 21.829, 45.809 19.169 C 45.528 16.746, 45.062 16.472, 40.750 16.195 L 36 15.890 36 12 L 36 8.110 40.750 7.805 C 45.069 7.528, 45.500 7.273, 45.500 5 C 45.500 2.580, 45.259 2.491, 37.955 2.212 C 33.805 2.053, 30.093 2.241, 29.705 2.628 M 49.926 2.250 C 48.953 5.523, 49.526 7.164, 53.005 11.074 C 55.171 13.508, 56.956 15.838, 56.972 16.250 C 56.987 16.663, 55.473 17, 53.607 17 C 50.214 17, 48.561 18.672, 49.866 20.783 C 50.624 22.009, 66.071 22.692, 67.873 21.579 C 69.933 20.305, 69.046 18.118, 64.305 12.783 L 59.611 7.500 63.787 6.935 C 68.610 6.283, 69.475 5.680, 68.655 3.543 C 68.182 2.310, 66.249 2, 59.031 2 C 54.064 2, 49.967 2.112, 49.926 2.250 M 73.667 2.667 C 71.987 4.346, 73.337 7.923, 77 11.500 C 79.200 13.648, 81 15.737, 81 16.143 C 81 16.548, 79.313 17.019, 77.250 17.190 C 74.298 17.434, 73.435 17.956, 73.194 19.645 C 72.919 21.573, 73.498 21.861, 78.888 22.487 C 82.188 22.870, 86.264 22.881, 87.944 22.512 C 92.223 21.573, 92.054 17.909, 87.500 12.868 C 85.575 10.738, 84 8.546, 84 7.997 C 84 7.449, 85.575 7, 87.500 7 C 90.567 7, 91 6.690, 91 4.500 C 91 2.033, 90.889 2, 82.667 2 C 78.083 2, 74.033 2.300, 73.667 2.667 M 1.621 34.803 C 1.343 35.254, 1.520 40.545, 2.015 46.561 C 3.385 63.219, 4.772 79.230, 5.994 92.500 C 7.733 111.382, 8.979 125.586, 9.946 137.562 C 10.437 143.647, 11.137 150.213, 11.501 152.153 L 12.163 155.682 25.831 159.467 C 33.349 161.549, 44.277 164.596, 50.115 166.238 L 60.730 169.225 67.615 167.116 C 71.402 165.957, 81.879 163.005, 90.897 160.556 C 99.916 158.108, 107.636 155.744, 108.052 155.303 C 108.903 154.402, 110.472 142.213, 111.953 125 C 114.246 98.362, 116.070 77.868, 117.962 57.500 C 118.524 51.450, 119.100 43.800, 119.242 40.500 L 119.500 34.500 60.814 34.242 C 28.537 34.100, 1.900 34.353, 1.621 34.803 M 23.450 59.083 C 23.251 59.404, 23.359 62.891, 23.689 66.833 L 24.290 74 41.145 74 C 51.715 74, 58 74.373, 58 75 C 58 75.550, 57.561 76, 57.025 76 C 56.489 76, 53.103 77.350, 49.500 79 C 45.897 80.650, 42.731 82, 42.464 82 C 41.903 82, 33.340 85.719, 30.764 87.082 C 29.809 87.587, 28.327 88, 27.472 88 C 26.173 88, 25.964 89.279, 26.208 95.750 L 26.500 103.500 52.500 104 C 76.446 104.461, 78.493 104.638, 78.417 106.250 C 78.371 107.213, 78.258 111.386, 78.167 115.525 C 78.007 122.732, 77.884 123.096, 75.250 124.159 C 71.727 125.581, 58.736 127.940, 57.747 127.337 C 57.333 127.085, 53.958 126.098, 50.247 125.144 C 46.536 124.191, 43.444 122.868, 43.375 122.205 C 43.306 121.542, 43.194 118.975, 43.125 116.500 L 43 112 35.352 112 L 27.705 112 28.370 121.460 C 29.379 135.811, 28.364 134.751, 45.701 139.577 L 60.711 143.755 75.105 139.809 C 83.022 137.638, 89.825 135.546, 90.222 135.159 C 91.449 133.964, 95 103.787, 95 94.558 L 95 89 81 89 C 69.222 89, 67 88.762, 67 87.500 C 67 86.675, 67.681 86, 68.514 86 C 69.346 86, 70.809 85.557, 71.764 85.016 C 72.719 84.474, 76.650 82.648, 80.500 80.957 C 84.350 79.265, 89.583 76.898, 92.129 75.695 L 96.758 73.509 97.393 66.681 C 97.742 62.926, 97.763 59.426, 97.440 58.903 C 96.809 57.881, 24.086 58.058, 23.450 59.083" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 649 829" version="1.1">
|
2
|
+
<path d="M 301.500 0.672 C 259.800 4.176, 219.601 24.167, 196.929 52.676 C 174.597 80.756, 168.458 116.697, 176.615 171.606 C 177.221 175.685, 177.193 175.728, 172.636 177.934 C 163.267 182.470, 157.967 192.311, 157.221 206.556 C 156.597 218.500, 158.288 229.949, 162.592 242.906 C 168.582 260.938, 176.576 272.814, 186.198 277.974 C 190.403 280.229, 190.585 280.543, 194.282 291.891 C 196.362 298.276, 200.659 308.675, 203.830 315 C 209.150 325.610, 220.121 343.339, 222.139 344.586 C 223.391 345.359, 223.207 379.323, 221.933 382.685 C 220.474 386.538, 217.253 389.808, 212.541 392.224 C 210.363 393.341, 195.963 398.876, 180.541 404.526 C 92.188 436.889, 82.408 440.952, 70.137 450.395 C 58.795 459.122, 47.732 473.760, 39.987 490.287 C 36.021 498.749, 26.178 529.702, 10.083 584.322 C 0.373 617.273, -0.550 622.932, 2.678 629.734 C 3.655 631.792, 6.249 634.470, 8.885 636.142 C 22.583 644.829, 56.444 653.284, 92.750 657.082 C 99.680 657.807, 104.003 658.689, 104.007 659.380 C 104.019 661.545, 109.930 740.573, 110.541 746.750 C 111.130 752.705, 111.056 753, 108.966 753 C 102.906 753, 94.165 761.937, 93.855 768.450 C 93.355 778.932, 97.207 798.724, 101.209 806.237 C 105.031 813.413, 112.340 820.332, 119.782 823.820 L 125.500 826.500 323 826.500 L 520.500 826.500 527.223 823.315 C 541.905 816.360, 548.533 806.543, 552.077 786.500 C 554.597 772.245, 554.276 766.527, 550.648 761.044 C 547.957 756.977, 541.732 753, 538.059 753 C 536.269 753, 536.096 752.515, 536.544 748.750 C 536.822 746.413, 538.173 728.750, 539.546 709.500 C 543.691 651.405, 542.852 658, 546.096 658 C 547.637 658, 554.208 657.317, 560.699 656.483 C 596.500 651.879, 620.977 645.806, 636.307 637.722 C 643.437 633.963, 647 628.643, 647 621.760 C 647 616.014, 626.764 544.996, 614.088 506.257 C 605.942 481.361, 591.663 459.990, 575.500 448.501 C 564.088 440.389, 562.123 439.587, 473.582 406.929 C 452.176 399.033, 433.301 391.656, 431.636 390.533 C 425.386 386.322, 424.537 383.343, 424.151 364.260 L 423.802 347.021 430.871 336.416 C 434.759 330.583, 440.188 321.229, 442.937 315.629 C 448.096 305.116, 456 285.083, 456 282.517 C 456 281.717, 458.376 279.541, 461.280 277.684 C 475.912 268.324, 486.523 246.208, 489.246 219.398 C 490.523 206.829, 489.146 196.517, 485.024 187.764 C 482.233 181.839, 475.835 175.342, 471.951 174.489 C 470.328 174.133, 469 173.665, 469 173.451 C 469 173.236, 469.781 168.209, 470.735 162.280 C 472.034 154.209, 472.470 145.469, 472.470 127.500 C 472.470 105.879, 472.245 102.608, 470.204 94.500 C 466.546 79.967, 461.029 70.022, 451.032 59.945 C 441.809 50.649, 434.576 46.333, 423.500 43.519 C 419.134 42.409, 416.963 41.246, 415.528 39.247 C 411.032 32.984, 402.033 24.483, 395.032 19.886 C 373.442 5.707, 335.163 -2.156, 301.500 0.672 M 388.500 96.166 C 372.761 108.346, 338.063 120.983, 309 125.119 C 295.065 127.102, 263.633 126.843, 253.413 124.661 L 245.325 122.935 228.750 130.717 L 212.174 138.500 211.114 144.500 C 209.168 155.512, 208.016 168.394, 208.008 179.250 C 208.001 189.105, 208.156 190, 209.879 190 C 211.024 190, 212.243 188.827, 213.002 186.995 C 214.429 183.550, 219.987 178.349, 223.861 176.834 C 230.313 174.311, 243.276 172.864, 260 172.801 C 284.714 172.707, 297.246 174.900, 304.760 180.631 C 308.074 183.158, 308.537 183.222, 323.432 183.222 C 338.163 183.222, 338.846 183.131, 342.604 180.650 C 351.235 174.952, 362.287 172.997, 385.822 173.006 C 402.742 173.012, 419.039 174.957, 424.253 177.593 C 428.827 179.905, 431.887 182.900, 434.118 187.250 C 437.149 193.162, 439.004 192.209, 438.980 184.750 C 438.954 176.227, 436.513 158.530, 433.956 148.324 C 428.470 126.426, 416.950 108.397, 401.500 97.530 C 398.200 95.209, 395.050 93.082, 394.500 92.803 C 393.950 92.524, 391.250 94.038, 388.500 96.166 M 240.500 186.445 C 239.950 186.664, 237.365 187.130, 234.755 187.482 C 228.286 188.353, 224.296 191.828, 223.487 197.293 C 222.644 202.991, 224.615 217.897, 227.084 224.496 C 231.269 235.681, 237.981 238.318, 262.500 238.410 C 276.663 238.464, 277.815 238.320, 283.148 235.835 C 287.596 233.763, 289.377 232.213, 291.528 228.542 C 294.952 222.699, 297.633 212.628, 298.544 202.185 C 299.228 194.352, 299.175 194.066, 296.603 191.683 C 292.234 187.634, 287.041 186.807, 263.500 186.415 C 251.400 186.213, 241.050 186.227, 240.500 186.445 M 361.399 187.470 C 353.197 188.959, 349.244 191.179, 348.333 194.809 C 347.455 198.308, 349.564 213.378, 352.065 221.477 C 354.751 230.172, 359.576 235.184, 367.119 237.115 C 373.803 238.826, 397.177 238.806, 405.260 237.082 C 417.409 234.492, 421.913 226.561, 423.482 205 C 424.429 191.983, 421.810 189.012, 407.678 187.073 C 397.206 185.637, 370.222 185.868, 361.399 187.470 M 180.783 196.750 C 177.378 200.654, 176.565 203.584, 176.690 211.500 C 176.907 225.229, 181.886 243.472, 188.028 253.044 C 191.531 258.503, 198.005 263, 202.359 263 C 205.435 263, 205.246 262.629, 210.511 279 C 215.054 293.131, 223.937 312.020, 231.539 323.718 C 250.099 352.277, 272.425 369.952, 299.067 377.179 C 310.506 380.282, 334.580 380.496, 346 377.595 C 372.358 370.901, 393.946 354.575, 412.899 327 C 423.914 310.976, 434.228 288.999, 439.065 271.250 C 441.236 263.284, 441.415 263, 444.271 263 C 448.550 263, 454.418 259.338, 457.894 254.498 C 466.002 243.208, 472.549 216.449, 470.052 204.806 C 468.784 198.894, 465.751 195, 462.415 195 C 460.075 195, 455.606 199.514, 454.502 202.992 C 453.812 205.168, 452.552 205.568, 443.538 206.470 C 440.259 206.799, 437.281 207.545, 436.921 208.128 C 436.560 208.712, 435.998 211.741, 435.672 214.860 C 434.213 228.822, 428.675 239.714, 420.351 244.993 C 408.120 252.749, 372.024 254.278, 357.553 247.653 C 344.928 241.873, 337.667 228.437, 335.457 206.765 C 334.774 200.063, 334.753 200.026, 331.135 199.021 C 326.403 197.706, 319.089 197.724, 315.259 199.059 C 312.392 200.059, 312.182 200.498, 311.538 206.809 C 309.111 230.617, 300.449 244.283, 284.635 249.256 C 278.428 251.208, 275.418 251.491, 261.500 251.429 C 244.213 251.353, 236.194 250.127, 228.910 246.447 C 224.059 243.996, 219.080 238.989, 216.463 233.928 C 214.285 229.716, 211 216.471, 211 211.899 C 211 209.819, 210.538 207.833, 209.974 207.484 C 209.410 207.135, 206.373 206.631, 203.224 206.362 C 194.623 205.629, 193.192 205.180, 192.498 202.992 C 191.388 199.498, 186.925 195, 184.566 195 C 183.325 195, 181.623 195.787, 180.783 196.750 M 399.500 371.630 C 388.064 381.477, 370.085 391.269, 356 395.323 C 320.118 405.651, 282.342 398.498, 252 375.629 L 243.500 369.222 242.332 378.500 C 240.909 389.800, 237.493 397.566, 231.804 402.436 L 227.728 405.925 231.855 412.872 C 240.259 427.018, 251.788 436.686, 269.214 444.198 C 298.571 456.855, 338.305 458.506, 368.752 448.334 C 389.965 441.247, 406.588 428.503, 415.570 412.441 L 419.227 405.902 415.139 402.129 C 409.464 396.889, 406.330 389.469, 404.949 378 C 404.320 372.775, 403.737 368.429, 403.653 368.343 C 403.569 368.257, 401.700 369.736, 399.500 371.630 M 166 430.899 C 90.085 459.149, 88.993 459.631, 77.855 469.845 C 67.516 479.327, 57.965 495.997, 51.696 515.500 C 48.881 524.257, 32.351 579.557, 22.068 614.618 L 20.274 620.736 29.887 623.820 C 49.964 630.259, 64.991 633.303, 97.907 637.595 L 102.315 638.170 101.641 626.335 C 101.271 619.826, 99.617 596.500, 97.966 574.500 C 96.315 552.500, 95.252 533.150, 95.604 531.500 C 97.147 524.267, 103.533 516.329, 111 512.360 C 114.375 510.566, 121.877 510.491, 321.358 510.241 C 454.825 510.073, 529.514 510.331, 531.874 510.966 C 541.507 513.560, 550.247 522.811, 551.607 531.852 C 551.991 534.408, 551.539 546.850, 550.601 559.500 C 549.664 572.150, 548.025 594.200, 546.961 608.500 C 545.896 622.800, 545.020 635.303, 545.013 636.284 C 545.002 637.850, 545.643 637.993, 550.250 637.446 C 565.606 635.626, 583.748 632.713, 593.500 630.503 C 605.299 627.828, 627 621.288, 627 620.406 C 627 619.188, 600.618 529.516, 596.872 518 C 587.516 489.241, 576.551 472.472, 560.602 462.531 C 555.860 459.575, 543.750 454.381, 525.434 447.447 C 489.539 433.857, 438.277 414.997, 437.275 415.012 C 436.849 415.018, 435.033 417.694, 433.240 420.958 C 419.245 446.440, 392.298 464.476, 356.688 472.196 C 343.004 475.163, 308.558 475.431, 294.500 472.680 C 256.813 465.305, 231.117 449.214, 214.531 422.601 C 211.925 418.421, 209.502 415.019, 209.146 415.042 C 208.791 415.065, 189.375 422.201, 166 430.899 M 118.695 531.111 C 115.559 532.935, 115.029 536.345, 116.037 548.212 C 116.564 554.420, 119.923 599.550, 123.502 648.500 C 127.080 697.450, 130.283 740.650, 130.619 744.500 L 131.231 751.500 323.591 751.500 L 515.952 751.500 516.467 747.500 C 516.750 745.300, 519.939 703.225, 523.553 654 C 527.168 604.775, 530.615 557.851, 531.212 549.724 L 532.299 534.947 529.975 532.474 L 527.651 530 324.076 530.030 C 183.724 530.051, 119.939 530.387, 118.695 531.111 M 341.234 574.250 C 339.931 575.638, 336.255 585.512, 331.648 600 C 327.538 612.925, 319.226 639.025, 313.177 658 C 299.730 700.183, 298.690 704.054, 299.931 707.318 C 301.101 710.397, 304.694 713, 307.772 713 C 311.427 713, 315.616 710.357, 316.811 707.297 C 317.412 705.759, 326.718 676.740, 337.491 642.812 C 356.720 582.253, 357.052 581.060, 355.624 577.643 C 354.824 575.728, 353.261 573.675, 352.150 573.080 C 348.695 571.231, 343.553 571.782, 341.234 574.250 M 275.500 593.455 C 271.182 595.368, 230.297 636.877, 229.481 640.178 C 229.117 641.651, 229.080 643.676, 229.399 644.678 C 229.718 645.680, 239.807 656.320, 251.820 668.322 C 271.712 688.197, 274.021 690.193, 277.689 690.685 C 281.139 691.148, 282.159 690.815, 284.805 688.363 C 287.744 685.640, 288.376 683.958, 288.115 679.563 C 288.051 678.485, 280.143 669.725, 270.274 659.800 L 252.547 641.974 269.667 624.737 C 279.082 615.257, 287.280 606.524, 287.885 605.332 C 290.251 600.660, 286.605 593.968, 281 592.695 C 279.625 592.382, 277.150 592.725, 275.500 593.455 M 366.636 595.636 C 364.648 597.624, 364 599.277, 364 602.358 C 364 606.342, 364.454 606.885, 382.250 624.172 L 400.500 641.901 382.848 659.700 C 373.140 669.490, 364.886 678.546, 364.507 679.824 C 362.982 684.967, 368.277 691, 374.315 691 C 377.501 691, 378.191 690.404, 401.711 667.329 C 421.975 647.448, 423.941 644.859, 422.647 639.750 C 422.334 638.513, 412.025 627.487, 399.738 615.250 C 377.967 593.567, 377.295 593, 373.335 593 C 370.279 593, 368.620 593.653, 366.636 595.636 M 113.456 775.750 C 115.985 793.354, 118.778 799.834, 125.683 804.127 L 129.500 806.500 322 806.774 C 536.869 807.080, 519.462 807.659, 526.396 799.983 C 530.062 795.926, 532.415 789.475, 533.503 780.500 C 533.836 777.750, 534.318 774.487, 534.574 773.250 L 535.038 771 323.906 771 L 112.773 771 113.456 775.750 M 304 786 C 302.889 787.111, 302 789.333, 302 791 C 302 792.667, 302.889 794.889, 304 796 C 305.851 797.851, 307.333 798, 323.927 798 L 341.855 798 343.927 795.365 C 346.632 791.927, 346.552 788.867, 343.686 786.174 C 341.489 784.111, 340.467 784, 323.686 784 C 307.333 784, 305.849 784.151, 304 786" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
package/svg/envelope.svg
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 709 473" version="1.1">
|
2
|
+
<path d="M 56.223 1.935 C 35.825 6.946, 18.348 21.210, 8.972 40.500 C 1.533 55.804, 2.030 41.816, 2.030 236 C 2.030 430.184, 1.533 416.196, 8.972 431.500 C 16.229 446.431, 27.682 457.868, 42.500 464.980 C 58.384 472.603, 31.522 472, 355 472 C 678.478 472, 651.616 472.603, 667.500 464.980 C 682.318 457.868, 693.771 446.431, 701.028 431.500 C 708.467 416.196, 707.970 430.184, 707.970 236 C 707.970 41.816, 708.467 55.804, 701.028 40.500 C 693.771 25.569, 682.318 14.132, 667.500 7.020 C 651.609 -0.607, 678.597 -0.008, 354.303 0.074 C 78.534 0.143, 63.124 0.240, 56.223 1.935 M 60.645 17.584 C 54.994 18.952, 41 25.579, 41 26.888 C 41 27.240, 95.112 81.569, 161.250 147.619 C 265.508 251.740, 282.675 268.482, 290.339 273.507 C 329.838 299.407, 380.162 299.407, 419.661 273.507 C 427.325 268.482, 444.492 251.740, 548.750 147.619 C 614.887 81.569, 669 27.240, 669 26.888 C 669 26.536, 665.916 24.627, 662.147 22.647 C 648.523 15.487, 673.658 16.022, 354.500 16.098 C 109.552 16.156, 65.625 16.379, 60.645 17.584 M 24.647 45.853 C 17.605 59.254, 18.030 47.048, 18.030 236 C 18.030 424.952, 17.605 412.746, 24.647 426.147 C 26.627 429.916, 28.530 433, 28.876 433 C 29.221 433, 73.827 388.675, 128 334.500 L 226.496 236 128 137.500 C 73.827 83.325, 29.221 39, 28.876 39 C 28.530 39, 26.627 42.084, 24.647 45.853 M 582 137.500 L 483.504 236 582 334.500 C 636.173 388.675, 680.779 433, 681.124 433 C 681.470 433, 683.373 429.916, 685.353 426.147 C 692.395 412.746, 691.970 424.952, 691.970 236 C 691.970 47.048, 692.395 59.254, 685.353 45.853 C 683.373 42.084, 681.470 39, 681.124 39 C 680.779 39, 636.173 83.325, 582 137.500 M 138.998 346.522 C 59.677 425.863, 40.792 445.243, 42 446.064 C 42.825 446.624, 46.083 448.418, 49.240 450.050 C 61.505 456.393, 39.685 455.970, 355 455.970 C 673.567 455.970, 648.528 456.510, 662.147 449.353 C 665.916 447.373, 669 445.470, 669 445.124 C 669 444.779, 624.689 400.187, 570.532 346.032 L 472.063 247.567 455.782 263.616 C 438.018 281.126, 429.507 287.669, 415 294.964 C 394.362 305.342, 380.365 308.500, 355 308.500 C 329.635 308.500, 315.638 305.342, 295 294.964 C 280.527 287.686, 271.988 281.132, 254.437 263.833 C 245.603 255.125, 238.177 248, 237.935 248 C 237.694 248, 193.172 292.335, 138.998 346.522" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
package/svg/html.svg
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 124 173" version="1.1">
|
2
|
+
<path d="M 34.310 1.760 C 32.795 2.012, 32.025 2.950, 31.810 4.812 C 31.569 6.906, 30.892 7.570, 28.750 7.816 C 26.279 8.101, 26 7.822, 26 5.066 C 26 2.229, 25.739 2, 22.500 2 L 19 2 19 11.500 L 19 21 22.572 21 C 25.879 21, 26.119 20.797, 25.822 18.250 C 25.534 15.791, 25.817 15.500, 28.490 15.500 C 31.030 15.500, 31.559 15.951, 32 18.500 C 32.286 20.150, 32.853 21.387, 33.260 21.250 C 33.667 21.113, 34.900 21, 36 21 C 37.859 21, 38 20.333, 38 11.559 C 38 6.366, 37.663 1.956, 37.250 1.758 C 36.837 1.560, 35.515 1.561, 34.310 1.760 M 43.856 1.669 C 42.268 2.091, 40.745 6.412, 41.810 7.476 C 42.098 7.764, 43.383 8, 44.667 8 C 46.813 8, 47.001 8.421, 47.015 13.250 C 47.034 19.577, 47.956 21.284, 51.113 20.837 C 53.297 20.529, 53.525 19.973, 53.796 14.312 C 54.078 8.417, 54.220 8.109, 56.796 7.812 C 58.771 7.584, 59.591 6.857, 59.837 5.113 C 60.023 3.800, 59.573 2.345, 58.837 1.878 C 57.480 1.018, 46.864 0.869, 43.856 1.669 M 64.144 1.785 C 63.393 2.036, 63 5.403, 63 11.583 L 63 21 66 21 C 68.506 21, 69 20.602, 69 18.582 C 69 17.252, 69.273 15.452, 69.607 14.583 C 70.111 13.269, 70.544 13.422, 72.168 15.486 L 74.122 17.970 76.529 15.235 L 78.937 12.500 78.968 16.750 C 78.999 20.799, 79.142 21, 82 21 L 85 21 85 11.500 L 85 2 81.598 2 C 78.893 2, 77.800 2.626, 76.261 5.057 L 74.325 8.115 71.659 4.620 C 69.214 1.414, 67.358 0.714, 64.144 1.785 M 89 11.500 L 89 21 97 21 L 105 21 105 18.055 C 105 15.251, 104.772 15.095, 100.250 14.805 L 95.500 14.500 95.202 8.250 C 94.908 2.062, 94.875 2, 91.952 2 L 89 2 89 11.500 M 2.383 39.827 C 2.735 42.482, 3.453 50.020, 3.978 56.577 C 5.244 72.382, 8.640 110.685, 10.962 135.366 C 11.991 146.292, 13.269 155.669, 13.803 156.203 C 14.712 157.112, 27.889 161.053, 51.770 167.556 L 62.039 170.353 75.770 166.551 C 83.321 164.459, 94.282 161.403, 100.127 159.758 L 110.754 156.768 111.897 144.634 C 112.526 137.960, 113.925 122.375, 115.006 110 C 116.087 97.625, 117.460 82.325, 118.058 76 C 120.997 44.890, 121.677 36.439, 121.296 35.750 C 121.068 35.338, 94.076 35, 61.312 35 L 1.742 35 2.383 39.827 M 43.500 59.967 C 25.259 60.479, 24.508 60.580, 24.697 62.500 C 24.805 63.600, 25.402 70.350, 26.022 77.500 C 26.643 84.650, 27.454 93.650, 27.825 97.500 L 28.500 104.500 54.392 104.767 L 80.285 105.034 79.608 113.147 C 79.236 117.609, 78.515 122.037, 78.006 122.988 C 77.497 123.939, 74.925 125.274, 72.290 125.954 C 69.656 126.635, 66.239 127.662, 64.698 128.238 C 62.652 129.003, 60.764 128.938, 57.698 127.998 C 45.467 124.246, 45.506 124.265, 45.230 121.857 C 45.082 120.561, 44.724 118.037, 44.435 116.250 L 43.909 113 36.601 113 L 29.294 113 29.678 118.250 C 29.889 121.138, 30.303 126.259, 30.598 129.630 L 31.133 135.760 39.317 138 C 50.855 141.158, 54.173 142.132, 56.797 143.128 C 60.654 144.592, 63.549 144.158, 78.443 139.881 L 92.788 135.762 93.307 129.131 C 93.593 125.484, 94.354 116.650, 94.999 109.500 C 95.644 102.350, 96.245 95.150, 96.336 93.500 L 96.500 90.500 70.082 90.233 C 54.827 90.079, 43.168 89.554, 42.490 88.992 C 41.844 88.456, 41.221 85.088, 41.105 81.509 L 40.894 75 68.912 75 C 101.115 75, 99 75.698, 99 65.066 L 99 59 80.750 59.217 C 70.713 59.336, 53.950 59.673, 43.500 59.967" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 124 173" version="1.1">
|
2
|
+
<path d="M 52.713 3.621 C 52.321 4.013, 52 7.180, 52 10.659 L 52 16.985 47.250 16.742 C 42.592 16.505, 42.494 16.561, 42.194 19.654 L 41.888 22.808 47.694 23.169 C 50.887 23.368, 54.753 23.358, 56.285 23.147 L 59.070 22.763 58.785 13.131 C 58.504 3.651, 58.460 3.495, 55.963 3.204 C 54.567 3.041, 53.104 3.229, 52.713 3.621 M 62.373 4.470 C 61.716 6.184, 63.646 9.555, 67.480 13.390 C 70.888 16.797, 70.650 18, 66.567 18 C 63.946 18, 62.975 18.502, 62.460 20.125 C 61.722 22.453, 63.587 24.314, 65.832 23.489 C 66.564 23.220, 70.502 23, 74.582 23 C 81.613 23, 82 22.882, 82 20.745 C 82 19.488, 80.229 16.609, 78 14.243 C 75.800 11.907, 74 9.574, 74 9.058 C 74 8.543, 75.688 7.981, 77.750 7.810 C 80.730 7.564, 81.500 7.089, 81.500 5.500 C 81.500 3.665, 80.737 3.476, 72.233 3.212 C 64.617 2.976, 62.861 3.200, 62.373 4.470 M 2.345 36.542 C 2.020 37.390, 2.241 42.228, 2.836 47.292 C 3.431 52.356, 4.400 62.125, 4.989 69 C 5.578 75.875, 6.480 86, 6.993 91.500 C 9.015 113.180, 11.833 145.878, 12.283 152.868 C 12.542 156.892, 12.569 156.904, 35 162.996 C 43.525 165.311, 51.625 167.590, 53 168.062 C 59.480 170.283, 62.719 170.125, 74.061 167.035 C 80.352 165.321, 87.975 163.243, 91 162.417 C 103.841 158.911, 109.959 156.876, 110.554 155.913 C 110.903 155.348, 111.576 150.524, 112.049 145.193 C 112.523 139.862, 113.393 130.100, 113.983 123.500 C 114.573 116.900, 115.524 106.100, 116.097 99.500 C 116.669 92.900, 117.526 83.225, 118.001 78 C 118.476 72.775, 119.346 62.650, 119.934 55.500 C 120.521 48.350, 121.266 40.813, 121.589 38.750 L 122.176 35 62.557 35 C 9.762 35, 2.869 35.177, 2.345 36.542 M 44.756 61.250 C 44.336 62.395, 45.503 111.211, 46.173 120.500 C 46.419 123.917, 46.172 124.500, 44.480 124.500 C 42.874 124.500, 42.301 123.461, 41.448 119 C 40.416 113.610, 40.313 113.482, 36.257 112.620 C 30.265 111.347, 28.996 112.153, 29.020 117.219 C 29.042 121.973, 30.791 135.125, 31.496 135.829 C 31.743 136.076, 34.095 136.861, 36.723 137.574 C 44.082 139.568, 52.211 141.683, 55.250 142.394 L 58 143.038 58 101.519 L 58 60 51.607 60 C 47.404 60, 45.057 60.428, 44.756 61.250 M 65.231 82.226 L 65.500 104.500 72.795 104.795 L 80.089 105.089 79.431 111.295 C 79.070 114.708, 78.478 119.024, 78.116 120.886 C 77.436 124.385, 77.506 124.345, 66.250 127.578 C 65.392 127.825, 65 130.305, 65 135.488 L 65 143.038 67.750 142.438 C 69.263 142.108, 71.625 141.469, 73 141.019 C 74.375 140.570, 79.161 139.208, 83.635 137.994 L 91.771 135.787 92.362 131.144 C 93.312 123.691, 95.408 98.864, 95.456 94.500 L 95.500 90.500 87.750 90.208 L 80 89.916 80 82.458 L 80 75 87.878 75 C 92.964 75, 96.123 74.557, 96.794 73.749 C 97.365 73.061, 97.957 69.798, 98.111 66.499 L 98.390 60.500 81.676 60.226 L 64.962 59.951 65.231 82.226" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
package/svg/whatsapp.svg
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 772 775" version="1.1">
|
2
|
+
<path d="M 364 2.986 C 257.146 9.460, 159.358 59.099, 90.983 141.575 C 43.155 199.267, 14.151 267.742, 5.374 343.685 C 3.262 361.963, 2.961 403.052, 4.808 421 C 10.028 471.720, 23.877 518.180, 47.136 563 L 54.142 576.500 41.501 622.500 C 26.717 676.301, 9.382 739.598, 3.981 759.500 C 1.892 767.200, 0.305 773.626, 0.455 773.781 C 0.730 774.063, 9.217 771.876, 82.500 752.635 C 104.500 746.858, 140.500 737.422, 162.500 731.664 L 202.500 721.196 216.036 727.854 C 333.174 785.465, 469.817 780.066, 581.758 713.405 C 609.287 697.011, 631.771 679.405, 655.592 655.589 C 688.210 622.976, 708.855 594.428, 728.967 554.123 C 769.242 473.409, 779.168 379.608, 756.863 290.500 C 725.574 165.502, 630.301 63.145, 506.875 21.926 C 462.418 7.079, 410.357 0.178, 364 2.986 M 366 67.650 C 335.578 70.521, 320.535 73.161, 298.369 79.519 C 226.673 100.083, 164.686 145.088, 122.788 207 C 94.339 249.038, 77.608 293.036, 70.312 345 C 67.820 362.748, 67.846 408.523, 70.358 425.500 C 77.790 475.730, 93.574 518.624, 119.170 558.154 L 124.126 565.808 108.146 624.154 C 99.357 656.244, 92.306 682.639, 92.477 682.810 C 92.747 683.080, 127.586 674.071, 167 663.540 C 173.875 661.703, 186.925 658.321, 196 656.023 L 212.500 651.846 224 658.537 C 263.634 681.598, 301.785 694.583, 347.784 700.669 C 365.211 702.975, 405.547 703.007, 423.503 700.729 C 547.982 684.938, 649.388 601.296, 688.684 482 C 698.980 450.745, 703.403 421.428, 703.396 384.500 C 703.390 359.421, 702.707 350.998, 698.894 329 C 676.041 197.157, 569.132 92.134, 436.409 71.146 C 414.092 67.617, 382.810 66.064, 366 67.650 M 240.801 209.856 C 233.382 212.324, 228.634 215.908, 219.963 225.585 C 202.741 244.802, 194.580 263.409, 191.994 289.348 C 189.744 311.911, 194.448 333.646, 207.393 360.500 C 216.383 379.149, 221.094 386.479, 243.173 416.171 C 281.719 468.010, 330.868 511.496, 377.992 535.458 C 400.985 547.150, 444.184 563.228, 461.415 566.508 C 479.170 569.887, 502.635 569.193, 516.728 564.872 C 525.276 562.251, 538.908 555.531, 547.863 549.523 C 556.714 543.584, 567.971 531.972, 571.355 525.289 C 576.833 514.473, 581.390 489.222, 579.593 479.645 C 579.216 477.636, 577.916 475.030, 576.704 473.855 C 574.723 471.934, 549.215 459.096, 513.500 442.043 C 506.350 438.629, 497.027 434.681, 492.782 433.270 C 481.641 429.566, 480.026 430.350, 468.738 444.947 C 455.247 462.393, 441.157 478.607, 438.394 479.866 C 433.426 482.130, 428.825 481.140, 414.500 474.721 C 381.254 459.825, 357.171 443.282, 333.912 419.361 C 313.720 398.595, 290 364.908, 290 356.999 C 290 353.753, 291.561 351.523, 304.394 336.432 C 315.949 322.842, 322 312.196, 322 305.452 C 322 302.197, 320.157 296.674, 315.095 284.756 C 311.298 275.815, 304.049 258.375, 298.986 246 C 289.041 221.689, 287.240 217.888, 283.769 213.878 C 279.907 209.417, 277.606 208.846, 261.650 208.391 C 248.677 208.022, 245.681 208.232, 240.801 209.856" stroke="none" fill="#000000" fill-rule="evenodd"/>
|
3
|
+
</svg>
|
@@ -3,10 +3,10 @@ import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import { IBreadcrumb, IGoBack } from 'coer-elements/interfaces';
|
4
4
|
import { CoerAlert } from './coer-alert/coer-alert.component';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class Page implements AfterViewInit, OnDestroy {
|
6
|
+
export declare abstract class Page implements AfterViewInit, OnDestroy {
|
7
7
|
protected readonly alert: CoerAlert;
|
8
8
|
protected readonly router: Router;
|
9
|
-
private readonly
|
9
|
+
private readonly __activatedRoute;
|
10
10
|
/** */
|
11
11
|
protected isUpdate: boolean;
|
12
12
|
/** */
|
@@ -29,10 +29,10 @@ export declare class Page implements AfterViewInit, OnDestroy {
|
|
29
29
|
protected pageFilters: any;
|
30
30
|
/** */
|
31
31
|
protected goBack: IGoBack;
|
32
|
-
private
|
33
|
-
private
|
34
|
-
private
|
35
|
-
private
|
32
|
+
private __path;
|
33
|
+
private __page;
|
34
|
+
private __source;
|
35
|
+
private __preventDestroy;
|
36
36
|
constructor(page: string);
|
37
37
|
ngAfterViewInit(): Promise<void>;
|
38
38
|
ngOnDestroy(): void;
|
@@ -68,18 +68,16 @@ export declare class Page implements AfterViewInit, OnDestroy {
|
|
68
68
|
private __GetPageFilter;
|
69
69
|
/** */
|
70
70
|
protected RemovePageFilter(): void;
|
71
|
-
/** */
|
72
|
-
protected Log(value: any,
|
73
|
-
|
74
|
-
protected coerSwitchTemplate: (item: import("coer-elements/interfaces").IGridItem<any>) => import("coer-elements/interfaces").IGridCoerSwitch;
|
75
|
-
protected coerTextboxTemplate: (item: import("coer-elements/interfaces").IGridItem<any>) => import("coer-elements/interfaces").IGridCoerTextBox;
|
76
|
-
protected coerIconTemplate: (icon: string, color?: string) => string;
|
71
|
+
/** Emit a console.log() */
|
72
|
+
protected Log(value: any, logName?: string | null): void;
|
73
|
+
/** Returns true if the value is null or undefined, false otherwise */
|
77
74
|
protected IsNull: (value: any) => boolean;
|
75
|
+
/** Returns true if the value is not null or undefined, false otherwise */
|
78
76
|
protected IsNotNull: (value: any) => boolean;
|
77
|
+
/** Returns true if the value is null or undefined or is an empty string or contains only whitespace, false otherwise */
|
79
78
|
protected IsOnlyWhiteSpace: (value: any) => boolean;
|
79
|
+
/** Returns true if it has a string value and is not all whitespace, false otherwise */
|
80
80
|
protected IsNotOnlyWhiteSpace: (value: any) => boolean;
|
81
|
-
protected Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
|
82
|
-
protected IsInvalidElement: (element: any) => boolean;
|
83
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<Page, never>;
|
84
82
|
static ɵcmp: i0.ɵɵComponentDeclaration<Page, "ng-component", never, {}, {}, never, never, true, never>;
|
85
83
|
}
|