Coder Social home page Coder Social logo

raphaelm-sudo / ngx-simple-spinner Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 1.52 MB

Simple and lightweight, yet customizable spinner/number input module for Angular

License: MIT License

TypeScript 69.39% JavaScript 3.82% HTML 9.54% SCSS 17.25%
angular spinner number-input number input ngx

ngx-simple-spinner's Introduction

Ngx Simple Spinner

Simple and lightweight, yet customizable spinner/number input module for Angular.

Demo
Netlify Status

This is a number input component for Angular, fully supporting template driven forms and form validation. It is completely customizable using SCSS/CSS. Additionally it features: displaying most common fractions (1/2, 1/3, 1/4, ...), setting decimal places, i18n and RTL (right-to-left). It replicates Google Chrome's behaviour regarding its base functionality.

Installation

Ngx Simple Spinner requires Angular 9 or above.

npm install @nutrify/ngx-simple-spinner --save

You might also need to install @angular/cdk:

npm install @angular/cdk --save

For styling import @nutrify/ngx-simple-spinner/scss/styles.scss or @nutrify/ngx-simple-spinner/css/styles.css

Usage

app.module.ts:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { SimpleSpinnerModule } from '@nutrify/ngx-simple-spinner';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    SimpleSpinnerModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

component.ts:

// ...

export class Component {
  value = 12.5;
}

component.html:

<!-- ... -->

<simple-spinner [(ngModel)]="value" min="1" max="100" smallStep="0.25" maxDecimalPlaces="2" fractions="true"></simple-spinner>

<!-- ... -->

Check out the source code for an example.

Spinner

Inputs
Property Default Description
placeholder Optional placeholder string, which gets displayed when value == null
value Value of the number input
min Number.MIN_SAFE_INTEGER Minimum value (can be a float value)
max Number.MAX_SAFE_INTEGER Maximum value (can be a float value)
bigStep 1 Number by which the current value should be in-/decremented using the nav/keyboard (can be a float value)
smallStep 0.25 Number by which the current value should be in-/decremented if 'bigStep' can't be applied (can be a float value)
maxDecimalPlaces 0 Maximum amount of decimal places that should be allowed to enter (exceeding decimal places get trimmed)
fractions false Boolean describing whether or not fractions should be rendered
i18nNumbers true E.g. converts 0-9 to arabic digits, if arabic is the browser's default language
hoverBorder false Boolean describing whether or not the border should only render on hover
hoverNav true Boolean describing whether or not the navigation should only render on hover
dir Optional direction property describing the content's orientation. Can be: 'ltr' | 'rtl' | 'auto'
Directives
Property Description
disabled Sets the disabled attribute
required Sets the required attribute

Styling

You can use SCSS or CSS for styling.

Just import the stylesheet and apply changes to it.

The SCSS stylesheet is recommended since it exports more variables.

If you are not using SCSS for your Angular projects already, you really should.

The migration is very easy.

CSS / SASS

@import '~@nutrify/ngx-simple-spinner/scss/styles';

Angular

angular-cli.json:

"styles": [
  "styles.css",

  "../node_modules/@nutrify/ngx-simple-spinner/css/styles.css"
]

ngx-simple-spinner's People

Contributors

raphaelm-sudo avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.