Skip to content

Commit 80b24bd

Browse files
committed
chore(emcn): drop CountdownRing barrel export + dead toast keyframes
Completes removing what the framer-motion toast redesign orphaned: the CountdownRing re-export and the zero-reference notification-/toast-* keyframes.
1 parent 2531d2c commit 80b24bd

2 files changed

Lines changed: 0 additions & 54 deletions

File tree

apps/sim/app/_styles/globals.css

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -844,59 +844,6 @@ input[type="search"]::-ms-clear {
844844
}
845845
}
846846

847-
@keyframes notification-enter {
848-
from {
849-
opacity: 0;
850-
transform: translateX(calc(var(--stack-offset, 0px) - 8px)) scale(0.97);
851-
}
852-
to {
853-
opacity: 1;
854-
transform: translateX(var(--stack-offset, 0px)) scale(1);
855-
}
856-
}
857-
858-
@keyframes notification-countdown {
859-
from {
860-
stroke-dashoffset: 0;
861-
}
862-
to {
863-
stroke-dashoffset: 34.56;
864-
}
865-
}
866-
867-
@keyframes notification-exit {
868-
from {
869-
opacity: 1;
870-
transform: translateX(var(--stack-offset, 0px)) scale(1);
871-
}
872-
to {
873-
opacity: 0;
874-
transform: translateX(calc(var(--stack-offset, 0px) + 8px)) scale(0.97);
875-
}
876-
}
877-
878-
@keyframes toast-enter {
879-
from {
880-
opacity: 0;
881-
transform: translateX(var(--stack-offset, 0px)) translateY(8px) scale(0.97);
882-
}
883-
to {
884-
opacity: 1;
885-
transform: translateX(var(--stack-offset, 0px)) translateY(0) scale(1);
886-
}
887-
}
888-
889-
@keyframes toast-exit {
890-
from {
891-
opacity: 1;
892-
transform: translateX(var(--stack-offset, 0px)) translateY(0) scale(1);
893-
}
894-
to {
895-
opacity: 0;
896-
transform: translateX(var(--stack-offset, 0px)) translateY(8px) scale(0.97);
897-
}
898-
}
899-
900847
/* WandPromptBar status indicator */
901848
@keyframes smoke-pulse {
902849
0%,

apps/sim/components/emcn/components/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ export {
169169
} from './tag-input/tag-input'
170170
export { Textarea } from './textarea/textarea'
171171
export { TimePicker, timePickerVariants } from './time-picker/time-picker'
172-
export { CountdownRing } from './toast/countdown-ring'
173172
export { ToastProvider, toast, useToast } from './toast/toast'
174173
export {
175174
clamp,

0 commit comments

Comments
 (0)