asma-core-ui 3.0.93-alpha2 → 3.0.93-alpha3

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.
@@ -138,29 +138,29 @@ declare const _default: {
138
138
  "opacity-height-in": {
139
139
  "0%": {
140
140
  opacity: string;
141
- height: string;
141
+ maxHeight: string;
142
142
  };
143
143
  "50%": {
144
144
  opacity: string;
145
- height: string;
145
+ maxHeight: string;
146
146
  };
147
147
  "100%": {
148
148
  opacity: string;
149
- height: string;
149
+ maxHeight: string;
150
150
  };
151
151
  };
152
152
  "opacity-height-out": {
153
153
  "0%": {
154
154
  opacity: string;
155
- height: string;
155
+ maxHeight: string;
156
156
  };
157
157
  "50%": {
158
158
  opacity: string;
159
- height: string;
159
+ maxHeight: string;
160
160
  };
161
161
  "100%": {
162
162
  opacity: string;
163
- height: string;
163
+ maxHeight: string;
164
164
  };
165
165
  };
166
166
  spin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.0.93-alpha2",
6
+ "version": "3.0.93-alpha3",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",
@@ -79,8 +79,8 @@
79
79
  "opacity-appear-1s": "opacity-appear 1s linear",
80
80
  "opacity-out": "opacity-out 0.3s linear",
81
81
  "spin": "spin 1s linear infinite",
82
- "opacity-height-in": "opacity-height-in 0.3s linear",
83
- "opacity-height-out": "opacity-height-out 0.3s linear"
82
+ "opacity-height-in": "opacity-height-in 0.5s ease forwards",
83
+ "opacity-height-out": "opacity-height-out 0.5s ease forwards"
84
84
  },
85
85
  "keyframes": {
86
86
  "slide-in": {
@@ -115,14 +115,14 @@
115
115
  "100%": { "opacity": "0", "height": "100%" }
116
116
  },
117
117
  "opacity-height-in": {
118
- "0%": { "opacity": "0", "height": "0%" },
119
- "50%": { "opacity": "0,5", "height": "50%" },
120
- "100%": { "opacity": "1", "height": "100%" }
118
+ "0%": { "opacity": "0", "maxHeight": "0" },
119
+ "50%": { "opacity": "0.5", "maxHeight": "50vh" },
120
+ "100%": { "opacity": "1", "maxHeight": "100vh" }
121
121
  },
122
122
  "opacity-height-out": {
123
- "0%": { "opacity": "1", "height": "100%" },
124
- "50%": { "opacity": "0,5", "height": "50%" },
125
- "100%": { "opacity": "0", "height": "0%" }
123
+ "0%": { "opacity": "1", "maxHeight": "100vh" },
124
+ "50%": { "opacity": "0.5", "maxHeight": "50vh" },
125
+ "100%": { "opacity": "0", "maxHeight": "0" }
126
126
  },
127
127
  "spin": {
128
128
  "0%": { "transform": "rotate(0deg)" },