@meta-1/design 0.0.165 → 0.0.166
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/package.json
CHANGED
|
@@ -166,8 +166,8 @@ export const Uploader = forwardRef<HTMLDivElement, UploaderProps>((props, forwar
|
|
|
166
166
|
<div className="flex h-8 w-8 items-center justify-center">
|
|
167
167
|
<FileIcon />
|
|
168
168
|
</div>
|
|
169
|
-
<div className="
|
|
170
|
-
<div className="mx-1
|
|
169
|
+
<div className="flex-1 overflow-hidden overflow-ellipsis whitespace-nowrap text-sm">{file.name}</div>
|
|
170
|
+
<div className="mx-1 w-0 flex-1 flex-shrink-0">
|
|
171
171
|
{file.status === "uploading" && <Progress className="w-full" value={file.progress} />}
|
|
172
172
|
{file.status === "error" && (
|
|
173
173
|
<div className="flex items-center justify-end">
|