@riot-material/rm-radio
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

radio component based on Material Design for riot-material

Installation

You can install it via nodejs

npm install @riot-material/rm-radio

or download one of the bundled file

/**
 * `dist/index.js`
 * `dist/index+libs.js`
 */
requirejs.config({
  paths: {
      "@riot-material/rm-radio": "path/to/@riot-material/rm-radio",
   },
});

require(['@riot-material/rm-radio'], function (RadioComponent) {
    // ...
});

/**
 * `dist/index.es.js`
 * npm installation
 */
import RadioComponent from "@riot-material/rm-radio";

otherwise you can include the script in your project html

<script src="@riot-material/rm-radio/index.js" />
<!-- or -->
<script src="@riot-material/rm-radio/index+libs.js" />

and access it via

window.riotMaterial.components.radio;

Note: all the bundled file having +libs contain also the dependencies needed by the component, which, in this case, are:
@riot-material/ripple
Be sure to have them when installing manually or including via html

Properties

checked optional

disabled optional

Any value will be result in the disabled state

label optional

name optional

readonly optional

Methods

getName(): string|null

isChecked(): boolean

isDisabled(): boolean

isReadonly(): boolean

Readme

Keywords

none

Package Sidebar

Install

npm i @riot-material/rm-radio

Weekly Downloads

2

Version

1.2.0

License

MIT

Unpacked Size

72.7 kB

Total Files

12

Last publish

Collaborators

  • kal-aster