Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@justeattakeaway/pie-checkbox

Package Overview
Dependencies
Maintainers
0
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeattakeaway/pie-checkbox

PIE Design System Checkbox built using Web Components

  • 0.10.0
  • npm
  • Socket score

Version published
Weekly downloads
228
decreased by-29.19%
Maintainers
0
Weekly downloads
 
Created
Source

GitHub Workflow Status

Table of Contents

  1. Introduction
  2. Installation
  3. Importing the component
  4. Peer Dependencies
  5. Props
  6. Events
  7. Contributing

pie-checkbox

pie-checkbox is a Web Component built using the Lit library.

This component can be easily integrated into various frontend frameworks and customized through a set of properties.

Installation

To install pie-checkbox in your application, run the following on your command line:

$ npm i @justeattakeaway/pie-checkbox
$ yarn add @justeattakeaway/pie-checkbox

For full information on using PIE components as part of an application, check out the Getting Started Guide.

Importing the component

JavaScript
// Default – for Native JS Applications, Vue, Angular, Svelte, etc.
import { PieCheckbox } from '@justeattakeaway/pie-checkbox';

// If you don't need to reference the imported object, you can simply
// import the module which registers the component as a custom element.
import '@justeattakeaway/pie-checkbox';
React
// React
// For React, you will need to import our React-specific component build
// which wraps the web component using ​@lit/react
import { PieCheckbox } from '@justeattakeaway/pie-checkbox/dist/react';

[!NOTE] When using the React version of the component, please make sure to also include React as a peer dependency in your project.

Peer Dependencies

[!IMPORTANT] When using pie-checkbox, you will also need to include a couple of dependencies to ensure the component renders as expected. See the PIE Wiki for more information and how to include these in your application.

Props

PropertyTypeDefaultDescription
namestring-The name of the checkbox (used as a key/value pair with value). This is required in order to work properly with forms.
valuestring 'on'The value of the input (used as a key/value pair in HTML forms with name). If not passed falls back to the html default value "on".
requiredbooleanfalseIf true, the checkbox is required to be checked before submitting the form. If it is not in checked state, the component validity state will be invalid.
disabledbooleanfalseIndicates whether or not the checkbox is disabled.
checkedbooleanfalseControls whether or not the checkbox is checked.
defaultCheckedbooleanfalseSets the default checked state for the checkbox. This does not directly set the initial checked state when the page loads, use checked for that. If the checkbox is inside a form which is reset, the checked state will be updated to match defaultChecked.
indeterminatebooleanfalseIndicates whether the checkbox visually shows a horizontal line in the box instead of a check/tick. It has no impact on whether the checkbox's value is used in a form submission. That is decided by the checked state, regardless of the indeterminate state.
assistiveTextstring-Allows assistive text to be displayed below the checkbox element.
status'default', 'error', 'success''default'The status of the checkbox component / assistive text. If you use status you must provide an assistiveText prop value for accessibility purposes.

In your markup or JSX, you can then use these to set the properties for the pie-checkbox component:

<!-- Native HTML -->
<pie-checkbox name="mycheckbox">Label</pie-checkbox>

<!-- Without a label it is necessary to pass aria-label or aria-labelledby attributes to the component  -->
<pie-checkbox name="mycheckbox" aria-label="Label"></pie-checkbox>

<!-- JSX -->
<PieCheckbox name="mycheckbox">Label</PieCheckbox>
<PieCheckbox name="mycheckbox" aria-label="Label"></PieCheckbox>

Events

EventTypeDescription
changeCustomEventTriggered after the checked state of a checkbox changes.

Contributing

Check out our contributing guide for more information on local development and how to run specific component tests.

FAQs

Package last updated on 29 Jul 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc