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

labeled-checkbox-material-ui

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

labeled-checkbox-material-ui

A material-ui component which combines a checkbox and a label in a single component

latest
Source
npmnpm
Version
3.1.1
Version published
Maintainers
1
Created
Source

labeled-checkbox-material-ui Weekly downloads

A material-ui component which combines a checkbox and a label in a single component

Demo

You can access the storybook for this component here.

Props

The component accepts the props defined bellow in the table.

Props accepted by LabeledCheckboxMaterialUi

NameTypeRequiredDefaultDescription
checkedbooleannofalseIf true, the checkbox is selected
classNameCheckboxstringnoundefinedThe className applied to the checkbox
classNameLabelstringnoundefinedThe className applied to the label
colorstringnoprimaryThe color of the checkbox
disabledbooleannofalseThe component is disabled
labelstringyes-The label of the checkbox
onChange(checked: boolean) => voidnoundefinedThe callback function called when the checkbox value is changed
styleCheckboxCSSPropertiesnoundefinedThe style applied to the checkbox
styleLabelCSSPropertiesnoundefinedThe style applied to the label
valuestringnoundefinedThe value of the checkbox

Versions

LabeledCheckboxMaterialUi usesMaterial-uiReact
1.0.x3.6.016.6.3
1.1.x3.9.116.8.1
1.2.x3.9.316.8.6
2.0.x4.0.216.8.6
2.1.x4.2.016.8.6
2.2.x4.3.216.9.0
2.3.x4.9.016.9.0
2.4.x4.9.716.9.0
2.5.x4.10.216.9.0
2.6.x4.11.016.9.0
2.7.x4.11.316.9.0 or 17.0.0
3.0.x5.10.1718.0.0
3.1.x5.14.2018.0.0

About versioning schema used for LabeledCheckboxMaterialUi

  • Major - it will be increased if the major version of the dependat package changes or there are breaking changes in the code of LabeledCheckboxMaterialUi
  • Minor - it will be increased if no major version of the dependat package changes, but there are changes of the minor or patch versions of it
  • Patch - it will be increased if there are no changes of the dependat packages, but there are non breaking changes in the code of LabeledCheckboxMaterialUi

Example

The base component which allows to create read-only or creatable select components for selecting only one or more values:

import * as React from 'react';
import LabeledCheckboxMaterialUi from 'labeled-checkbox-material-ui';

class App extends React.Component {
  render() {
    return (
      <div className="App">
        <LabeledCheckboxMaterialUi
          label="Use colors"
          onChange={this.handleChange}
        />
      </div>
    );
  }

  handleChange = (checked: boolean) => {
    console.log(checked);
  };
}

export default App;

Changelog

1.0.0

  • labeled-checkbox-material-ui is made publicly available

1.0.1

  • onChange is optional as it is not requried when the checkbox is disabled

1.0.2

  • Fixed the pass of styles from parent to this component

1.1.0

  • Updated packages

1.2.0

  • Updated packages

2.0.0

  • Updated packages

2.1.0

  • Updated packages

2.2.0

  • Added a storybook
  • Removed lodash
  • Updated packages

2.3.0

  • Updated packages

2.4.0

  • Updated packages
  • Moved from npm to yarn

2.5.0

  • Updated packages

2.6.0

  • Updated packages

2.6.1

  • Fixed crash produced by "export * from"

2.6.2

  • Added two new props: classNameCheckbox and classNameLabel

2.6.3

  • Fixed Readme

2.7.0

  • Accepting React 17 as peerDependencies
  • Fixed security warnings

2.7.1

  • Updated packages

3.0.0

  • Supports minimum React 18

3.1.0

  • Updated packages

3.1.1

  • Fixed bundled lib

Keywords

text

FAQs

Package last updated on 10 Dec 2023

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