@mesob/ui 0.4.7 → 0.5.0
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/dist/components.d.ts +790 -111
- package/dist/components.js +10727 -6518
- package/dist/components.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/locale.d.ts +2 -2
- package/dist/lib/locale.js.map +1 -1
- package/dist/providers.d.ts +2 -1
- package/dist/providers.js +13 -7
- package/dist/providers.js.map +1 -1
- package/package.json +9 -3
- package/src/styles/style-lyra.css +33 -0
- package/src/styles/style-maia.css +33 -0
- package/src/styles/style-mira.css +33 -0
- package/src/styles/style-nova.css +33 -0
- package/src/styles/style-vega.css +33 -0
- package/src/styles/themes.css +64 -0
package/src/styles/themes.css
CHANGED
|
@@ -14,3 +14,67 @@
|
|
|
14
14
|
transition-duration: 0.01ms;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
+
|
|
18
|
+
/* MARK: AI Trigger (global; outside theme layers for consistent priority) */
|
|
19
|
+
.ai-fill-ring {
|
|
20
|
+
--ai-fill-ring-width: 2px;
|
|
21
|
+
border-radius: 9999px;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ai-fill-ring::before {
|
|
26
|
+
content: "";
|
|
27
|
+
position: absolute;
|
|
28
|
+
inset: 0;
|
|
29
|
+
padding: var(--ai-fill-ring-width);
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
border-radius: inherit;
|
|
32
|
+
background: linear-gradient(
|
|
33
|
+
105deg,
|
|
34
|
+
transparent 0%,
|
|
35
|
+
transparent 34%,
|
|
36
|
+
#c084fc 45%,
|
|
37
|
+
#60a5fa 50%,
|
|
38
|
+
transparent 58%,
|
|
39
|
+
transparent 100%
|
|
40
|
+
);
|
|
41
|
+
background-size: 220% 100%;
|
|
42
|
+
background-position: 130% 0;
|
|
43
|
+
-webkit-mask:
|
|
44
|
+
linear-gradient(#000 0 0) content-box,
|
|
45
|
+
linear-gradient(#000 0 0);
|
|
46
|
+
-webkit-mask-composite: xor;
|
|
47
|
+
mask-composite: exclude;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.ai-fill-button:hover .ai-fill-ring {
|
|
51
|
+
animation: ai-fill-ring-visibility 2400ms linear 1 forwards;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.ai-fill-button:hover .ai-fill-ring::before {
|
|
55
|
+
animation: ai-fill-ring-sweep 1200ms linear 2;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@keyframes ai-fill-ring-visibility {
|
|
59
|
+
0% {
|
|
60
|
+
opacity: 0;
|
|
61
|
+
}
|
|
62
|
+
8% {
|
|
63
|
+
opacity: 1;
|
|
64
|
+
}
|
|
65
|
+
85% {
|
|
66
|
+
opacity: 1;
|
|
67
|
+
}
|
|
68
|
+
100% {
|
|
69
|
+
opacity: 0;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@keyframes ai-fill-ring-sweep {
|
|
74
|
+
from {
|
|
75
|
+
background-position: 130% 0;
|
|
76
|
+
}
|
|
77
|
+
to {
|
|
78
|
+
background-position: -130% 0;
|
|
79
|
+
}
|
|
80
|
+
}
|