Socket
Socket
Sign inDemoInstall

@files-ui/react

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@files-ui/react - npm Package Versions

2

1.2.4

Diff

jin_ssj3
published 1.2.3 •

jin_ssj3
published 1.2.2 •

jin_ssj3
published 1.2.1 •

Changelog

Source

2.0.0 dropzone-ui (2021-09-21)

Features

  • Improve Readme.md
  • Add localization for Spanish and English
  • Add Readme_es.md file

<a name="1.2.10"></a>

jin_ssj3
published 1.2.0 •

Changelog

Source

1.2.0 (2024-01-21)

🧪 🚀 Allow uploading files with different URLs

  • Enhanced components to perform the upload operation with a different urls for each ExtFile.

    • ExtFile: Added a new property in ExtFile type: uploadUrl.
    • <Dropzone/> & <FileInputButton/>: There is a new sub-prop uploadConfig.customUrl() that is a fucntion that given an extFile object, obtains a custom url.
  • The order of priority is as follows:

      1. ExtFile.uploadUrl
      1. DropzoneProps.UploadConfig.customUrl
      1. DropzoneProps.UploadConfig.url
  • The setup can be as follows:

    ...
    return(
      <React.Fragment>
        <Dropzone
            uploadConfig={
              customUrl: (extFile)=> "https://urlfromserver/" + extFile.name
            }
        />
        <FileInputButton
            uploadConfig={
              customUrl: (extFile)=> "https://urlfromserver/" + extFile.name
            }
        />
        <Dropzone
          onChange={updateFiles}
          value={files}
        >
          {files.map((file) => (
              <FileMosaic key={file.id} {...file} uploadUrl={"https://urlfromserver/" + extFile.id}/>
            ))}
        </Dropzone>

      
      </React.Fragment>
    )
jin_ssj3
published 1.1.0 •

Changelog

Source

1.1.0 (2023-12-17)

🧪 New features and 🐛 :hammer: Improvements

jin_ssj3
published 1.0.8 •

jin_ssj3
published 1.0.5 •

jin_ssj3
published 1.0.4 •

jin_ssj3
published 1.0.3 •

2
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc