canvasxpress-cli 52.6.0 → 52.7.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/package.json +1 -1
- package/src/canvasXpress.css +65 -3
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -374,12 +374,10 @@ div.cX-chat-container-text {
|
|
|
374
374
|
min-height: 50px;
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
-
|
|
377
|
+
p.cX-chat-question {
|
|
378
378
|
border: none;
|
|
379
379
|
background-color: var(--cx-color-extra-light-gray);
|
|
380
|
-
width: 100%;
|
|
381
380
|
margin: 0;
|
|
382
|
-
align-self: stretch;
|
|
383
381
|
display: inline;;
|
|
384
382
|
}
|
|
385
383
|
|
|
@@ -408,6 +406,70 @@ svg.cX-chat-thumbs {
|
|
|
408
406
|
float: left;
|
|
409
407
|
}
|
|
410
408
|
|
|
409
|
+
/****************
|
|
410
|
+
* LLM Examples *
|
|
411
|
+
****************/
|
|
412
|
+
|
|
413
|
+
div.cX-LLM-window {
|
|
414
|
+
position: absolute;
|
|
415
|
+
border: 1px solid #555555;
|
|
416
|
+
max-width: 440px;
|
|
417
|
+
overflow: hidden;
|
|
418
|
+
border-radius: 5px;
|
|
419
|
+
background-color: var(--cx-color-extra-light-gray);
|
|
420
|
+
z-index: 10000;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
a.cX-LLM-window-close {
|
|
424
|
+
position: sticky;
|
|
425
|
+
top: 0;
|
|
426
|
+
left: 410px;
|
|
427
|
+
font-size: xx-large;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
div.cX-LLM-examples {
|
|
431
|
+
position: relative;
|
|
432
|
+
overflow: scroll;
|
|
433
|
+
max-height: 1000px;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
div.cX-LLM-content {
|
|
437
|
+
top: 25px;
|
|
438
|
+
left: 25px;
|
|
439
|
+
position: absolute;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
div.cX-LLM-container {
|
|
443
|
+
border: 1px solid #d3d3d3;
|
|
444
|
+
position: relative;
|
|
445
|
+
border-radius: 4px;
|
|
446
|
+
background: white;
|
|
447
|
+
float: left;
|
|
448
|
+
margin: 5px;
|
|
449
|
+
max-width: 810px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
div.cX-LLM-title {
|
|
453
|
+
position: relative;
|
|
454
|
+
height: 40px;
|
|
455
|
+
line-height: 40px;
|
|
456
|
+
border-radius: 4px;
|
|
457
|
+
font-size: 22px;
|
|
458
|
+
overflow: hidden;
|
|
459
|
+
white-space: nowrap;
|
|
460
|
+
text-overflow: ellipsis;
|
|
461
|
+
text-align: center !important;
|
|
462
|
+
font-weight: bold;
|
|
463
|
+
border-bottom: 1px solid var(--cx-color-light-gray);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
div.cX-LLM-plot {
|
|
467
|
+
display: flex;
|
|
468
|
+
align-items: center;
|
|
469
|
+
justify-content: center;
|
|
470
|
+
margin: 8px;
|
|
471
|
+
}
|
|
472
|
+
|
|
411
473
|
/***************
|
|
412
474
|
* Bin Data *
|
|
413
475
|
***************/
|