New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ngx-i24-checkbox

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-i24-checkbox

A lightweight plugin to display a modern checkbox.

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

NgxCheckboxLib

A lightweight plugin to display a modern checkbox.

Features

  • highly customizable
  • very easy to implement

Demo

Get started

Installation

$ npm i ngx-i24-checkbox

Example

TS
Module
import { NgxCheckboxModule } from 'ngx-i24-checkbox';
@NgModule({
  declarations: [ AppComponent ],
  imports: [BrowserModule, NgxCheckboxModule ],
  bootstrap: [AppComponent]
})
export class AppModule { }
Component
import { Component } from '@angular/core';
@Component({
 selector: 'app-root',
 templateUrl: './app.component.html',
 styleUrls: ['./app.component.scss']
})
export class AppComponent { 
}
HTML
  <ngx-checkbox></ngx-checkbox>

  <!-- Or you can simply use directive -->
  <!-- Note: type should be `checkbox`  -->
  <input NgxCheckbox type="checkbox" />

Options

Property (Type)DefaultDescription
color'#3c3c3c'The color of check
backColor'#fff'The background of checkbox
borderColor'#c6c6c6'The border color
shadow'0px 0px 4px 1px #6c6c6c'The shadow of the checkbox
cWidth'20px'The width of the checkbox
cHeight'20px'The height of the checkbox
checkWidth'6px'The width of the checkbox signal
checkHeight'10px'The height of the checkbox signal
valuetrueThe default value

Events

  • checkedChanged - triggered on change the value

Other Projects

NameLinkDescription
ngx-i24-circular-progressLinkA lightweight plugin to render a simple, animated circular progress bar.
ngx-i24-progress-barLinkA lightweight plugin to render a simple, animated progress bar.
ngx-weekday-pickerLinkLightweight plugin to a pick weekday.
ngx-i24-color-pickerLinkA lightweight plugin to pick a color.
ngx-i24-checkboxLinkA lightweight plugin to display a modern checkbox.

Support

Copyright (c) 2022 Yaseen Alrefaee, contributors. Released under the MIT

Keywords

ngx

FAQs

Package last updated on 29 Oct 2022

Did you know?

Socket

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