gold-cc-cvc-input
An input element that only allows cvc codes
<gold-cc-cvc-input>
gold-cc-cvc-input
is a single-line text field with Material Design styling
for entering a credit card's CVC (Card Verification Code). It supports both
4-digit Amex CVCs and non-Amex 3-digit CVCs
See: Documentation, Demo.
Usage
Installation
npm install --save @polymer/gold-cc-cvc-input
In an html file
<html>
<head>
<script type="module">
import '@polymer/gold-cc-input/gold-cc-input.js';
import '@polymer/gold-cc-cvc-input/gold-cc-cvc-input.js';
</script>
</head>
<body>
<gold-cc-input card-type="{{cardType}}"></gold-cc-input>
<gold-cc-cvc-input card-type="[[cardType]]"></gold-cc-cvc-input>
</body>
</html>
In a Polymer 3 element
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/gold-cc-input/gold-cc-input.js';
import '@polymer/gold-cc-cvc-input/gold-cc-cvc-input.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<gold-cc-input card-type="{{cardType}}"></gold-cc-input>
<gold-cc-cvc-input card-type="[[cardType]]"></gold-cc-cvc-input>
`;
}
}
customElements.define('sample-element', SampleElement);
Contributing
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
Installation
git clone https://github.com/PolymerElements/gold-cc-cvc-input
cd gold-cc-cvc-input
npm install
npm install -g polymer-cli
Running the demo locally
polymer serve --npm
open http://127.0.0.1:<port>/demo/
Running the tests
polymer test --npm
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Dependencies
- @polymer/polymer#^3.0.0
- @polymer/iron-icon#^3.0.0-pre.26
- @polymer/iron-flex-layout#^3.0.0-pre.26
- @polymer/iron-form-element-behavior#^3.0.0-pre.26
- @polymer/paper-input#^3.0.0-pre.26
- @polymer/paper-styles#^3.0.0-pre.26
- Released
- 2018-11-12
- Maturity
- IMPORTED
- License
- BSD 3-clause "New" or "Revised" License
Compatibility
- Framework
- Polymer 1.0+
- Polymer 3.0+
- Polymer 2.0+ in 2.1.0
- Browser
- Browser Independent
gold-cc-cvc-input - Vaadin Add-on Directory
An input element that only allows cvc codes[](https://www.npmjs.com/package/@polymer/gold-cc-cvc-input)
[](https://travis-ci.org/PolymerElements/gold-cc-cvc-input)
[](https://webcomponents.org/element/@polymer/gold-cc-cvc-input)
## <gold-cc-cvc-input>
`gold-cc-cvc-input` is a single-line text field with Material Design styling
for entering a credit card's CVC (Card Verification Code). It supports both
4-digit Amex CVCs and non-Amex 3-digit CVCs
See: [Documentation](https://www.webcomponents.org/element/@polymer/gold-cc-cvc-input),
[Demo](https://www.webcomponents.org/element/@polymer/gold-cc-cvc-input/demo/demo/index.html).
## Usage
### Installation
```
npm install --save @polymer/gold-cc-cvc-input
```
### In an html file
```html
```
### In a Polymer 3 element
```js
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/gold-cc-input/gold-cc-input.js';
import '@polymer/gold-cc-cvc-input/gold-cc-cvc-input.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
`;
}
}
customElements.define('sample-element', SampleElement);
```
## Contributing
If you want to send a PR to this element, here are
the instructions for running the tests and demo locally:
### Installation
```sh
git clone https://github.com/PolymerElements/gold-cc-cvc-input
cd gold-cc-cvc-input
npm install
npm install -g polymer-cli
```
### Running the demo locally
```sh
polymer serve --npm
open http://127.0.0.1:/demo/
```
### Running the tests
```sh
polymer test --npm
```