Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@justeattakeaway/pie-assistive-text
Advanced tools
PIE Design System Assistive Text built using Web Components
pie-assistive-text
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-assistive-text
in your application, run the following on your command line:
# npm
$ npm i @justeattakeaway/pie-assistive-text
# yarn
$ yarn add @justeattakeaway/pie-assistive-text
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 { PieAssistiveText } from '@justeattakeaway/pie-assistive-text';
// 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-assistive-text';
// React
// For React, you will need to import our React-specific component build
// which wraps the web component using @lit/react
import { PieAssistiveText } from '@justeattakeaway/pie-assistive-text/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-assistive-text
, 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 |
---|---|---|---|
variant | string | default | Sets the type of message displayed to one of three potential options: error , success or default . error and success include an icon and are used for validation messages. default provides users with extra context and guidance. |
Property | Description |
---|---|
default | The default, unnamed slot is used to pass in text to the component. |
In your markup or JSX, you can then use these to set the properties for the pie-assistive-text
component:
<!-- Native HTML -->
<pie-assistive-text
variant="success">
Your request has been submitted.
</pie-assistive-text>
<!-- JSX -->
<PieAssistiveText
variant="error">
Password contains too few characters.
</PieAssistiveText>
Check out our contributing guide for more information on local development and how to run specific component tests.
FAQs
PIE Design System Assistive Text built using Web Components
The npm package @justeattakeaway/pie-assistive-text receives a total of 299 weekly downloads. As such, @justeattakeaway/pie-assistive-text popularity was classified as not popular.
We found that @justeattakeaway/pie-assistive-text demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.