@@ -454,6 +454,9 @@ export const styles = String.raw`
454454 .max-h-\[200px\] {
455455 max-height: 200px;
456456 }
457+ .max-h-\[360px\] {
458+ max-height: 360px;
459+ }
457460 .max-h-\[calc\(100dvh-80px\)\] {
458461 max-height: calc(100dvh - 80px);
459462 }
@@ -559,6 +562,9 @@ export const styles = String.raw`
559562 .min-w-6 {
560563 min-width: calc(var(--spacing) * 6);
561564 }
565+ .min-w-\[var\(--radix-select-trigger-width\)\] {
566+ min-width: var(--radix-select-trigger-width);
567+ }
562568 .min-w-full {
563569 min-width: 100%;
564570 }
@@ -578,6 +584,9 @@ export const styles = String.raw`
578584 .transform {
579585 transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
580586 }
587+ .animate-skeleton {
588+ animation: skeleton 1s ease infinite;
589+ }
581590 .animate-spin {
582591 animation: var(--animate-spin);
583592 }
@@ -777,6 +786,9 @@ export const styles = String.raw`
777786 --tw-border-style: solid;
778787 border-style: solid;
779788 }
789+ .border-border-error {
790+ border-color: var(--seq-color-border-error);
791+ }
780792 .border-border-focus {
781793 border-color: var(--seq-color-border-focus);
782794 }
@@ -1222,6 +1234,9 @@ export const styles = String.raw`
12221234 --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
12231235 box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
12241236 }
1237+ .ring-border-error {
1238+ --tw-ring-color: var(--seq-color-border-error);
1239+ }
12251240 .ring-border-focus {
12261241 --tw-ring-color: var(--seq-color-border-focus);
12271242 }
@@ -1610,6 +1625,11 @@ export const styles = String.raw`
16101625 box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
16111626 }
16121627 }
1628+ .focus-within\:ring-border-error {
1629+ &:focus-within {
1630+ --tw-ring-color: var(--seq-color-border-error);
1631+ }
1632+ }
16131633 .focus-within\:ring-border-focus {
16141634 &:focus-within {
16151635 --tw-ring-color: var(--seq-color-border-focus);
@@ -1665,6 +1685,11 @@ export const styles = String.raw`
16651685 box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
16661686 }
16671687 }
1688+ .focus\:ring-border-error {
1689+ &:focus {
1690+ --tw-ring-color: var(--seq-color-border-error);
1691+ }
1692+ }
16681693 .focus\:ring-border-focus {
16691694 &:focus {
16701695 --tw-ring-color: var(--seq-color-border-focus);
@@ -1792,6 +1817,11 @@ export const styles = String.raw`
17921817 transition-timing-function: var(--ease-out);
17931818 }
17941819 }
1820+ .data-\[swipe\=end\]\:animate-swipe-out {
1821+ &[data-swipe="end"] {
1822+ animation: swipe-out 200ms ease-out;
1823+ }
1824+ }
17951825 .data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\] {
17961826 &[data-swipe="move"] {
17971827 --tw-translate-x: var(--radix-toast-swipe-move-x);
@@ -1898,6 +1928,7 @@ export const styles = String.raw`
18981928 --seq-color-background-raised: rgba(54, 54, 54, 0.7);
18991929 --seq-color-border-normal: rgba(255, 255, 255, 0.25);
19001930 --seq-color-border-focus: rgba(255, 255, 255, 0.5);
1931+ --seq-color-border-error: rgba(255, 69, 0, 1);
19011932 --seq-color-button-glass: rgba(255, 255, 255, 0.15);
19021933 --seq-color-button-emphasis: rgba(0, 0, 0, 0.5);
19031934 --seq-color-button-inverse: rgba(255, 255, 255, 0.8);
@@ -1945,6 +1976,7 @@ export const styles = String.raw`
19451976 --seq-color-background-raised: rgba(192, 192, 192, 0.7);
19461977 --seq-color-border-normal: rgba(0, 0, 0, 0.25);
19471978 --seq-color-border-focus: rgba(0, 0, 0, 0.5);
1979+ --seq-color-border-error: rgba(255, 69, 0, 1);
19481980 --seq-color-button-glass: rgba(0, 0, 0, 0.15);
19491981 --seq-color-button-emphasis: rgba(255, 255, 255, 0.5);
19501982 --seq-color-button-inverse: rgba(0, 0, 0, 0.8);
@@ -2243,6 +2275,25 @@ export const styles = String.raw`
22432275 transform: rotate(360deg);
22442276 }
22452277}
2278+ @keyframes skeleton {
2279+ 0% {
2280+ background-position: 0% 50%;
2281+ }
2282+ 50% {
2283+ background-position: 100% 50%;
2284+ }
2285+ 100% {
2286+ background-position: 0% 50%;
2287+ }
2288+ }
2289+ @keyframes swipe-out {
2290+ from {
2291+ transform: translateX(var(--radix-toast-swipe-end-x));
2292+ }
2293+ to {
2294+ transform: translateX(100%);
2295+ }
2296+ }
22462297@layer properties {
22472298 @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
22482299 *, ::before, ::after, ::backdrop {
0 commit comments