0.1.8 • Published 4 years ago

@idli/idli-checkbox v0.1.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 years ago

Built With Stencil

Using this component

Script tag

  • Put a script tag similar to this <script src='https://unpkg.com/@idli/idli-checkbox@0.1.8/dist/idli-checkbox.js'></script> in the head of your index.html
  • Then you can use the element anywhere in your template, JSX, html etc

Node Modules

  • Run npm install @idli/idli-checkbox --save
  • Put a script tag similar to this <script src='node_modules/@idli/idli-checkbox/dist/idli-checkbox.js'></script> in the head of your index.html
  • Then you can use the element anywhere in your template, JSX, html etc

In a stencil-starter app

  • Run npm install @idli/idli-checkbox --save
  • Add an import to the npm packages import @idli/idli-checkbox;
  • Then you can use the element anywhere in your template, JSX, html etc

Example:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src='https://unpkg.com/@idli/idli-checkbox@0.1.8/dist/idli-checkbox.js'></script>
</head>
<body>
  <h2>Basic</h2>
  <idli-checkbox label="Male" value="true"></idli-checkbox>
  <h2>Disabled</h2>
  <idli-checkbox label="Female" inline="true" disabled></idli-checkbox>
</body>
</html>

Demo:

Click here for demo

Code of Conduct

Contributor Covenant

License

Apache License 2.0