npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mcsoft/selector-archivo

v1.0.0

Published

Componente de React que permite seleccionar uno o varios archivos.

Downloads

6

Readme

Selector de Archivo

Componente de React que permite seleccionar uno o varios archivos.

Software Type Language Software License Version Downloads

Instalación

npm install --save @mcsoft/selector-archivo

Uso

import McSelectorArchivo from '@mcsoft/selector-archivo';

class Ejemplo extends Component {
  render () {
    return (
      <McSelectorArchivo
        eventoArchivosSeleccionados={(archivos)=>this.eventoArchivosSeleccionados(archivos)}
      />
    )
  }
  
  eventoArchivosSeleccionados(archivos) {
  	console.log('Archivos seleccionados: ', archivos);
  }
}

Props (Obligatorios)

| Propiedad | Tipo | Descripción | |-----------------------------|----------|--------------------------------------------------------| | eventoArchivosSeleccionados | Function | Evento que se ejecuta cuando se selecciona un archivo. eventoArchivosSeleccionados(archivos: Array<objeto>) - archivos: Array<objeto> Arreglo de objetos con la información de los archivos seleccionados. |

Props (Opcionales)

| Propiedad | Tipo | Predeterminado | Descripción | |---------------------------|-----------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| | deshabilitado | boolean | false | Deshabilita el selector de archivos. | | deshabilitarArrastrar | boolean | false | Deshabilita la opcion arrastrar y soltar archivos sobre la zona de arrastre. | | deshabilitarClic | boolean | false | Deshabilita la opcion de abrir el navegador de archivos al hacer clic sobre la zona de arrastre. | | deshabilitarTeclado | boolean | false | Deshabilita la opcion de abrir el navegador de archivos al presionar space|enter mientras la zona de arrastre esta seleccionada. | | etiqueta | string | | Etiqueta que se mostrará sobre el selector de archivos. | | mostrarMiniaturas | boolean | false | Indica si se mostrarán las miniaturas de los archivos seleccionados [Solo para archivos de imagen]. | | tamanoMaximo | number | | Tamaño máximo en bytes permitido para el archivo seleccionado. | | tamanoMinimo | number | | Tamaño mínimo en bytes permitido para el archivo seleccionado. | | texto | object | | Objeto con los textos personalizados del componente. | | texto.listaArchivosTitulo | string | 'Archivos seleccionados' | Título de la lista de archivos seleccionados. | | texto.listaArchivosVacia | string | 'No se ha seleccionado ningún archivo.' | Mensaje que se mostrará en la lista de archivos mientras no se haya seleccionado ningún archivo. | | texto.mensaje | string | 'Arrastra y suelta los archivos aqui, o has clic para seleccionar los archivos.' | Mensaje que se mostrará en la zona de arrastre del selector de archivos. | | tiposArchivosAcceptados | Array<string> | | Arreglo con los tipos de archivo (MIME Types) permitidos. | | variosArchivos | boolean | false | Indica si se permitirá seleccionar varios archivos a la vez. |