@smart-cloud/ai-kit-ui 1.1.24 → 1.1.26
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/ai-kit-ui.css +5 -9
- package/dist/index.cjs +9 -9
- package/dist/index.js +9 -9
- package/package.json +2 -2
- package/src/ShadowBoundary.tsx +15 -15
- package/src/styles/ai-kit-ui.css +5 -9
package/dist/ai-kit-ui.css
CHANGED
|
@@ -105,14 +105,7 @@
|
|
|
105
105
|
--ai-kit-border-speed: 1400ms;
|
|
106
106
|
--ai-kit-border-angle: 0deg;
|
|
107
107
|
|
|
108
|
-
--ai-kit-border-
|
|
109
|
-
from var(--ai-kit-border-angle, 0deg) at 50% 50%,
|
|
110
|
-
#00c2ff,
|
|
111
|
-
#7c3aed,
|
|
112
|
-
#22c55e,
|
|
113
|
-
#f59e0b,
|
|
114
|
-
#00c2ff
|
|
115
|
-
);
|
|
108
|
+
--ai-kit-border-stops: #00c2ff, #7c3aed, #22c55e, #f59e0b, #00c2ff;
|
|
116
109
|
|
|
117
110
|
--ai-kit-position-z-index: 100001;
|
|
118
111
|
|
|
@@ -306,7 +299,10 @@
|
|
|
306
299
|
z-index: 0;
|
|
307
300
|
border-radius: var(--ai-kit-radius);
|
|
308
301
|
padding: var(--ai-kit-border-thickness);
|
|
309
|
-
background:
|
|
302
|
+
background: conic-gradient(
|
|
303
|
+
from var(--ai-kit-border-angle, 0deg) at 50% 50%,
|
|
304
|
+
var(--ai-kit-border-stops)
|
|
305
|
+
);
|
|
310
306
|
animation: ai-kit-border-run var(--ai-kit-border-speed) linear infinite;
|
|
311
307
|
-webkit-mask:
|
|
312
308
|
linear-gradient(#000 0 0) content-box,
|