![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-files-preview
Advanced tools
A file view component for React apps with images preview, image editing, slider, download option and more.
A file view component for react.
npm i react-files-preview
yarn add react-files-preview
import { ReactFilesPreview } from 'react-files-preview'
import 'react-files-preview/dist/style.css' /* import css file*/
function App() {
return (
<>
<ReactFilesPreview />
</>
)
}
export default App
If your project uses Tailwind CSS, you don’t need to import the CSS file directly. Instead, add the following path to the content array in your tailwind.config.js file:
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./node_modules/react-files-preview/dist/*.js', // Add this line
],
theme: {
extend: {},
},
plugins: [],
}
Name | Type | Default | Description |
---|---|---|---|
files | File[] | [] | Pass array of file objects for default files |
url | string | null | Set image by passing image URL |
downloadFile | boolean | true | Enables file download |
removeFile | boolean | true | Show file remove icon on file hover |
showFileSize | boolean | true | Show file size under files |
showSliderCount | boolean | true | Show slides count under file slider |
disabled | boolean | false | If true, prevents user to add files by disabling the component |
multiple | boolean | true | Accepts one or more files |
accept | string | Comma-separated lists of file types. See MIME Types | |
maxFileSize | number | Maximum allowed file size in bytes e.g. 1024 x 1024 x 5 == 5MB | |
maxFiles | number | Maximum files allowed to be added | |
width | string | basis-11/12 | Tailwind CSS flex-basis class https://tailwindcss.com/docs/flex-basis |
height | string | Tailwind CSS height class https://tailwindcss.com/docs/height | |
fileWidth | string | w-44 | Tailwind CSS width class https://tailwindcss.com/docs/width |
fileHeight | string | h-32 | Tailwind CSS height class https://tailwindcss.com/docs/height |
getFile | func | Returns all current files | |
onChange | func | Returns selected file(s) | |
onRemove | func | Returns the removed file | |
onError | func | Returns error message as string | |
onClick | func | Returns file on click |
FAQs
A file view component for React apps with images preview, image editing, slider, download option and more.
The npm package react-files-preview receives a total of 265 weekly downloads. As such, react-files-preview popularity was classified as not popular.
We found that react-files-preview demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.