@acorex/styles 7.1.2 → 7.1.3

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/index.scss CHANGED
@@ -1,14 +1,14 @@
1
- @import '@angular/cdk/overlay-prebuilt.css';
2
-
3
- @import './src/variables/colors';
4
- @import './src/icons/style.scss';
5
-
6
- @import 'tailwindcss/base';
7
- @import 'tailwindcss/components';
8
- @import 'tailwindcss/utilities';
9
-
10
- @import './src/animations/index.scss';
11
- @import './src/base/index.scss';
12
- @import './src/mixins/index.scss';
13
- @import './src/shared/index.scss';
14
- @import './src/utility/index.scss';
1
+ @import '@angular/cdk/overlay-prebuilt.css';
2
+
3
+ @import './src/variables/colors';
4
+ @import './src/icons/style.scss';
5
+
6
+ @import 'tailwindcss/base';
7
+ @import 'tailwindcss/components';
8
+ @import 'tailwindcss/utilities';
9
+
10
+ @import './src/animations/index.scss';
11
+ @import './src/base/index.scss';
12
+ @import './src/mixins/index.scss';
13
+ @import './src/shared/index.scss';
14
+ @import './src/utility/index.scss';
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
- {
2
- "name": "@acorex/styles",
3
- "version": "7.1.2",
4
- "description": "",
5
- "main": "index.js",
6
- "author": "",
7
- "license": "ISC",
8
- "scripts": {
9
- "test": "echo \"Error: no test specified\" && exit 1"
10
- },
11
- "peerDependencies": {
12
- "animated-tailwindcss": "^4.0.0",
13
- "autoprefixer": "^10.4.14",
14
- "postcss": "^8.4.23",
15
- "tailwind-auto-directions": "^1.0.2",
16
- "tailwindcss": "^3.3.2"
17
- }
18
- }
1
+ {
2
+ "name": "@acorex/styles",
3
+ "version": "7.1.3",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "author": "",
7
+ "license": "ISC",
8
+ "scripts": {
9
+ "test": "echo \"Error: no test specified\" && exit 1"
10
+ },
11
+ "peerDependencies": {
12
+ "animated-tailwindcss": "^4.0.0",
13
+ "autoprefixer": "^10.4.14",
14
+ "postcss": "^8.4.23",
15
+ "tailwind-auto-directions": "^1.0.2",
16
+ "tailwindcss": "^3.3.2"
17
+ }
18
+ }
@@ -1,86 +1,86 @@
1
- .ax-animate-bounceIn {
2
- animation: 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) both ax-bounceIn;
3
- }
4
- .ax-animate-faster {
5
- animation-duration: 0.5s;
6
- animation-duration: 500ms;
7
- }
8
-
9
- .ax-animate-faster-fadeIn {
10
- animation-name: ax-fadeIn;
11
- }
12
- .ax-animate-zoomIn {
13
- animation-name: ax-zoomIn;
14
- }
15
- .ax-animate-slideInUp {
16
- animation-name: ax-slideInUp;
17
- }
18
- @keyframes ax-slideInUp {
19
- from {
20
- transform: translate3d(0, 100%, 0);
21
- visibility: visible;
22
- }
23
-
24
- to {
25
- transform: translate3d(0, 0, 0);
26
- }
27
- }
28
-
29
- @keyframes ax-zoomIn {
30
- from {
31
- opacity: 0;
32
- transform: scale3d(0.3, 0.3, 0.3);
33
- }
34
-
35
- 50% {
36
- opacity: 1;
37
- }
38
- }
39
-
40
- @keyframes ax-fadeIn {
41
- from {
42
- opacity: 0;
43
- }
44
-
45
- to {
46
- opacity: 1;
47
- }
48
- }
49
-
50
- @keyframes ax-bounceIn {
51
- from,
52
- 20%,
53
- 40%,
54
- 60%,
55
- 80%,
56
- to {
57
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
58
- }
59
-
60
- 0% {
61
- opacity: 0;
62
- transform: scale3d(0.3, 0.3, 0.3);
63
- }
64
-
65
- 20% {
66
- transform: scale3d(1.1, 1.1, 1.1);
67
- }
68
-
69
- 40% {
70
- transform: scale3d(0.9, 0.9, 0.9);
71
- }
72
-
73
- 60% {
74
- opacity: 1;
75
- transform: scale3d(1.03, 1.03, 1.03);
76
- }
77
-
78
- 80% {
79
- transform: scale3d(0.97, 0.97, 0.97);
80
- }
81
-
82
- to {
83
- opacity: 1;
84
- transform: scale3d(1, 1, 1);
85
- }
86
- }
1
+ .ax-animate-bounceIn {
2
+ animation: 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) both ax-bounceIn;
3
+ }
4
+ .ax-animate-faster {
5
+ animation-duration: 0.5s;
6
+ animation-duration: 500ms;
7
+ }
8
+
9
+ .ax-animate-faster-fadeIn {
10
+ animation-name: ax-fadeIn;
11
+ }
12
+ .ax-animate-zoomIn {
13
+ animation-name: ax-zoomIn;
14
+ }
15
+ .ax-animate-slideInUp {
16
+ animation-name: ax-slideInUp;
17
+ }
18
+ @keyframes ax-slideInUp {
19
+ from {
20
+ transform: translate3d(0, 100%, 0);
21
+ visibility: visible;
22
+ }
23
+
24
+ to {
25
+ transform: translate3d(0, 0, 0);
26
+ }
27
+ }
28
+
29
+ @keyframes ax-zoomIn {
30
+ from {
31
+ opacity: 0;
32
+ transform: scale3d(0.3, 0.3, 0.3);
33
+ }
34
+
35
+ 50% {
36
+ opacity: 1;
37
+ }
38
+ }
39
+
40
+ @keyframes ax-fadeIn {
41
+ from {
42
+ opacity: 0;
43
+ }
44
+
45
+ to {
46
+ opacity: 1;
47
+ }
48
+ }
49
+
50
+ @keyframes ax-bounceIn {
51
+ from,
52
+ 20%,
53
+ 40%,
54
+ 60%,
55
+ 80%,
56
+ to {
57
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
58
+ }
59
+
60
+ 0% {
61
+ opacity: 0;
62
+ transform: scale3d(0.3, 0.3, 0.3);
63
+ }
64
+
65
+ 20% {
66
+ transform: scale3d(1.1, 1.1, 1.1);
67
+ }
68
+
69
+ 40% {
70
+ transform: scale3d(0.9, 0.9, 0.9);
71
+ }
72
+
73
+ 60% {
74
+ opacity: 1;
75
+ transform: scale3d(1.03, 1.03, 1.03);
76
+ }
77
+
78
+ 80% {
79
+ transform: scale3d(0.97, 0.97, 0.97);
80
+ }
81
+
82
+ to {
83
+ opacity: 1;
84
+ transform: scale3d(1, 1, 1);
85
+ }
86
+ }