@mirai/ui 2.1.36 → 2.1.37

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.
@@ -213,3 +213,33 @@
213
213
  .squared .spinner::after {
214
214
  left: calc(var(--mirai-ui-space-S) * 0.75);
215
215
  }
216
+
217
+ @keyframes mirai-button-busy {
218
+ 0% {
219
+ background-color: var(--mirai-ui-base);
220
+ }
221
+ 50%,
222
+ 100% {
223
+ background-color: var(--mirai-ui-button-spinner-background);
224
+ }
225
+ }
226
+
227
+ @keyframes mirai-button-secondary-busy {
228
+ 0% {
229
+ background-color: var(--mirai-ui-button-secondary-background);
230
+ }
231
+ 50%,
232
+ 100% {
233
+ background-color: var(--mirai-ui-button-secondary-color);
234
+ }
235
+ }
236
+
237
+ @keyframes mirai-button-transparent-busy {
238
+ 0% {
239
+ background-color: var(--mirai-ui-content);
240
+ }
241
+ 50%,
242
+ 100% {
243
+ background-color: var(--mirai-ui-content-border);
244
+ }
245
+ }
@@ -26,3 +26,15 @@
26
26
  transform-origin: 0% 50%;
27
27
  width: 100%;
28
28
  }
29
+
30
+ @keyframes mirai-progress-indeterminate {
31
+ 0% {
32
+ transform: translateX(0) scaleX(0);
33
+ }
34
+ 50% {
35
+ transform: translateX(0) scaleX(1);
36
+ }
37
+ 100% {
38
+ transform: translateX(100%) scaleX(0.5);
39
+ }
40
+ }
@@ -304,45 +304,3 @@
304
304
  --mirai-ui-space-XXL: 60px;
305
305
  }
306
306
  }
307
-
308
- @keyframes mirai-button-busy {
309
- 0% {
310
- background-color: var(--mirai-ui-base);
311
- }
312
- 50%,
313
- 100% {
314
- background-color: var(--mirai-ui-button-spinner-background);
315
- }
316
- }
317
-
318
- @keyframes mirai-button-secondary-busy {
319
- 0% {
320
- background-color: var(--mirai-ui-button-secondary-background);
321
- }
322
- 50%,
323
- 100% {
324
- background-color: var(--mirai-ui-button-secondary-color);
325
- }
326
- }
327
-
328
- @keyframes mirai-button-transparent-busy {
329
- 0% {
330
- background-color: var(--mirai-ui-content);
331
- }
332
- 50%,
333
- 100% {
334
- background-color: var(--mirai-ui-content-border);
335
- }
336
- }
337
-
338
- @keyframes mirai-progress-indeterminate {
339
- 0% {
340
- transform: translateX(0) scaleX(0);
341
- }
342
- 50% {
343
- transform: translateX(0) scaleX(1);
344
- }
345
- 100% {
346
- transform: translateX(100%) scaleX(0.5);
347
- }
348
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirai/ui",
3
- "version": "2.1.36",
3
+ "version": "2.1.37",
4
4
  "repository": "git@gitlab.com:miraicorp/dev/frontend/ui.git",
5
5
  "author": "JΛVI <hello@soyjavi.com>",
6
6
  "license": "MIT",