<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
Installation
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 Edge and IE11. See
here
for detailed instructions.
Example usage
With checkbox
<mwc-formfield label="Tomato">
<mwc-checkbox></mwc-checkbox>
</mwc-formfield>
<script type="module">
import '@material/mwc-checkbox';
import '@material/mwc-formfield';
</script>
With Radio
<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';
import '@material/mwc-formfield';
</script>
With Switch
<mwc-formfield label="Airplane mode">
<mwc-switch checked></mwc-switch>
</mwc-formfield>
<script type="module">
import '@material/mwc-switch';
import '@material/mwc-formfield';
</script>
API
Slots
Name | Description |
---|
default | The input element that this form field provides a label for. |
Properties/Attributes
Name | Type | Description |
---|
label | string | The text to display for the label. |
Methods
None
Events
None
CSS Custom Properties
None
Additional references