Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@polymer/iron-range-behavior
Advanced tools
Provides a behavior for something with a minimum and maximum value
IronRangeBehavior
IronRangeBehavior
provides the behavior for something with a minimum to
maximum range.
See: Documentation, Demo.
npm install --save @polymer/iron-range-behavior
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {IronRangeBehavior} from '@polymer/iron-range-behavior/iron-range-behavior.js';
class SimpleRange extends mixinBehaviors(IronRangeBehavior, PolymerElement) {
static get template() {
return html`
<style>
:host {
display: inline-flex;
align-items: center;
}
:host > * {
margin: 0.125em;
}
#barContainer {
display: inline-block;
position: relative;
border: 0.125em solid gray;
height: 1em;
width: 12em;
}
#bar {
position: absolute;
top: 0.125em;
bottom: 0.125em;
left: 0.125em;
background-color: blue;
}
</style>
<span>[[ratio]]%</span>
<div id="barContainer"><div id="bar" style="width: {{ratio}}%;"></div></div>
`;
}
}
customElements.define('simple-range', SimpleRange);
Then, in your HTML:
<simple-range min="0" max="200" value="120"></simple-range>
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
git clone https://github.com/PolymerElements/iron-range-behavior
cd iron-range-behavior
npm install
npm install -g polymer-cli
polymer serve --npm
open http://127.0.0.1:<port>/demo/
polymer test --npm
FAQs
Provides a behavior for something with a minimum and maximum value
The npm package @polymer/iron-range-behavior receives a total of 10,031 weekly downloads. As such, @polymer/iron-range-behavior popularity was classified as popular.
We found that @polymer/iron-range-behavior demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.