
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
angular-card
Advanced tools
Angular directive for card https://github.com/jessepollak/card
http://jessepollak.github.io/card/
bower install angular-card
##Usage
###name
is required for form and inputs (you can use any unique name)
<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
};
}]);
FAQs
Angular directive for card https://github.com/jessepollak/card
The npm package angular-card receives a total of 199 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.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.