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.
Web Components inspired by the Gtk's Adwaita theme.
<adw-input
placeholder="Put in your name"
></adw-input>
Property | Description | Default |
---|---|---|
disabled | If the input is disabled or not. | "false" |
form | The form the input belongs to. | |
maxlength | The maximum length of the input. | |
minlength | The minimum length of the input. | |
name | The name of the input, used when submitting a form. | |
placeholder | Text displayed when the input is empty. | |
suggestions | List of suggested strings to display when the input is focused. | |
suggestionsorientation | Determines whether the list of suggestions appears above or below the input field. up or down . | "down" |
suggestionsshowall | Set to "true" to always display all the suggestions. | "false" |
fuzzy | When set to "true" the suggestions will be filtered using a fuzzy search algorithm as the user types. By default filtering is done using a simple string match. | |
type | The type of the input. (text, password, email, etc.) | "text" |
value | The current value of the input. |
<adw-selector placeholder="Select option">
<adw-option value="1" selected="true">
Option 1
</adw-option>
<adw-option value="2">
Option 2
</adw-option>
<adw-option value="3">
Option 3
</adw-option>
</adw-selector>
Property | Description | Default |
---|---|---|
disabled | If the selector is disabled or not. | "false" |
form | The form the selector belongs to. | |
name | The name of the selector, used when submitting a form. | |
orientation | Determines whether the list of options appears above or below the selector. up or down . | "down" |
reverseorder | When set to true, the options will be displayed in reverse order. | "false" |
placeholder | Text displayed when no option is selected. | |
inert | When set to true, this option will appear as non-selectable, this can be used to create separators or headers above or in between other options. | "false" |
Property | Description | Default |
---|---|---|
selected | If the option is selected or not. | "false" |
value | The value of the option. |
<adw-slider
min="0"
max="100"
value="50"
></adw-slider>
Property | Description | Default |
---|---|---|
disabled | If the slider is disabled or not. | "false" |
form | The form the slider belongs to. | |
max | The maximum value on the slider. | 100 |
min | The minimum value on the slider. | 0 |
name | The name of the slider, used when submitting a form. | |
precision | The number of decimal places to round the value to. | 4 |
step | The amount to increment or decrement the value by when moving the slider. | 1 |
value | The current value of the slider. |
<adw-switch
active="true"
></adw-switch>
Property | Description | Default |
---|---|---|
disabled | If the switch is disabled or not. | |
form | The form the switch belongs to. | |
name | The name of the switch, used when submitting a form. | |
active | If the switch is active or not. | "false" |
FAQs
Interactive Web Components inspired by the Gtk Adwaita theme.
The npm package adwaveui receives a total of 5 weekly downloads. As such, adwaveui popularity was classified as not popular.
We found that adwaveui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.