@webless/agent 0.14.2 → 0.14.3
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/{chunk-KUNT2X4I.js → chunk-RUZGX75D.js} +5 -3
- package/dist/{chunk-KUNT2X4I.js.map → chunk-RUZGX75D.js.map} +1 -1
- package/dist/embed.cjs +14 -3
- package/dist/embed.cjs.map +1 -1
- package/dist/embed.css +36 -0
- package/dist/embed.css.map +1 -1
- package/dist/embed.d.cts +2 -2
- package/dist/embed.d.ts +2 -2
- package/dist/embed.js +10 -2
- package/dist/embed.js.map +1 -1
- package/dist/{panel-controller-CDWodIJl.d.cts → panel-controller-csugUSgZ.d.cts} +5 -1
- package/dist/{panel-controller-CDWodIJl.d.ts → panel-controller-csugUSgZ.d.ts} +5 -1
- package/dist/react.cjs +4 -2
- package/dist/react.cjs.map +1 -1
- package/dist/react.css +36 -0
- package/dist/react.css.map +1 -1
- package/dist/react.d.cts +4 -3
- package/dist/react.d.ts +4 -3
- package/dist/react.js +1 -1
- package/package.json +1 -1
package/dist/embed.css
CHANGED
|
@@ -166,6 +166,42 @@
|
|
|
166
166
|
pointer-events: auto;
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
|
+
.webless-agent-root__shell--popup:not(.webless-agent-root__shell--expanded) {
|
|
170
|
+
display: block;
|
|
171
|
+
inset: auto;
|
|
172
|
+
}
|
|
173
|
+
.webless-agent-root__shell--popup:not(.webless-agent-root__shell--collapsed):not(.webless-agent-root__shell--expanded) .webless-agent-root__rail-slot {
|
|
174
|
+
position: fixed;
|
|
175
|
+
top: auto;
|
|
176
|
+
right: 16px;
|
|
177
|
+
bottom: 16px;
|
|
178
|
+
left: auto;
|
|
179
|
+
width: var(--as-rail-max-width);
|
|
180
|
+
height: min(80vh, calc(100dvh - 32px));
|
|
181
|
+
display: flex;
|
|
182
|
+
flex-direction: column;
|
|
183
|
+
min-height: 0;
|
|
184
|
+
overflow: hidden;
|
|
185
|
+
transform: none;
|
|
186
|
+
opacity: 1;
|
|
187
|
+
pointer-events: auto;
|
|
188
|
+
}
|
|
189
|
+
.webless-agent-root__shell--popup.webless-agent-root__shell--collapsed .webless-agent-root__rail-slot {
|
|
190
|
+
position: fixed;
|
|
191
|
+
top: auto;
|
|
192
|
+
right: 16px;
|
|
193
|
+
bottom: 16px;
|
|
194
|
+
left: auto;
|
|
195
|
+
transform: translateY(16px);
|
|
196
|
+
}
|
|
197
|
+
.webless-agent-root__shell--popup:not(.webless-agent-root__shell--expanded) .webless-agent-root__rail-slot .agent-rail:not(.agent-rail--expanded):not(.agent-rail--mobile-fullscreen) {
|
|
198
|
+
width: 100%;
|
|
199
|
+
height: 100%;
|
|
200
|
+
min-height: 0;
|
|
201
|
+
max-height: 100%;
|
|
202
|
+
border-radius: 16px;
|
|
203
|
+
border-left: 1px solid var(--as-hairline);
|
|
204
|
+
}
|
|
169
205
|
|
|
170
206
|
/* src/react/styles/page-shift.css */
|
|
171
207
|
html.webless-agent-page-shift {
|