coer-elements 2.0.45 → 2.0.49
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-grid/coer-grid.extension.d.ts +0 -1
- package/components/lib/coer-modal/coer-modal.component.d.ts +3 -3
- package/components/lib/coer-tab/coer-tab.component.d.ts +1 -0
- package/fesm2022/coer-elements-components.mjs +40 -50
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +3 -2
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +45 -22
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/pages/lib/home/home.component.d.ts +2 -0
- package/styles/animations.scss +17 -14
- package/styles/coer-elements.css +1 -1
- package/styles/colors.scss +14 -2
- package/styles/components.scss +9 -10
- package/styles/icons/icons-fill.scss +3 -0
- package/styles/index.scss +11 -5
- package/styles/paragraphs.scss +0 -9
- package/svg/fill/circle-check.fill.svg +4 -0
- package/svg/fill/circle-exclamation.fill.svg +4 -0
- package/svg/fill/copy.fill.svg +4 -0
- package/tools/lib/html-elements.tools.d.ts +10 -6
package/package.json
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
import { CoerModal } from 'coer-elements/components';
|
1
2
|
import { Page } from 'coer-elements/tools';
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
export declare class HomePage extends Page {
|
5
|
+
protected modal: import("@angular/core").Signal<CoerModal>;
|
4
6
|
constructor();
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomePage, never>;
|
6
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<HomePage, "home-page", never, {}, {}, never, never, false, never>;
|
package/styles/animations.scss
CHANGED
@@ -1,14 +1,19 @@
|
|
1
|
-
@keyframes
|
1
|
+
@keyframes __KeyOpacity50 {
|
2
|
+
from { opacity: 0.5 }
|
3
|
+
to { opacity: 1.0 }
|
4
|
+
}
|
5
|
+
|
6
|
+
@keyframes __KeyOpacity100 {
|
2
7
|
from { opacity: 0 }
|
3
8
|
to { opacity: 1 }
|
4
9
|
}
|
5
10
|
|
6
|
-
@keyframes
|
11
|
+
@keyframes __keyRotate360 {
|
7
12
|
from { transform: rotate(0deg) }
|
8
13
|
to { transform: rotate(360deg) }
|
9
14
|
}
|
10
15
|
|
11
|
-
@keyframes
|
16
|
+
@keyframes __keyShake {
|
12
17
|
0% { transform: rotate(25deg) }
|
13
18
|
25% { transform: rotate(-25deg) }
|
14
19
|
50% { transform: rotate(25deg) }
|
@@ -16,23 +21,21 @@
|
|
16
21
|
100% { transform: rotate(25deg) }
|
17
22
|
}
|
18
23
|
|
19
|
-
|
20
|
-
@keyframes KeyScale {
|
24
|
+
@keyframes __KeyScale {
|
21
25
|
from { transform: scale(1.0) }
|
22
26
|
to { transform: scale(1.3) }
|
23
27
|
}
|
24
28
|
|
25
|
-
|
26
29
|
@mixin mixin($breakpoint) {
|
27
30
|
.#{$breakpoint}animation-fadeIn {
|
28
|
-
animation-name:
|
31
|
+
animation-name: __KeyOpacity100 !important;
|
29
32
|
animation-duration: 1.5s !important;
|
30
33
|
animation-fill-mode: both !important;
|
31
34
|
animation-iteration-count: 1;
|
32
35
|
}
|
33
36
|
|
34
37
|
.#{$breakpoint}animation-fadeOut {
|
35
|
-
animation-name:
|
38
|
+
animation-name: __KeyOpacity100 !important;
|
36
39
|
animation-duration: 1.5s !important;
|
37
40
|
animation-fill-mode: both !important;
|
38
41
|
animation-direction: reverse !important;
|
@@ -40,7 +43,7 @@
|
|
40
43
|
}
|
41
44
|
|
42
45
|
.#{$breakpoint}animation-spin {
|
43
|
-
animation-name:
|
46
|
+
animation-name: __keyRotate360 !important;
|
44
47
|
animation-iteration-count: infinite !important;
|
45
48
|
animation-fill-mode: both !important;
|
46
49
|
animation-timing-function: linear !important;
|
@@ -48,7 +51,7 @@
|
|
48
51
|
}
|
49
52
|
|
50
53
|
.#{$breakpoint}animation-shake {
|
51
|
-
animation-name:
|
54
|
+
animation-name: __keyShake !important;
|
52
55
|
animation-iteration-count: infinite !important;
|
53
56
|
animation-direction: alternate !important;
|
54
57
|
animation-fill-mode: both !important;
|
@@ -57,7 +60,7 @@
|
|
57
60
|
}
|
58
61
|
|
59
62
|
.#{$breakpoint}animation-appear {
|
60
|
-
animation-name:
|
63
|
+
animation-name: __KeyOpacity100 !important;
|
61
64
|
animation-iteration-count: infinite !important;
|
62
65
|
animation-direction: alternate !important;
|
63
66
|
animation-timing-function: linear !important;
|
@@ -66,20 +69,20 @@
|
|
66
69
|
}
|
67
70
|
|
68
71
|
.#{$breakpoint}animation-pulse {
|
69
|
-
animation-name:
|
72
|
+
animation-name: __KeyScale !important;
|
70
73
|
animation-iteration-count: infinite !important;
|
71
74
|
animation-fill-mode: both !important;
|
72
75
|
animation-duration: 0.6s;
|
73
76
|
}
|
74
77
|
|
75
78
|
.#{$breakpoint}animation-beat {
|
76
|
-
animation-name:
|
79
|
+
animation-name: __KeyScale !important;
|
77
80
|
animation-iteration-count: infinite !important;
|
78
81
|
animation-direction: alternate !important;
|
79
82
|
animation-timing-function: linear !important;
|
80
83
|
animation-fill-mode: both !important;
|
81
84
|
animation-duration: 0.5s;
|
82
|
-
}
|
85
|
+
}
|
83
86
|
|
84
87
|
.#{$breakpoint}speed-0 {
|
85
88
|
animation-duration: 0.0s !important;
|