![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@justeattakeaway/pie-checkbox
Advanced tools
PIE Design System Checkbox built using Web Components
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.
To install pie-checkbox
in your application, run the following on your command line:
# npm
$ npm i @justeattakeaway/pie-checkbox
# yarn
$ yarn add @justeattakeaway/pie-checkbox
For full information on using PIE components as part of an application, check out the Getting Started Guide.
// 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
// 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.
[!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.
Property | Type | Default | Description |
---|---|---|---|
name | string | - | The name of the checkbox (used as a key/value pair with value ). This is required in order to work properly with forms. |
value | string | '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". |
required | boolean | false | If 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. |
label | string | '' | Text associated with the checkbox. If there is no label to provide, make sure to pass label, labelledby or describedby to the aria property. |
disabled | boolean | false | Indicates whether or not the checkbox is disabled. |
checked | boolean | false | Indicates whether or not the checkbox is checked by default (when the page loads). |
indeterminate | boolean | false | Indicates 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. |
aria | object | {} | accepts label , labeledby and describedby keys with string values. |
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="Checkbox Label">
</pie-checkbox>
<!-- JSX -->
<PieCheckbox
name="mycheckbox"
label="Checkbox Label">
</PieCheckbox>
Event | Type | Description |
---|---|---|
change | CustomEvent | Triggered after the checked state of a checkbox changes. |
Check out our contributing guide for more information on local development and how to run specific component tests.
FAQs
PIE Design System Checkbox built using Web Components
The npm package @justeattakeaway/pie-checkbox receives a total of 456 weekly downloads. As such, @justeattakeaway/pie-checkbox popularity was classified as not popular.
We found that @justeattakeaway/pie-checkbox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.