Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@material/mwc-formfield
Advanced tools
> IMPORTANT: The Material Web Components are a work in progress and subject to > major changes until 1.0 release.
<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 Edge and IE11. See here for detailed instructions.
<mwc-formfield label="Tomato">
<mwc-checkbox></mwc-checkbox>
</mwc-formfield>
<script type="module">
import '@material/mwc-checkbox';
import '@material/mwc-formfield';
</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';
import '@material/mwc-formfield';
</script>
<mwc-formfield label="Airplane mode">
<mwc-switch checked></mwc-switch>
</mwc-formfield>
<script type="module">
import '@material/mwc-switch';
import '@material/mwc-formfield';
</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. |
None
None
None
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.