anentrypoint-design 0.0.349 → 0.0.351
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/247420.css +17 -0
- package/dist/247420.js +14 -14
- package/package.json +1 -1
- package/src/components/agent-chat.js +1 -1
- package/src/components/chat.js +2 -2
- package/src/components/editor-primitives.js +15 -3
package/dist/247420.css
CHANGED
|
@@ -9048,6 +9048,23 @@
|
|
|
9048
9048
|
.ds-247420 .ds-ep-toast.kind-warn { border-left-color: var(--warn); }
|
|
9049
9049
|
.ds-247420 .ds-ep-toast.kind-error { border-left-color: var(--danger); }
|
|
9050
9050
|
.ds-247420 .ds-ep-toast.leaving { opacity: 0; transform: translateY(-6px); }
|
|
9051
|
+
.ds-247420 .ds-ep-toast.has-action {
|
|
9052
|
+
display: flex; align-items: center; gap: var(--space-2);
|
|
9053
|
+
}
|
|
9054
|
+
.ds-247420 .ds-ep-toast-msg { flex: 1; }
|
|
9055
|
+
.ds-247420 .ds-ep-toast-action {
|
|
9056
|
+
flex-shrink: 0;
|
|
9057
|
+
background: transparent;
|
|
9058
|
+
color: var(--accent-ink, var(--accent));
|
|
9059
|
+
border: none;
|
|
9060
|
+
font: inherit;
|
|
9061
|
+
font-weight: 600;
|
|
9062
|
+
padding: var(--space-1) var(--space-1-75);
|
|
9063
|
+
border-radius: var(--r-1, 6px);
|
|
9064
|
+
cursor: pointer;
|
|
9065
|
+
}
|
|
9066
|
+
.ds-247420 .ds-ep-toast-action:hover { background: var(--panel-2, var(--panel-bg)); }
|
|
9067
|
+
.ds-247420 .ds-ep-toast-action:focus-visible { outline: 2px solid var(--accent-ink, var(--accent)); outline-offset: 1px; }
|
|
9051
9068
|
@media (max-width: 480px) {
|
|
9052
9069
|
.ds-247420 .ds-ep-toast-host { left: 16px; right: 16px; align-items: center; }
|
|
9053
9070
|
.ds-247420 .ds-ep-toast { width: 100%; max-width: 100%; }
|