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

@martyganz/mat-file-upload

v12.0.0-beta1

Published

A simple & configurable Angular Material file upload component.

Downloads

582

Readme

Angular Material File Upload npm Build Status

This tool is a simple & configurable file upload component for use with Angular Material.

Live Demo: https://bjsawyer.github.io/mat-file-upload/

Prerequisites

In order to use mat-file-upload in your app, you must have the following dependencies installed:

Usage

  1. Install package from npm (npm i mat-file-upload).
  2. Add MatFileUploadModule to your module's imports, like so:
@NgModule({
  declarations: [AppComponent],
  imports: [
    ...
    MatFileUploadModule,
    ...
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}
  1. Add the element to your template, like so:

Basic:

<mat-file-upload></mat-file-upload>

Advanced:

<mat-file-upload
  [labelText]="'Select a file (or multiple) to upload:'"
  [selectButtonText]="'Choose File(s)'"
  [selectFilesButtonType]="button"
  [uploadButtonText]="'Submit'"
  [uploadButtonType]="submit"
  [allowMultipleFiles]="true"
  [showUploadButton]="true"
  [customSvgIcon]="'close_custom'"
  [acceptedTypes]="'.png, .jpg, .jpeg'"
  (uploadClicked)="onUploadClicked($event)"
  (selectedFilesChanged)="onSelectedFilesChanged($event)"
>
</mat-file-upload>

Options

@Input() Properties

| Directive | Type | Description | Default Value | | ------------------------- | --------- | -------------------------------------------------------------------------------------------------------------- | ---------------- | | [labelText] | string | The text to be displayed for the file upload label | "Select file(s)" | | [selectButtonText] | string | The text to be displayed for the button that allows the user to select file(s) | "Select file(s)" | | [selectFilesButtonType] | string | The HTML "type" attribute of the "Select Files" button | "button" | | [uploadButtonText] | string | The text to be displayed for the button that allows the user to upload file(s) | "Upload File(s)" | | [uploadButtonType] | string | The HTML "type" attribute of the "Upload" button | "button" | | [allowMultipleFiles] | boolean | True/false representing whether the user can select multiple files at a time | false | | [showUploadButton] | boolean | True/false representing whether the "Upload" button is shown in the DOM | true | | [customSvgIcon] | string | The name of the custom svgIcon to be used as the "close" button; otherwise defaults to Material's "close" icon | null | | [acceptedTypes] | string | The list of file types that are allowed to be uploaded | "*.*" |

@Output() Properties

| Directive | Type | Description | | ------------------------ | ------------------------ | -------------------------------------------------------------------------------------------- | | (uploadClicked) | EventEmitter<FileList> | Event handler that emits the list of selected files whenever the "Upload" button is clicked | | (selectedFilesChanged) | EventEmitter<FileList> | Event handler that emits the list of selected files whenever the user changes file selection |