asma-core-ui 3.0.79 → 3.0.80

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.
@@ -80,6 +80,7 @@ declare const _default: {
80
80
  "opacity-in-5": string;
81
81
  "opacity-appear-3": string;
82
82
  "opacity-out": string;
83
+ spin: string;
83
84
  };
84
85
  keyframes: {
85
86
  "slide-in": {
@@ -130,6 +131,14 @@ declare const _default: {
130
131
  height: string;
131
132
  };
132
133
  };
134
+ spin: {
135
+ "0%": {
136
+ transform: string;
137
+ };
138
+ "100%": {
139
+ transform: string;
140
+ };
141
+ };
133
142
  };
134
143
  };
135
144
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.0.79",
6
+ "version": "3.0.80",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",
@@ -75,7 +75,8 @@
75
75
  "opacity-in": "opacity-in 0.1s linear",
76
76
  "opacity-in-5": "opacity-in 0.5s linear",
77
77
  "opacity-appear-3": "opacity-appear 0.3s linear",
78
- "opacity-out": "opacity-out 0.3s linear"
78
+ "opacity-out": "opacity-out 0.3s linear",
79
+ "spin": "spin 1s linear infinite"
79
80
  },
80
81
  "keyframes": {
81
82
  "slide-in": {
@@ -108,6 +109,10 @@
108
109
  "0%": { "opacity": "1", "height": "100%" },
109
110
  "60%": { "opacity": "1", "height": "100%" },
110
111
  "100%": { "opacity": "0", "height": "100%" }
112
+ },
113
+ "spin": {
114
+ "0%": { "transform": "rotate(0deg)" },
115
+ "100%": { "transform": "rotate(360deg)" }
111
116
  }
112
117
  }
113
118
  }