@pluno/product-agent-web 0.1.60 → 0.1.62
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.d.ts +7 -0
- package/dist/product-agent-sdk.js +402 -359
- package/dist/product-agent-widget.js +6 -0
- package/package.json +1 -1
|
@@ -3590,6 +3590,7 @@ function Nn(e, t) {
|
|
|
3590
3590
|
background: transparent;
|
|
3591
3591
|
}
|
|
3592
3592
|
.pluno-pa-widget__message {
|
|
3593
|
+
flex: 0 0 auto;
|
|
3593
3594
|
position: relative;
|
|
3594
3595
|
min-width: 0;
|
|
3595
3596
|
color: var(--pluno-pa-text);
|
|
@@ -3806,6 +3807,7 @@ function Nn(e, t) {
|
|
|
3806
3807
|
border-bottom-color: var(--pluno-pa-accent);
|
|
3807
3808
|
}
|
|
3808
3809
|
.pluno-pa-widget__tool-group {
|
|
3810
|
+
flex: 0 0 auto;
|
|
3809
3811
|
display: flex;
|
|
3810
3812
|
align-items: flex-start;
|
|
3811
3813
|
gap: 8px;
|
|
@@ -3889,6 +3891,7 @@ function Nn(e, t) {
|
|
|
3889
3891
|
to { transform: rotate(360deg); }
|
|
3890
3892
|
}
|
|
3891
3893
|
.pluno-pa-widget__share-prompt {
|
|
3894
|
+
flex: 0 0 auto;
|
|
3892
3895
|
align-self: stretch;
|
|
3893
3896
|
display: block;
|
|
3894
3897
|
color: var(--pluno-pa-muted);
|
|
@@ -4536,6 +4539,7 @@ function Nn(e, t) {
|
|
|
4536
4539
|
padding: 24px 0;
|
|
4537
4540
|
}
|
|
4538
4541
|
.pluno-pa-widget__empty-state {
|
|
4542
|
+
flex: 0 0 auto;
|
|
4539
4543
|
margin: auto;
|
|
4540
4544
|
display: grid;
|
|
4541
4545
|
gap: 12px;
|
|
@@ -4673,6 +4677,7 @@ function Nn(e, t) {
|
|
|
4673
4677
|
background: #18181b;
|
|
4674
4678
|
}
|
|
4675
4679
|
.pluno-pa-widget__status {
|
|
4680
|
+
flex: 0 0 auto;
|
|
4676
4681
|
display: inline-flex;
|
|
4677
4682
|
align-items: center;
|
|
4678
4683
|
gap: 8px;
|
|
@@ -4696,6 +4701,7 @@ function Nn(e, t) {
|
|
|
4696
4701
|
50% { opacity: 1; transform: scale(1); }
|
|
4697
4702
|
}
|
|
4698
4703
|
.pluno-pa-widget__error {
|
|
4704
|
+
flex: 0 0 auto;
|
|
4699
4705
|
margin: 0 14px 8px;
|
|
4700
4706
|
padding: 6px 10px;
|
|
4701
4707
|
border-radius: 8px;
|
package/package.json
CHANGED