Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@material/mwc-formfield
Advanced tools
<mwc-formfield>
IMPORTANT: The Material Web Components are a work in progress and subject to major changes until 1.0 release.
A form field is a text caption for MWC input elements including
<mwc-checkbox>
,
<mwc-radio>
,
and
<mwc-switch>
.
It is equivalent to the native
<label>
element in that it forwards user interaction events to the input element. For example, tapping on the label causes the associated input element to toggle and focus.
Material Design Guidelines: Selection controls
npm install @material/mwc-formfield
NOTE: The Material Web Components are distributed as ES2017 JavaScript Modules, and use the Custom Elements API. They are compatible with all modern browsers including Chrome, Firefox, Safari, Edge, and IE11, but an additional tooling step is required to resolve bare module specifiers, as well as transpilation and polyfills for IE11. See here for detailed instructions.
<mwc-formfield label="Tomato">
<mwc-checkbox checked></mwc-checkbox>
</mwc-formfield>
<script type="module">
import '@material/mwc-checkbox/mwc-checkbox.js';
import '@material/mwc-formfield/mwc-formfield.js';
</script>
<style>
mwc-formfield[nowrap] {
width: 150px;
}
</style>
<mwc-formfield label="really really long label" nowrap>
<mwc-checkbox></mwc-checkbox>
</mwc-formfield>
<script type="module">
import '@material/mwc-checkbox/mwc-checkbox.js';
import '@material/mwc-formfield/mwc-formfield.js';
</script>
<style>
mwc-formfield {
display: block;
}
</style>
<mwc-formfield label="Home">
<mwc-radio name="location" checked></mwc-radio>
</mwc-formfield>
<mwc-formfield label="Work">
<mwc-radio name="location"></mwc-radio>
</mwc-formfield>
<script type="module">
import '@material/mwc-radio/mwc-radio.js';
import '@material/mwc-formfield/mwc-formfield.js';
</script>
<mwc-formfield label="Airplane mode">
<mwc-switch checked></mwc-switch>
</mwc-formfield>
<script type="module">
import '@material/mwc-switch/mwc-switch.js';
import '@material/mwc-formfield/mwc-formfield.js';
</script>
Name | Description |
---|---|
default | The input element that this form field provides a label for. |
Name | Type | Description |
---|---|---|
label | string | The text to display for the label and sets a11y label on input. (visually overriden by slotted label) |
alignEnd | boolean | Align the component at the end of the label. |
spaceBetween | boolean | Add space between the component and the label as the formfield grows. |
nowrap | boolean | Prevents the label from wrapping and overflow text is ellipsed. |
None
None
This component exposes the following global theming custom properties.
Name | Description |
---|---|
--mdc-typography-body2-<PROPERTY> | Styles the typography of the formfield. |
FAQs
Material Design formfield web component
The npm package @material/mwc-formfield receives a total of 0 weekly downloads. As such, @material/mwc-formfield popularity was classified as not popular.
We found that @material/mwc-formfield demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.