@timbal-ai/timbal-react 0.3.0 → 0.4.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/index.cjs +1104 -494
- package/dist/index.d.cts +235 -69
- package/dist/index.d.ts +235 -69
- package/dist/index.esm.js +1064 -496
- package/dist/styles.css +0 -30
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -11,36 +11,6 @@
|
|
|
11
11
|
* and ship your own.
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
/* ── AI breathing icon (welcome screen) ── */
|
|
15
|
-
@keyframes timbal-ai-breathe {
|
|
16
|
-
0%, 100% { transform: scale(1); opacity: 0.72; }
|
|
17
|
-
50% { transform: scale(1.1); opacity: 1; }
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@keyframes timbal-ai-ring-glow {
|
|
21
|
-
0%, 100% { opacity: 1; }
|
|
22
|
-
50% { opacity: 0.55; }
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@keyframes timbal-ai-pulse-ring {
|
|
26
|
-
0% { box-shadow: 0 0 0 0 oklch(from var(--primary, #6366f1) l c h / 0.18); }
|
|
27
|
-
65% { box-shadow: 0 0 0 8px oklch(from var(--primary, #6366f1) l c h / 0); }
|
|
28
|
-
100% { box-shadow: 0 0 0 0 oklch(from var(--primary, #6366f1) l c h / 0); }
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.animate-ai-breathe {
|
|
32
|
-
animation: timbal-ai-breathe 3.2s ease-in-out infinite;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.animate-ai-ring-glow {
|
|
36
|
-
animation: timbal-ai-ring-glow 3.2s ease-in-out infinite;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.animate-ai-pulse-ring {
|
|
40
|
-
animation: timbal-ai-pulse-ring 3.2s ease-in-out infinite;
|
|
41
|
-
border-radius: var(--radius-xl, 12px);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
14
|
/* ── Markdown inline code ── */
|
|
45
15
|
.dark code:not(pre code) {
|
|
46
16
|
background-color: oklch(0.269 0 0 / 0.8);
|