3.0.1 • Published 7 years ago
@polymer/gold-cc-input v3.0.1
<gold-cc-input>
gold-cc-input is a single-line text field with Material Design styling
for entering a credit card number. As the user types, the number will be
formatted by adding a space every 4 digits.
See: Documentation, Demo.
Usage
Installation
npm install --save @polymer/gold-cc-inputIn an html file
<html>
  <head>
    <script type="module">
      import '@polymer/gold-cc-input/gold-cc-input.js';
    </script>
  </head>
  <body>
    <gold-cc-input
          auto-validate
          label="Card number"
          error-message="Enter valid visa or mastercard!"
          card-types='["visa", "mastercard"]'
          value="6011 0000 0000 1233"
          required>
    </gold-cc-input>
  </body>
</html>In a Polymer 3 element
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/gold-cc-input/gold-cc-input.js';
class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <gold-cc-input
          auto-validate
          label="Card number"
          error-message="Enter valid visa or mastercard!"
          card-types='["visa", "mastercard"]'
          value="6011 0000 0000 1233"
          required>
      </gold-cc-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-input
cd gold-cc-input
npm install
npm install -g polymer-cliRunning the demo locally
polymer serve --npm
open http://127.0.0.1:<port>/demo/Running the tests
polymer test --npm3.0.1
7 years ago
3.0.0
7 years ago
3.0.0-pre.26
7 years ago
3.0.0-pre.25
7 years ago
3.0.0-pre.24
7 years ago
3.0.0-pre.23
7 years ago
3.0.0-pre.22
7 years ago
3.0.0-pre.21
7 years ago
3.0.0-pre.20
7 years ago
3.0.0-pre.19
7 years ago
3.0.0-pre.18
7 years ago
3.0.0-pre.17
7 years ago
3.0.0-pre.16
7 years ago
3.0.0-pre.15
8 years ago
3.0.0-pre.14
8 years ago
3.0.0-pre.13
8 years ago
3.0.0-pre.12
8 years ago
3.0.0-pre.11
8 years ago
3.0.0-pre.10
8 years ago
3.0.0-pre.8
8 years ago
3.0.0-pre.7
8 years ago
3.0.0-pre.6
8 years ago
3.0.0-pre.4
8 years ago
3.0.0-pre.3
8 years ago
3.0.0-pre.2
8 years ago
3.0.0-pre.1
8 years ago
1.0.7-pre.3
9 years ago
1.0.7-pre.2
9 years ago
1.0.7-pre.1
9 years ago
0.0.4
9 years ago
0.0.3
10 years ago
0.0.1
10 years ago