coer-elements 2.0.23 → 2.0.26
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-numberbox/coer-numberbox.component.d.ts +8 -1
- package/fesm2022/coer-elements-components.mjs +46 -13
- 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 +74 -82
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/animations.scss +101 -8
- package/styles/borders.scss +126 -0
- package/styles/coer-elements.css +1 -19777
- package/styles/colors.scss +103 -112
- package/styles/components.scss +18 -0
- package/styles/cursors.scss +12 -18
- package/styles/{font.scss → fonts.scss} +7 -1
- package/styles/icons/icons-fill-none.scss +3 -0
- package/styles/icons/icons-fill.scss +21 -0
- package/styles/icons/icons-regular-none.scss +3 -0
- package/styles/icons/icons-regular.scss +17 -0
- package/styles/icons/icons.scss +67 -0
- package/styles/index.scss +81 -51
- package/styles/layout-flex-wrap.scss +96 -94
- package/styles/layout-flex.scss +57 -53
- package/styles/layout-grid.scss +22 -14
- package/styles/margins.scss +60 -0
- package/styles/overflow.scss +10 -8
- package/styles/paddings.scss +60 -0
- package/styles/paragraphs.scss +14 -0
- package/styles/positions.scss +60 -0
- package/styles/width-height.scss +123 -118
- package/svg/fill/alarm.fill.svg +4 -0
- package/svg/fill/bell.fill.svg +4 -0
- package/svg/fill/bulb-idea.fill.svg +4 -0
- package/svg/fill/cloud.fill.svg +4 -0
- package/svg/fill/components.fill.svg +4 -0
- package/svg/fill/css.fill.svg +4 -0
- package/svg/fill/dot.fill.svg +4 -0
- package/svg/fill/download.fill.svg +4 -0
- package/svg/fill/gear.fill.svg +4 -0
- package/svg/fill/heart.fill.svg +4 -0
- package/svg/{house-fill.svg → fill/house.fill.svg} +1 -0
- package/svg/fill/html.fill.svg +4 -0
- package/svg/fill/javascript.fill.svg +4 -0
- package/svg/fill/none/bell.fill.none.svg +4 -0
- package/svg/fill/pin-geo.fill.svg +4 -0
- package/svg/fill/screwdriver-wrench.fill.svg +4 -0
- package/svg/fill/toolbox.fill.svg +4 -0
- package/svg/fill/trash-can.fill.svg +4 -0
- package/svg/fill/trophy.fill.svg +4 -0
- package/svg/fill/user.fill.svg +4 -0
- package/svg/regular/alarm.svg +5 -0
- package/svg/{array.svg → regular/array.svg} +1 -0
- package/svg/regular/arrows-sync.svg +4 -0
- package/svg/regular/bars.svg +4 -0
- package/svg/regular/bell.svg +4 -0
- package/svg/regular/cloud.svg +4 -0
- package/svg/regular/components.svg +4 -0
- package/svg/{developer.svg → regular/developer.svg} +2 -1
- package/svg/{envelope.svg → regular/envelope.svg} +2 -1
- package/svg/regular/heart.svg +4 -0
- package/svg/regular/none/bell.none.svg +4 -0
- package/svg/regular/pin-geo.svg +5 -0
- package/svg/regular/t.svg +4 -0
- package/svg/regular/trash-can.svg +5 -0
- package/svg/regular/trophy.svg +4 -0
- package/svg/{whatsapp.svg → regular/whatsapp.svg} +2 -1
- package/styles/border.scss +0 -30
- package/styles/icons.scss +0 -60
- package/styles/margin.scss +0 -21
- package/styles/padding.scss +0 -21
- package/styles/paragraph.scss +0 -3
- package/styles/position.scss +0 -52
- package/svg/bulb-light-idea-fill.svg +0 -3
- package/svg/css.svg +0 -3
- package/svg/html.svg +0 -3
- package/svg/javascript.svg +0 -3
- /package/styles/{scroll-bar.scss → scroll-bars.scss} +0 -0
package/package.json
CHANGED
package/styles/animations.scss
CHANGED
@@ -1,11 +1,104 @@
|
|
1
|
-
@keyframes
|
2
|
-
from { opacity: 0
|
3
|
-
to
|
1
|
+
@keyframes KeyOpacity {
|
2
|
+
from { opacity: 0 }
|
3
|
+
to { opacity: 1 }
|
4
|
+
}
|
5
|
+
|
6
|
+
@keyframes keyRotate360 {
|
7
|
+
from { transform: rotate(0deg) }
|
8
|
+
to { transform: rotate(360deg) }
|
9
|
+
}
|
10
|
+
|
11
|
+
@keyframes keyShake {
|
12
|
+
0% { transform: rotate(25deg) }
|
13
|
+
25% { transform: rotate(-25deg) }
|
14
|
+
50% { transform: rotate(25deg) }
|
15
|
+
75% { transform: rotate(-25deg) }
|
16
|
+
100% { transform: rotate(25deg) }
|
4
17
|
}
|
5
18
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
19
|
+
|
20
|
+
@keyframes KeyScale {
|
21
|
+
from { transform: scale(1.0) }
|
22
|
+
to { transform: scale(1.3) }
|
23
|
+
}
|
24
|
+
|
25
|
+
|
26
|
+
@mixin mixin($breakpoint) {
|
27
|
+
.#{$breakpoint}animation-fadeIn {
|
28
|
+
animation-name: KeyOpacity !important;
|
29
|
+
animation-duration: 1.5s !important;
|
30
|
+
animation-fill-mode: both !important;
|
31
|
+
animation-iteration-count: 1;
|
32
|
+
}
|
33
|
+
|
34
|
+
.#{$breakpoint}animation-fadeOut {
|
35
|
+
animation-name: KeyOpacity !important;
|
36
|
+
animation-duration: 1.5s !important;
|
37
|
+
animation-fill-mode: both !important;
|
38
|
+
animation-direction: reverse !important;
|
39
|
+
animation-iteration-count: 1;
|
40
|
+
}
|
41
|
+
|
42
|
+
.#{$breakpoint}animation-spin {
|
43
|
+
animation-name: keyRotate360 !important;
|
44
|
+
animation-iteration-count: infinite !important;
|
45
|
+
animation-fill-mode: both !important;
|
46
|
+
animation-timing-function: linear !important;
|
47
|
+
animation-duration: 1s;
|
48
|
+
}
|
49
|
+
|
50
|
+
.#{$breakpoint}animation-shake {
|
51
|
+
animation-name: keyShake !important;
|
52
|
+
animation-iteration-count: infinite !important;
|
53
|
+
animation-direction: alternate !important;
|
54
|
+
animation-fill-mode: both !important;
|
55
|
+
animation-timing-function: linear !important;
|
56
|
+
animation-duration: 0.6s;
|
57
|
+
}
|
58
|
+
|
59
|
+
.#{$breakpoint}animation-appear {
|
60
|
+
animation-name: KeyOpacity !important;
|
61
|
+
animation-iteration-count: infinite !important;
|
62
|
+
animation-direction: alternate !important;
|
63
|
+
animation-timing-function: linear !important;
|
64
|
+
animation-fill-mode: both !important;
|
65
|
+
animation-duration: 1s;
|
66
|
+
}
|
67
|
+
|
68
|
+
.#{$breakpoint}animation-pulse {
|
69
|
+
animation-name: KeyScale !important;
|
70
|
+
animation-iteration-count: infinite !important;
|
71
|
+
animation-fill-mode: both !important;
|
72
|
+
animation-duration: 0.6s;
|
73
|
+
}
|
74
|
+
|
75
|
+
.#{$breakpoint}animation-beat {
|
76
|
+
animation-name: KeyScale !important;
|
77
|
+
animation-iteration-count: infinite !important;
|
78
|
+
animation-direction: alternate !important;
|
79
|
+
animation-timing-function: linear !important;
|
80
|
+
animation-fill-mode: both !important;
|
81
|
+
animation-duration: 0.5s;
|
82
|
+
}
|
83
|
+
|
84
|
+
.#{$breakpoint}speed-0 {
|
85
|
+
animation-duration: 0.0s !important;
|
86
|
+
}
|
87
|
+
|
88
|
+
//SPEED
|
89
|
+
@for $integer from 1 through 10 {
|
90
|
+
@for $decimals from 1 through 10 {
|
91
|
+
@if($decimals == 10) {
|
92
|
+
.#{$breakpoint}animation-speed-#{($integer - 1) * 10 + $decimals} {
|
93
|
+
animation-duration: $integer + 0.0s !important;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
@else {
|
98
|
+
.#{$breakpoint}animation-speed-#{($integer - 1) * 10 + $decimals} {
|
99
|
+
animation-duration: #{($integer - 1) + ($decimals * 0.1)}s !important;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
11
104
|
}
|
@@ -0,0 +1,126 @@
|
|
1
|
+
@mixin mixin($breakpoint) {
|
2
|
+
.#{$breakpoint}border-none {
|
3
|
+
border: none !important;
|
4
|
+
}
|
5
|
+
|
6
|
+
@each $key, $value in (
|
7
|
+
'dotted': dotted,
|
8
|
+
'dashed': dashed,
|
9
|
+
'solid' : solid,
|
10
|
+
'double': double,
|
11
|
+
'groove': groove,
|
12
|
+
'ridge' : ridge,
|
13
|
+
'inset' : inset,
|
14
|
+
'outset': outset
|
15
|
+
) {
|
16
|
+
@for $size from 0 through 10 {
|
17
|
+
.#{$breakpoint}border-#{$key}-#{$size}px {
|
18
|
+
border: ($size * 1px) $value var(--gray) !important;
|
19
|
+
}
|
20
|
+
|
21
|
+
// X - Y
|
22
|
+
.#{$breakpoint}border-#{$key}-y-#{$size}px {
|
23
|
+
border-top: ($size * 1px) $value var(--gray) !important;
|
24
|
+
border-bottom: ($size * 1px) $value var(--gray) !important;
|
25
|
+
}
|
26
|
+
|
27
|
+
.#{$breakpoint}border-#{$key}-x-#{$size}px {
|
28
|
+
border-left: ($size * 1px) $value var(--gray) !important;
|
29
|
+
border-right: ($size * 1px) $value var(--gray) !important;
|
30
|
+
}
|
31
|
+
|
32
|
+
// CUBE
|
33
|
+
.#{$breakpoint}border-#{$key}-trb-#{$size}px {
|
34
|
+
border-top: ($size * 1px) $value var(--gray) !important;
|
35
|
+
border-right: ($size * 1px) $value var(--gray) !important;
|
36
|
+
border-bottom: ($size * 1px) $value var(--gray) !important;
|
37
|
+
}
|
38
|
+
|
39
|
+
.#{$breakpoint}border-#{$key}-rbl-#{$size}px {
|
40
|
+
border-right: ($size * 1px) $value var(--gray) !important;
|
41
|
+
border-bottom: ($size * 1px) $value var(--gray) !important;
|
42
|
+
border-left: ($size * 1px) $value var(--gray) !important;
|
43
|
+
}
|
44
|
+
|
45
|
+
.#{$breakpoint}border-#{$key}-blt-#{$size}px {
|
46
|
+
border-bottom: ($size * 1px) $value var(--gray) !important;
|
47
|
+
border-left: ($size * 1px) $value var(--gray) !important;
|
48
|
+
border-top: ($size * 1px) $value var(--gray) !important;
|
49
|
+
}
|
50
|
+
|
51
|
+
.#{$breakpoint}border-#{$key}-ltr-#{$size}px {
|
52
|
+
border-left: ($size * 1px) $value var(--gray) !important;
|
53
|
+
border-top: ($size * 1px) $value var(--gray) !important;
|
54
|
+
border-right: ($size * 1px) $value var(--gray) !important;
|
55
|
+
}
|
56
|
+
|
57
|
+
// ONE SIDE
|
58
|
+
.#{$breakpoint}border-#{$key}-top-#{$size}px {
|
59
|
+
border-top: ($size * 1px) $value var(--gray) !important;
|
60
|
+
}
|
61
|
+
|
62
|
+
.#{$breakpoint}border-#{$key}-right-#{$size}px {
|
63
|
+
border-right: ($size * 1px) $value var(--gray) !important;
|
64
|
+
}
|
65
|
+
|
66
|
+
.#{$breakpoint}border-#{$key}-bottom-#{$size}px {
|
67
|
+
border-bottom: ($size * 1px) $value var(--gray) !important;
|
68
|
+
}
|
69
|
+
|
70
|
+
.#{$breakpoint}border-#{$key}-left-#{$size}px {
|
71
|
+
border-left: ($size * 1px) $value var(--gray) !important;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
@for $i from 0 through 50 {
|
77
|
+
.#{$breakpoint}border-radius-#{$i}px {
|
78
|
+
border-radius: $i * 1px !important;
|
79
|
+
}
|
80
|
+
|
81
|
+
// TOP - LEFT
|
82
|
+
.#{$breakpoint}border-radius-top-left-#{$i}px {
|
83
|
+
border-top-left-radius: $i * 1px !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
// TOP - RIGHT
|
87
|
+
.#{$breakpoint}border-radius-top-right-#{$i}px {
|
88
|
+
border-top-right-radius: $i * 1px !important;
|
89
|
+
}
|
90
|
+
|
91
|
+
// BOTTOM - LEFT
|
92
|
+
.#{$breakpoint}border-radius-bottom-left-#{$i}px {
|
93
|
+
border-bottom-left-radius: $i * 1px !important;
|
94
|
+
}
|
95
|
+
|
96
|
+
// BOTTOM - RIGHT
|
97
|
+
.#{$breakpoint}border-radius-bottom-right-#{$i}px {
|
98
|
+
border-bottom-right-radius: $i * 1px !important;
|
99
|
+
}
|
100
|
+
|
101
|
+
// TOP
|
102
|
+
.#{$breakpoint}border-radius-top-#{$i}px {
|
103
|
+
border-top-left-radius: $i * 1px !important;
|
104
|
+
border-top-right-radius: $i * 1px !important;
|
105
|
+
}
|
106
|
+
|
107
|
+
// Bottom
|
108
|
+
.#{$breakpoint}border-radius-bottom-#{$i}px {
|
109
|
+
border-bottom-left-radius: $i * 1px !important;
|
110
|
+
border-bottom-right-radius: $i * 1px !important;
|
111
|
+
}
|
112
|
+
|
113
|
+
// RIGHT
|
114
|
+
.#{$breakpoint}border-radius-right-#{$i}px {
|
115
|
+
border-top-right-radius: $i * 1px !important;
|
116
|
+
border-bottom-right-radius: $i * 1px !important;
|
117
|
+
}
|
118
|
+
|
119
|
+
// LEFT
|
120
|
+
.#{$breakpoint}border-radius-left-#{$i}px {
|
121
|
+
border-top-left-radius: $i * 1px !important;
|
122
|
+
border-bottom-left-radius: $i * 1px !important;
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|