
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
v-textfield
Advanced tools
You can use vTextfild to show (hide) validation messages, error/success input indicators, or interactive Float Labels. It basically adds the following classes to the v-textfield
directive:
is-focused
is-blured
is-valid
is-invalid
is-dirty
is-pristine
is-required
is-optional
has-value
has-noValue
has-placeholder
has-noPlaceholder
bower install v-textfield
, or download files from the github repov-textfield.css
and v-textfield.js
in your index.html fileangular.module('myApp', [ 'vTextfield' ])
<v-textfield class="Textfield--default">
<label hint="Optional">Name</label>
<input name="myName" type="text" ng-model="model.myName" v-textfield-input>
</v-textfield>
<v-textfield class="Textfield--default">
<label>Email</label>
<input name="myEmail" type="email" ng-model="model.myEmail" required v-textfield-input>
<ng-messages for="myForm.myEmail.$error">
<ng-message when="email">Please enter a valid email address.</ng-message>
<ng-message when="required">You did not enter a email address.</ng-message>
</ng-messages>
</v-textfield>
<v-textfield class="vTextfield--default">
<label>Password</label>
<input name="myPassword" type="password" ng-model="model.myPassword" ng-minlength="6" required v-textfield-input>
<ng-messages for="myForm.myPassword.$error">
<ng-message when="minlength">Your password is too short.</ng-message>
<ng-message when="required">Please enter a password.</ng-message>
</ng-messages>
</v-textfield>
FAQs
User-friendly text fields in AngularJS
The npm package v-textfield receives a total of 3 weekly downloads. As such, v-textfield popularity was classified as not popular.
We found that v-textfield demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.