
Research
/Security News
npm Author Qix Compromised in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
angular-card
Advanced tools
Angular directive for card https://github.com/jessepollak/card
http://jessepollak.github.io/card/
npm install angular-card
name
is required for form and inputs (you can use any unique name)width
is optional, it can be set on the element or the options object (defaults to 350)<form action="#"
name="cardForm"
data-card
data-width="500"
data-card-container="#card-container"
data-placeholders="cardPlaceholders"
data-options="cardOptions"
data-messages="cardMessages">
<div>
<input placeholder="Card number" type="text" name="CardNumber" card-number data-ng-model="card.number" />
<input placeholder="Full name" type="text" name="CardName" card-name data-ng-model="card.name" />
</div>
<div>
<input placeholder="MM / YYYY" type="text" name="CardExpiry" card-expiry data-ng-model="card.expiry" />
<input placeholder="CVC" type="text" name="CardCvc" card-cvc data-ng-model="card.cvc" />
<input type="button" value="Change card" data-ng-click="changeCard()" />
<input type="button" value="Clear" data-ng-click="clear()" />
</div>
</form>
angular.module('app', ['gavruk.card'])
.controller('ExampleCtrl', ['$scope', function($scope) {
$scope.card = {
name: 'Mike Brown',
number: '5555 4444 3333 1111',
expiry: '11 / 2020',
cvc: '123'
};
$scope.cardPlaceholders = {
name: 'Your Full Name',
number: 'xxxx xxxx xxxx xxxx',
expiry: 'MM/YY',
cvc: 'xxx'
};
$scope.cardMessages = {
validDate: 'valid\nthru',
monthYear: 'MM/YYYY',
};
$scope.cardOptions = {
debug: false,
formatting: true,
width: 500 //optional
};
}]);
Simply use 2 input fields for the expiry, and pass either month
, or year
to the directive.
<input placeholder="MM" type="text" name="CardExpiryMonth" card-expiry="month" data-ng-model="card.expiryMonth" />
<input placeholder="YYYY" type="text" name="CardExpiryYear" card-expiry="year" data-ng-model="card.expiryYear" />
FAQs
Angular directive for card https://github.com/jessepollak/card
The npm package angular-card receives a total of 165 weekly downloads. As such, angular-card popularity was classified as not popular.
We found that angular-card demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.