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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "2.0.45",
3
+ "version": "2.0.49",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "Components",
@@ -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>;
@@ -1,14 +1,19 @@
1
- @keyframes KeyOpacity {
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 keyRotate360 {
11
+ @keyframes __keyRotate360 {
7
12
  from { transform: rotate(0deg) }
8
13
  to { transform: rotate(360deg) }
9
14
  }
10
15
 
11
- @keyframes keyShake {
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: KeyOpacity !important;
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: KeyOpacity !important;
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: keyRotate360 !important;
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: keyShake !important;
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: KeyOpacity !important;
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: KeyScale !important;
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: KeyScale !important;
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;