@basis-theory/basis-theory-js
Advanced tools
Comparing version 1.79.6 to 1.80.0
{ | ||
"name": "@basis-theory/basis-theory-js", | ||
"version": "1.79.6", | ||
"version": "1.80.0", | ||
"repository": "https://github.com/Basis-Theory/basis-theory-js", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -15,2 +15,3 @@ import { AutoCompleteValue, DataElementReference } from './shared'; | ||
disabled?: boolean; | ||
readOnly?: boolean; | ||
targetId?: string; | ||
@@ -37,3 +38,3 @@ mask?: (RegExp | string)[]; | ||
} | ||
type CustomizableElementOptions = Pick<ElementOptions, 'style' | 'disabled' | 'validateOnChange' | 'enableCopy'> & AutoCompleteOption; | ||
type CustomizableElementOptions = Pick<ElementOptions, 'style' | 'disabled' | 'readOnly' | 'validateOnChange' | 'enableCopy'> & AutoCompleteOption; | ||
type ElementValueType = 'static' | 'reference'; | ||
@@ -40,0 +41,0 @@ interface CardElementValue<T extends ElementValueType> { |
156492
3388