@pluno/product-agent-web 0.1.88 → 0.1.91
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 +3 -0
- package/dist/product-agent-sdk.js +567 -517
- package/dist/product-agent-widget.js +1 -27
- package/package.json +1 -1
|
@@ -3637,22 +3637,6 @@ function co(e, t) {
|
|
|
3637
3637
|
padding: 0;
|
|
3638
3638
|
overflow: visible;
|
|
3639
3639
|
pointer-events: auto;
|
|
3640
|
-
isolation: isolate;
|
|
3641
|
-
}
|
|
3642
|
-
.pluno-pa-widget--minimized .pluno-pa-widget__launcher::before {
|
|
3643
|
-
content: "";
|
|
3644
|
-
position: absolute;
|
|
3645
|
-
inset: 0;
|
|
3646
|
-
z-index: -1;
|
|
3647
|
-
border: 1px solid rgba(40, 36, 20, 0.45);
|
|
3648
|
-
border-radius: 999px;
|
|
3649
|
-
background-color: #fdfaf1;
|
|
3650
|
-
background-image:
|
|
3651
|
-
linear-gradient(rgba(96, 138, 188, 0.22) 1px, transparent 1px),
|
|
3652
|
-
linear-gradient(90deg, rgba(96, 138, 188, 0.22) 1px, transparent 1px);
|
|
3653
|
-
background-size: 22px 22px;
|
|
3654
|
-
filter: url(#pluno-pa-scribble-wobble-3);
|
|
3655
|
-
pointer-events: none;
|
|
3656
3640
|
}
|
|
3657
3641
|
.pluno-pa-widget--minimized .pluno-pa-widget__launcher-input,
|
|
3658
3642
|
.pluno-pa-widget--minimized .pluno-pa-widget__launcher-drag-handle,
|
|
@@ -5578,17 +5562,7 @@ function co(e, t) {
|
|
|
5578
5562
|
min-height: 0;
|
|
5579
5563
|
padding: 0;
|
|
5580
5564
|
}
|
|
5581
|
-
.pluno-pa-widget--scribble.pluno-pa-widget--minimized .pluno-pa-widget__launcher::before
|
|
5582
|
-
inset: 0;
|
|
5583
|
-
border: 1px solid var(--pluno-pa-divider);
|
|
5584
|
-
border-radius: 999px;
|
|
5585
|
-
background-color: var(--pluno-pa-bg);
|
|
5586
|
-
background-image:
|
|
5587
|
-
linear-gradient(var(--pluno-pa-scribble-grid-line) 1px, transparent 1px),
|
|
5588
|
-
linear-gradient(90deg, var(--pluno-pa-scribble-grid-line) 1px, transparent 1px);
|
|
5589
|
-
background-size: 22px 22px;
|
|
5590
|
-
filter: url(#pluno-pa-scribble-wobble-3);
|
|
5591
|
-
}
|
|
5565
|
+
.pluno-pa-widget--scribble.pluno-pa-widget--minimized .pluno-pa-widget__launcher::before,
|
|
5592
5566
|
.pluno-pa-widget--scribble.pluno-pa-widget--minimized .pluno-pa-widget__launcher::after {
|
|
5593
5567
|
content: none;
|
|
5594
5568
|
}
|
package/package.json
CHANGED