Elements Options
You can customize the behavior of your Elements using the following options:
Attribute | Required | Type | Updatable | Eligible Elements | Description |
---|---|---|---|---|---|
style | false | object | true | All | Object used to customize the element appearance |
disabled | false | boolean | true | All | Boolean used to set the disabled attribute of the input(s) |
readOnly | false | boolean | true | All | Boolean used to set the readonly attribute of the input(s) |
inputMode | false | string | true | All | String used to set the inputmode attribute of the input(s) |
autoComplete | false | string | true | All | String used to set the autocomplete attribute of the input(s). Expected values are: off (default), or on . |
targetId | true | string | false | text cardNumber cardExpirationDate cardVerificationCode | String used to identify your element |
placeholder | false | string | true | text cardNumber cardExpirationDate cardVerificationCode | String used to customize the placeholder attribute of the input |
aria-label | false | string | true | text cardNumber cardExpirationDate cardVerificationCode | String used to customize the aria-label attribute of the input |
mask | false | array | false | text | Array used to restrict and fill user input using regex and static strings |
transform | false | RegExp | true | text | RegExp object or array used to modify user input before tokenization |
password | false | boolean | true | text | Boolean used to set the text element input type as password |
iconPosition | false | string | true | cardNumber | String used to determine the position of the card element icon. Expected values are: left (default), right or none . |
cardBrand | false | string | true | cardVerificationCode | Brand identifier used to determine proper input format and default placeholder/aria-label |
validateOnChange | false | boolean | false | cardNumber cardExpirationDate cardElement cardVerificationCode | Switches from default validation onBlur to onChange . |
value | false | string | true | All | Sets a static value for the element input. |
enableCopy | false | boolean | true | cardNumber cardExpirationDate cardElement cardVerificationCode | Renders a button to allow users to copy the value of the element to the browser's clipboard without your application ever interacting with the data. |
validation | false | RegExp | true | text | [RegExp object] used to validate user input (on match) before tokenization |
onBlur
to onChange
will change the sequence and increase the number of events. When running validations onChange
, elements emit events whenever an error
occurs or if the input's value
changes. Default validation onBlur
triggers an event every time one of the properties in the changeEvent
changes.onBlur
, you may need to force the blur events to trigger the validation due to framework-specific limitations.mask
option cannot be used when the password
option is set as true
.enableCopy
is available for Chromium-based browsers only; we're actively working on multi-browser support. Have feedback or questions? Feel free to join us in our Slack community.autoComplete
option is turned off by default, contrary to the default browser behavior which is on.value
attribute instead of user input may have compliance implications.Style
Elements are styled through the ElementStyle
object, which maps state variants and miscellaneous.
var cardElement = BasisTheory.createElement("card", {
style: {
fonts: ["https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"],
base: {
color: "#fff",
fontWeight: 500,
fontFamily: '"Inter"',
fontSize: "16px",
fontSmooth: "antialiased",
"::placeholder": {
color: "#6b7294",
},
":disabled": {
backgroundColor: "#f0f0f4",
},
},
invalid: {
color: "#ffc7ee",
},
complete: {
color: "#1ad1db",
},
},
});
Attribute | Required | Type | Description |
---|---|---|---|
fonts | false | array | Array of Google Fonts URLs |
base | false | object | Base variant style - all other variant styles inherit from this one |
complete | false | object | Variant style applied when the element input is complete |
empty | false | object | Variant style applied when the element input has no value |
invalid | false | object | Variant style applied when the element input has invalid value |
You can customize the following pseudo-classes and pseudo-elements inside each variant using a nested object:
:hover
:focus
:disabled
::placeholder
::selection
Here is a complete list of the supported CSS properties:
- backgroundColor
- color
- fontFamily
- fontSize
- fontSmooth (we replace this with the user-agent alternate names automatically)
- fontStyle
- fontVariant
- fontWeight
- lineHeight
- letterSpacing
- textAlign
- padding
- textDecoration
- textShadow
- textTransform
Mask
Text elements can restrict and fill user input by using the mask
attribute. It consists of an array of RegExp
objects and strings, used to restrict and fill input, respectively. The position of each item in the mask array
corresponds to the restriction or fill used for that input's position. The length of the array determines how long an
input is allowed to be. For example, the mask for a US based phone number shown on the right will have the following
rules:
- The input must be at most 13 characters long
- Only digits are allowed in the 2-4, 6-8, 10-13 positions
- '(' will be filled in the 1 position
- ')' will be filled in the 5 position
- '-' will be filled in the 8 position
The mask will be displayed as the user is typing, and will be used as the value for tokenization performed with that text element. If the value does not satisfy the mask in its entirety, the field is considered incomplete. This is reflected in the on change events and will fail validation before tokenization.
var phoneNumberElement = BasisTheory.createElement("text", {
targetId: "myPhoneNumberElement",
mask: ["(", /\d/, /\d/, /\d/, ")", /\d/, /\d/, /\d/, "-", /\d/, /\d/, /\d/, /\d/],
});
Transform
Text elements allow you to modify user input before tokenization through the
transform
attribute. It can be set as a RegExp
object, an array with a RegExp
object, or an array with a RegExp
object at the first index and a string at the second. It works by making use of the String replace
function. The RegExp
object and string defined will be used as the first and second argument for the replace
function,
respectively. If no string is defined, an empty string will be used as the second argument. For instance, the mask for a
US based phone number shown on the right will modify user input to look like this: (123)456-7890
. The transform
attribute, in this case, will modify the user input to remove (
, )
, and -
from the input. The resulting value is
1234567890
which will be what gets tokenized.
var phoneNumberElement = BasisTheory.createElement("text", {
targetId: "myPhoneNumberElement",
mask: ["(", /\d/, /\d/, /\d/, ")", /\d/, /\d/, /\d/, "-", /\d/, /\d/, /\d/, /\d/],
transform: /[()-]/,
});
RegExp
object flags defined in the transform
and set gu
as the flags.Card Brands
Supported card brands are defined in the table below:
Brand | Identifier | Card Number Digits | CVC Digits |
---|---|---|---|
American Express | american-express | 15 | 4 |
Diners Club | diners-club | 14, 16, 19 | 3 |
Discover | discover | 16, 19 | 3 |
Elo | elo | 16 | 3 |
Hiper | hiper | 16 | 3 |
HiperCard | hipercard | 16 | 3 |
JCB | jcb | 16-19 | 3 |
Maestro | maestro | 12-19 | 3 |
Mastercard | mastercard | 16 | 3 |
MIR | mir | 16-19 | 3 |
UnionPay | unionpay | 14-19 | 3 |
Visa | visa | 16, 18, 19 | 3 |
Card Number Digits
column documents all acceptable card number lengths for the brand (in number of digits, excluding formatting characters).