
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
@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 7,149 weekly downloads. As such, @material/mwc-formfield popularity was classified as 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
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.