@jvittechs/jai1-cli 0.1.98 → 0.1.100
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/cli.js +589 -369
- package/dist/cli.js.map +1 -1
- package/dist/web-chat/index.html +1 -0
- package/dist/web-chat/style.css +20 -0
- package/package.json +1 -1
package/dist/web-chat/index.html
CHANGED
package/dist/web-chat/style.css
CHANGED
|
@@ -284,6 +284,26 @@ body {
|
|
|
284
284
|
color: var(--primary-500);
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
+
/* Experimental Badge */
|
|
288
|
+
.badge-experimental {
|
|
289
|
+
padding: 2px 8px;
|
|
290
|
+
background: linear-gradient(135deg, var(--warning) 0%, var(--secondary-600) 100%);
|
|
291
|
+
border-radius: 100px;
|
|
292
|
+
font-family: var(--font-mono);
|
|
293
|
+
font-size: 9px;
|
|
294
|
+
font-weight: 600;
|
|
295
|
+
text-transform: uppercase;
|
|
296
|
+
letter-spacing: 0.05em;
|
|
297
|
+
color: var(--bg-primary);
|
|
298
|
+
margin-left: var(--space-2);
|
|
299
|
+
animation: badge-pulse 2s ease-in-out infinite;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
@keyframes badge-pulse {
|
|
303
|
+
0%, 100% { opacity: 1; }
|
|
304
|
+
50% { opacity: 0.7; }
|
|
305
|
+
}
|
|
306
|
+
|
|
287
307
|
/* Connection Status */
|
|
288
308
|
.connection-status {
|
|
289
309
|
display: flex;
|
package/package.json
CHANGED