All Projects → JulioWar → jw-bootstrap-switch-ng2

JulioWar / jw-bootstrap-switch-ng2

Licence: MIT license
Bootstrap Switch for Angular 2+

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to jw-bootstrap-switch-ng2

Bootstrap Switch
Turn checkboxes and radio buttons in toggle switches.
Stars: ✭ 5,132 (+11304.44%)
Mutual labels:  toggle-switches, switch, bootstrap-switch
ng-toggle
Bootstrap-styled Angular Toggle Component
Stars: ✭ 14 (-68.89%)
Mutual labels:  angular2, switch
tcome-frontend
NodeJS&Angular4 BLOG
Stars: ✭ 49 (+8.89%)
Mutual labels:  angular2
angular-http-cache
Speed up your remote requests by automatically caching them on client and add support for offline navigation.
Stars: ✭ 25 (-44.44%)
Mutual labels:  angular2
angular-for-beginners-starter
A beginner friendly playground for Getting Started with Angular, by the Angular University
Stars: ✭ 52 (+15.56%)
Mutual labels:  angular2
angular2-select
No description or website provided.
Stars: ✭ 12 (-73.33%)
Mutual labels:  angular2
SHSliderSwitch
SHSliderSwitch is a simple lightweight library to implement an animated slider switch.
Stars: ✭ 18 (-60%)
Mutual labels:  switch
sys-clk-Overlay
Editor for your sys-clk configuration using ovl-loader!
Stars: ✭ 53 (+17.78%)
Mutual labels:  switch
ng2-odometer
Odometer for Angular2
Stars: ✭ 22 (-51.11%)
Mutual labels:  angular2
angular2-yandex-maps
Angular 2 components Yandex Maps.
Stars: ✭ 26 (-42.22%)
Mutual labels:  angular2
cloud-cardboard-viewer
Build a Node.js & Angular 2 Web App using Google Cloud Platform
Stars: ✭ 23 (-48.89%)
Mutual labels:  angular2
transempregos-portal
Repo do site do TEmpregos, um website voltado para a procura de vagas por pessoas transexuais, travestis, homens trans e trans não bináries.
Stars: ✭ 19 (-57.78%)
Mutual labels:  angular2
simple-switch
Vanilla JS/CSS Switch UI element
Stars: ✭ 18 (-60%)
Mutual labels:  switch
ng2-tooltip-directive
The tooltip is a pop-up tip that appears when you hover over an item or click on it.
Stars: ✭ 101 (+124.44%)
Mutual labels:  angular2
Knight
The scheduler with UI base on quartz-scheduler(spring boot + angular)
Stars: ✭ 16 (-64.44%)
Mutual labels:  angular2
xiaomiplug
Xiaomi Mi Smart WiFi Socket integration for Home Assistant
Stars: ✭ 99 (+120%)
Mutual labels:  switch
Angular2-startbootstrap-new-age
Angular 2 version of the Start Bootstrap New Age theme
Stars: ✭ 13 (-71.11%)
Mutual labels:  angular2
router
Keep your Angular2+ router state in Redux
Stars: ✭ 28 (-37.78%)
Mutual labels:  angular2
framework7.angular2
Framework7 angular 2 integration
Stars: ✭ 14 (-68.89%)
Mutual labels:  angular2
angular-7-tutorial
A video tutorial series showing how to build an Angular 7 application step by step that supports user registration and login functionality
Stars: ✭ 22 (-51.11%)
Mutual labels:  angular2

jw-bootstrap-switch-ng2

npm (scoped) npm

NPM

Angular Component for Bootstrap Switch. Useful to make a checkbox more entertaining. See the Demo

Notes: Written with typescript, without JQuery.

preview bootstrap switch

Support

NPM Version Angular
^2.0.0 Angular 6+
1.0.10 Angular 5
1.0.0 Angular 2-4

Installation

  npm install jw-bootstrap-switch-ng2 --save

Breaking Changes

Version ^2.0.0

  • Now in order to capture the event when the switch change, now you need to use the event changeState
  • Rename the module from JWBootstrapSwitchModule to JwBootstrapSwitchNg2Module

Usage

Import the css file:

CDN:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/css/bootstrap3/bootstrap-switch.css">

Or download from the official page here

Add JwBootstrapSwitchNg2Module to your list of modules imports:

import { JwBootstrapSwitchNg2Module } from 'jw-bootstrap-switch-ng2';

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

You can then use the directive in your templates:

@Component({
  selector: 'app',
  template: `
  <bSwitch
          [switch-base-class]="baseClass"
          [switch-wrapper-class]="wrapperClass"
          [switch-label-width]="labelWidth"
          [switch-label-text]="labelText"
          [switch-off-text]="offText"
          [switch-on-text]="onText"
          [switch-on-color]="color"
          [switch-off-color]="offColor"
          [switch-size]="size"
          [switch-disabled]="disabled"
          [switch-readonly]="readonly"
          [switch-animate]="animate"
          [(ngModel)]="state"
          [switch-inverse]="inverse"
          [switch-handle-width]="handleWidth"
          [switch-base-class]="'bootstrap-switch'"
          (changeState)="onChange($event)">
  </bSwitch>
  `
})
export class AppComponent {}

Available Attributes

Attribute Description Type Arguments
switch-base-class Global class prefix. string
switch-wrapper-class Container element class(es). string
switch-label-width Define the width of the label. number or string 'auto'
switch-label-text Define the text of the label string
switch-on-text Define the text when the ngModel is true string
switch-off-text Define the text when the ngModel is false string
switch-on-color Define the class to give style to the ngModel equals to ON or true string primary,info,success,warning,danger,default
switch-off-color Define the class to give style to the ngModel equals to OFF or false string primary,info,success,warning,danger,default
switch-size Define the size of the switch string mini,small,normal,large
switch-disabled Define if the switch is disabled boolean
switch-readonly Define if the switch is readonly boolean
switch-animate Define if the switch is going to have animation boolean
switch-inverse Define the position of the ON and OFF section boolean
switch-handle-width Define the width of the ON and OFF section number or string 'auto'
ngModel Variable to get the switch's value definition -

Events

Attribute Description Return
changeState Event fired when change ngModel attribute Object with the previous and current value: {previousValue: false, currentValue: true}

Notes

For Issues, please make a example with jsfiddle or something like that.

LICENSE

MIT License

Copyright (c) 2016 Julio Guerra

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].