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

azir-radio

v1.0.3

Published

An advance Radio, Radiogroup, checkbox, checkbox group, switch components that should render nicely on any platform. Supports a great level of customization.

Downloads

31

Readme

Azir Framwork : https://azir.io/docs

If you want to read documentaion about Radio Group, Checkbox, Switch, Checkbox group please check azir docs. https://azir.io/docs

Radio

An advance Radio component that should render nicely on any platform. Supports a great level of customization.

Installation

to install the latest version of azir-radio you only need to run:

this package incluse also : (Radio, Switch, CheckBox, RadioGroup, CheckboxGroup )

npm install azir-radio --save

or

yarn add azir-radio

Examples

Basic

import { Radio } from "azir-radio";
---
<Radio
  id="1"
  value="5"
  onChange={event => {
    console.log(event);
  }}>
  Nice Radio :)
</Radio>

Advance

import { Radio } from "azir-radio";
---
<Radio
  id="1"
  value="5"
  onChange={event => {
    console.log(event);
  }}
  checked
  hideIconBorder={true}
  size={60}
  iconActiveColor="success"
  textActiveColor="#00ff00"
  textStyle={ { fontSize: 18 } }>
  active Radio :)
</Radio>
<Radio
  id="2"
  value="10"
  onChange={event => {
    console.log(event);
  }}
  checked={false}
  hideInActiveIcon={false}
  hideLable={false}
  size={30}
  iconInActiveColor="red"
  textInActiveColor="theme"
  textStyle={ { fontSize: 14 } }
  iconStyle={ { borderRadius: 0 } }
  style={ { borderWidth: 1, borderColor: "#ff9900", padding: 5 } }>
  inactive Radio :(
</Radio>

Custom Icons

import { Radio } from "azir-radio";
import  { SolidIcons } from "azir-icon";
---
<Radio
  id="1"
  value="5"
  onChange={event => {
    console.log(event);
  }}
  iconActive={SolidIcons.box}
  iconInActive={SolidIcons.boxOpen}
  hideInActiveIcon={false}
  iconStyle={ { width: 50, height: 50, borderRadius: 25 } }
>
  Box
</Radio>

Props


Reference

id

the id of your component, should be unique when u use radioGroup.

| Type | Required | | ------ | -------- | | string | Yes |

value

the value property do not appear in the user interface.The value property only has meaning when you click on the component and you want to receive the value for which radio has been selected.

| Type | Required | | ------ | -------- | | string | Yes |

onChange

Handler to be called when the user click the the component, ; passes the event as an argument.

Event Object {
  "checked": false,
  "id": "1",
  "value": "5",
}

| Type | Required | | -------- | -------- | | function | Yes |

disabled

If true, disable all interactions for this component.

| Type | Required | Default | | ---- | -------- | ------- | | bool | No | false |

checked

the default state if it checked or not .

| Type | Required | Default | | ---- | -------- | ------- | | bool | No | false |

flexDirection

flexDirection controls which directions children of a container go.(radio icon, and label) row goes left to right, column goes top to bottom

| Type | Required | Default | | ------------------------------------------------ | -------- | ------- | | 'row', 'row-reverse', 'column', 'column-reverse' | No | row |

size

set the size of the icon .

| Type | Required | Default | | ------ | -------- | -------------------------- | | Number | No | AzirTheme.SIZES.RADIO_SIZE |

hideLable

Hide Radio label when it set to true . or you simply not pass text children to the radio component.

| Type | Required | Default | | ---- | -------- | ------- | | bool | No | false |

textActiveColor

the text color of the component label when its checked .

| Type | Required | Default | | ------------------------------------------ | -------- | ------- | | azir-color | No | theme |

textInActiveColor

the text color of the component label when its unchecked .

| Type | Required | Default | | ------------------------------------------ | -------- | ---------------------- | | azir-color | No | AzirTheme.COLORS.BLACK |

textDisabledColor

the text color of the component label when its disabled .

| Type | Required | Default | | ------------------------------------------ | -------- | ---------------------- | | azir-color | No | AzirTheme.COLORS.MUTED |

iconActive

if you want to change the default icon of the radio button when its active, you need just to pass the new icon name using this prop.

| Type | Required | Default | | --------------------------------------------------------------------------- | -------- | ------------------------------------ | | azir-icon (SolidIcons, RegularIcons, BrandIcons,customIcons) | No | AzirTheme.STRINGS.RADIO_DEFAULT_ICON |

iconInActive

if you want to change the default icon of the radio button when its inActive, you need just to pass the new icon name using this prop.

| Type | Required | Default | | --------------------------------------------------------------------------- | -------- | ------------------------------------ | | azir-icon (SolidIcons, RegularIcons, BrandIcons,customIcons) | No | AzirTheme.STRINGS.RADIO_DEFAULT_ICON |

iconActiveColor

the color of the radio icon and its border when its checked .

| Type | Required | Default | | ------------------------------------------ | -------- | ------- | | azir-color | No | theme |

iconInActiveColor

the color of the radio icon and its border when its unchecked .

| Type | Required | Default | | ------------------------------------------ | -------- | ---------------------- | | azir-color | No | AzirTheme.COLORS.BLACK |

iconDisabledColor

the color of the radio icon and its border when its disabled .

| Type | Required | Default | | ------------------------------------------ | -------- | ---------------------- | | azir-color | No | AzirTheme.COLORS.MUTED |

hideInActiveIcon

by default when radio button is uncheced we only show the border and hide the icon by default.if you want to keep the icon when the radio is unchecked you need to set the prop to false.

| Type | Required | Default | | ---- | -------- | ------- | | bool | No | true |

hideIconBorder

by default we show the radio icon border , this is very important in the case hideInActiveIcon set to true.if you dont like to show the icon border just set this prop to true.

| Type | Required | Default | | ---- | -------- | ------- | | bool | No | false |

style

override radio button (label + icon) container style for example if you want to change width,height,padding,....

| Type | Required | | ----- | -------- | | style | No |

textStyle

override radio button label style for example if you want to change fontSize,....

| Type | Required | | ----- | -------- | | style | No |

iconStyle

override radio button icon style for example if you want to change borderRadius,....

| Type | Required | | ----- | -------- | | style | No |