Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@anypoint-web-components/anypoint-control-mixins
Advanced tools
A set of mixins to be implemented in various controls reacting to user input
A set of components that reflect control state to properties and / or attributes. It can be used to control behaviour of a control depending on user input.
Included controls:
hoverable-mixin.js
- A mixin reflecting mouse over state on hovered
property reflected to an attribute.button-state-mixin.js
- A mixin reflecting button state like active
, pressed
, pointerDown
, or receivedFocusFromKeyboard
.control-state-mixin.js
- A mixin reflecting focused
state and handing disabled
state of the control.They are designed to handle aria attributes and state management in various state combinations. Useful for designing custom buttons and other form elements that accept user input.
npm install --save @anypoint-web-components/anypoint-control-mixins
import { LitElement, html } from 'lit-element';
import { ButtonStateMixin, ControlStateMixin } from '@anypoint-web-components/anypoint-control-mixins/anypoint-control-mixins.js';
class SimpleButton extends ControlStateMixin(ButtonStateMixin(LitElement)) {
static get styles() {
return css`
:host {
display: inline-block;
background-color: #4285F4;
color: #fff;
min-height: 8px;
min-width: 8px;
padding: 16px;
text-transform: uppercase;
border-radius: 3px;
user-select: none;
cursor: pointer;
}
:host([disabled]) {
opacity: 0.3;
pointer-events: none;
}
:host([active]),
:host([pressed]) {
background-color: #3367D6;
box-shadow: inset 0 3px 5px rgba(0,0,0,.2);
}
:host([focused]) {
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
0 6px 30px 5px rgba(0, 0, 0, 0.12),
0 8px 10px -5px rgba(0, 0, 0, 0.4);
}`;
}
render() {
return html`<slot></slot>`;
}
}
window.customElements.define('simple-button', SimpleButton);
git clone https://github.com/anypoint-web-components/anypoint-control-mixins
cd anypoint-control-mixins
npm install
npm start
npm test
FAQs
A set of mixins to be implemented in various controls reacting to user input
The npm package @anypoint-web-components/anypoint-control-mixins receives a total of 275 weekly downloads. As such, @anypoint-web-components/anypoint-control-mixins popularity was classified as not popular.
We found that @anypoint-web-components/anypoint-control-mixins demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.