@@ -1018,7 +1018,7 @@ export function Cropper(
10181018 return (
10191019 < div
10201020 ref = { containerRef }
1021- class = "relative w-full h-full select-none overscroll-contain focus:outline-none touch-none"
1021+ class = "relative w-full h-full select-none overscroll-contain focus:outline-hidden touch-none"
10221022 style = { {
10231023 cursor : cursorStyle ( ) ?? ( props . aspectRatio ? "default" : "crosshair" ) ,
10241024 } }
@@ -1031,11 +1031,11 @@ export function Cropper(
10311031 < Transition
10321032 appear
10331033 enterActiveClass = "transition-opacity duration-300 ease-in-out"
1034- enterClass = "opacity-0 blur-sm "
1034+ enterClass = "opacity-0 blur-xs "
10351035 enterToClass = "opacity-100 blur-none"
10361036 exitActiveClass = "transition-opacity duration-300 ease-in-out"
10371037 exitClass = "opacity-100 blur-none"
1038- exitToClass = "opacity-0 blur-sm "
1038+ exitToClass = "opacity-0 blur-xs "
10391039 >
10401040 < Show when = { props . showBounds && labelTransform ( ) } >
10411041 { ( transform ) => (
@@ -1110,7 +1110,7 @@ export function Cropper(
11101110 handle . isCorner ? (
11111111 < button
11121112 type = "button"
1113- class = "fixed z-50 flex h-[30px] w-[30px] focus:ring-0 outline-none "
1113+ class = "fixed z-50 flex h-[30px] w-[30px] focus:ring-0 outline-hidden "
11141114 tabIndex = { - 1 }
11151115 classList = { { "opacity-0" : mouseState . drag === "overlay" } }
11161116 style = { {
@@ -1136,7 +1136,7 @@ export function Cropper(
11361136 >
11371137 < svg
11381138 aria-hidden = "true"
1139- class = "absolute pointer-events-none drop-shadow-sm shadow-black"
1139+ class = "absolute pointer-events-none drop-shadow-xs shadow-black"
11401140 classList = { {
11411141 "size-1" : boundsTooSmall ( ) ,
11421142 "size-6" : ! boundsTooSmall ( ) ,
@@ -1172,7 +1172,7 @@ export function Cropper(
11721172 ) : (
11731173 < button
11741174 type = "button"
1175- class = "absolute focus:outline-none focus:ring-0 outline-none "
1175+ class = "absolute focus:outline-hidden focus:ring-0 outline-hidden "
11761176 tabIndex = { - 1 }
11771177 style = { {
11781178 visibility :
@@ -1239,9 +1239,9 @@ export function Cropper(
12391239 aria-live = "polite"
12401240 >
12411241 < div
1242- class = "h-[18px] w-11 rounded-full text-center text-xs text-gray-12 border border-white/70 dark:border-white/20 drop-shadow-md outline-1 outline outline-black/80"
1242+ class = "h-[18px] w-11 rounded-full text-center text-xs text-gray-12 border border-white/70 dark:border-white/20 drop-shadow-md outline-1 outline-solid outline-black/80"
12431243 classList = { {
1244- "backdrop-blur-sm bg-white/50 dark:bg-black/50 dark:backdrop-brightness-90 backdrop-brightness-200" :
1244+ "backdrop-blur-xs bg-white/50 dark:bg-black/50 dark:backdrop-brightness-90 backdrop-brightness-200" :
12451245 props . useBackdropFilter ,
12461246 "bg-gray-3 opacity-80" : ! props . useBackdropFilter ,
12471247 } }
0 commit comments