Socket
Socket
Sign inDemoInstall

@angular-material-extensions/input-counter

Package Overview
Dependencies
11
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @angular-material-extensions/input-counter

Modern number input component built with angular and material design


Version published
Weekly downloads
8
increased by300%
Maintainers
1
Install size
119 kB
Created
Weekly downloads
 

Changelog

Source

1.0.1 (2022-07-06)

Bug Fixes

  • demo: minor (af1be58)

  • demo: minor (41872f6)

  • project: bug in schematics (b2d33b6)

  • project: minor (4790e92)

  • project: minor (8c9c617)

  • project: minor (c65e92e)

  • project: minor (974bed2)

  • project: removed schematics (1b21217)

  • project: removed schematics (00e03b6)

  • project: upgraded angular core and cli to v10 (36af5be)

  • project: upgraded angular material to v10 (7b907b3)

  • project: upgraded angular material to v11 (42a5f12)

  • project: upgraded angular material to v11 (e0ae720)

  • project: upgraded angular material to v11 (e40fd8d)

  • project: upgraded angular material to v11 (93947d2)

  • project: upgraded angular material to v11 (61e3115)

  • project: upgraded angular material to v11 (4e6f26e)

  • project: upgraded angular material to v12 (2e2a988)

  • project: upgraded angular material to v12 (1751140)

  • project: upgraded angular material to v12 (1ec83d5)

  • project: upgraded angular material to v12 (4f0f63e)

  • project: upgraded angular material to v12 (217a76a)

  • project: upgraded angular material to v13 (875657f)

  • project: upgraded angular material to v13 (d91c8e2)

  • project: upgraded angular material to v14 (cea480d)

  • project: upgraded angular to v13 (1fa116b)

  • project: upgraded angular to v13 (879c1b0)

  • project: upgraded angular to v14 (1a25b81)

  • project: upgraded angular to v14 (56eba91)

  • project: upgraded angular universal to v10 (838f139)

  • project: upgraded angular universal to v10 (a529f6e)

  • project: upgraded angular universal to v10 (60ad412)

  • project: upgraded angular universal to v11 (5f83ab0)

  • project: upgraded angular universal to v11 (b0079ee)

  • project: upgraded angular universal to v11 (468812e)

  • project: upgraded angular universal to v12 (698b9a4)

  • project: upgraded angular universal to v13 (5d6dbef)

  • project: upgraded angular universal to v13 (28383bb)

  • docs(project): Updating CHANGELOG.md for v0.1.1 (5df53df)

Readme

Source

angular-material-extensions's logo

@angular-material-extensions/input-counter - Autocomplete input component for google-maps built with angular material design

npm version npm demo Join the chat at https://gitter.im/angular-material-extensions/Lobby Coverage Status Build Status CircleCI branch Greenkeeper Badge license Awesome

@angular-material-extensions/input-counter

Built by and for developers :heart:

Do you have any question or suggestion ? Please do not hesitate to contact us! Alternatively, provide a PR | open an appropriate issue here

If did you like this project, support angular-material-extensions by starring :star: and sharing it :loudspeaker:

Table of Contents

Demo

View all the directives and components in action at https://angular-material-extensions.github.io/input-counter

Dependencies

Installation

1. Install via npm.

Now install @angular-material-extensions/input-counter via:

npm install --save @angular-material-extensions/input-counter

Requirements (peer dependencies):

for the ui input component, please consider to install the following packages

npm i @angular/cdk @angular/material @angular/animations @angular/forms 

Additional requirements Theme (Material Design)


SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for @angular-material-extensions/input-counter:

{
  '@angular-material-extensions/input-counter';: 'node_modules/@angular-material-extensions/input-counter/bundles/input-counter.umd.js',
}

Once installed you need to import the main module:

import { MatInputCounterModule } from '@angular-material-extensions/input-counter';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice MatInputCounterModule.forRoot()):

import { MatInputCounterModule } from '@angular-material-extensions/input-counter';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [
     MatInputCounterModule, ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import MatInputCounterModule:

import { MatInputCounterModule } from '@angular-material-extensions/input-counter';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [
     MatInputCounterModule, ...], 
})
export class OtherModule {
}

Usage

mat-input-counter

 <mat-input-counter [min]="1"
                    [max]="10"
                    [step]="0.5"
                    [label]="Your label"
                    placeholder="your place holder">
        </mat-input-counter>
With Reactive forms
      <form [formGroup]="formGroup">
        <mat-input-counter formControlName="inputCounter"
                           [min]="+options.min"
                           [max]="+options.max"
                           [step]="+options.step"
                           [label]="options.label"
                           [placeholder]="options.placeholder">
        </mat-input-counter>
      </form>

formGroup: FormGroup;

 this.formGroup = new FormGroup({
      inputCounter: new FormControl()
    });

@angular-material-extensions/input-counter

@angular-material-extensions/input-counter

API - for more info please visit the official documentation Maps JavaScript API

matGoogleMapsAutocomplete

optionbindtypedefaultdescription
valueInput()number ;-the value of the component (number)
minInput()number ;-The minimum value that the counter can have.
maxInput()number;-The maximum value that the counter can have.
stepInput()number-The values at which the thumb will snap.
labelInput()string-Label of the form field
placeholderInput()string-Placeholder of the form field
changeOutput()number-event when the input form value changed

Documentation

Please checkout the full documentation here

Development

  1. clone this repo
  2. Install the dependencies by running npm i
  3. go to lib directory under projects/angular-material-extensions/input-counter
  4. build the library npm run build

Other Angular Libraries

Support

Built by and for developers :heart: we will help you :punch:

License

Copyright (c) 2020 Anthony Nahas. Licensed under the MIT License (MIT)

Keywords

FAQs

Last updated on 06 Jul 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc