@globalpayments/js 1.9.25 → 1.9.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/types/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.9.
|
|
1
|
+
declare const _default: "1.9.29";
|
|
2
2
|
export default _default;
|
|
@@ -11,6 +11,7 @@ export interface IUIFormField {
|
|
|
11
11
|
title?: string;
|
|
12
12
|
value?: string;
|
|
13
13
|
amount?: string;
|
|
14
|
+
fieldOptions?: any;
|
|
14
15
|
}
|
|
15
16
|
export declare const fieldTypeAutocompleteMap: IDictionary;
|
|
16
17
|
/**
|
|
@@ -43,8 +44,9 @@ export declare class IframeField extends EventEmitter {
|
|
|
43
44
|
* @param name Field type
|
|
44
45
|
* @param type Type of element
|
|
45
46
|
* @param enableAutocomplete Whether autocomplete should be enabled
|
|
47
|
+
* @param fieldOptions Field Options
|
|
46
48
|
*/
|
|
47
|
-
static createField(id: string, name: string, type: string, enableAutocomplete: boolean): void;
|
|
49
|
+
static createField(id: string, name: string, type: string, enableAutocomplete: boolean, fieldOptions?: any): void;
|
|
48
50
|
/**
|
|
49
51
|
* Appends a hidden input to the given destination to accept
|
|
50
52
|
* full autocomplete/auto-fill data from the browser. The
|