@globalpayments/js 1.9.19 → 1.9.20

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalpayments/js",
3
- "version": "1.9.19",
3
+ "version": "1.9.20",
4
4
  "author": "Heartland Developer Portal <developers@heartland.us>",
5
5
  "license": "GPL-2.0",
6
6
  "repository": {
@@ -29,7 +29,7 @@ export interface InstallmentsContext {
29
29
  explorePlans: () => void;
30
30
  selectTerm: (i: number) => void;
31
31
  changePaymentMethod: () => void;
32
- pay: (e: Event) => void;
32
+ pay: () => void;
33
33
  updateContainerContent: () => void;
34
34
  }
35
35
  export interface InstallmentStepDefinition {
@@ -38,6 +38,10 @@ export declare const fieldStyles: (assetBaseUrl: string) => {
38
38
  border: string;
39
39
  outline: string;
40
40
  };
41
+ "#secure-payment-field:hover": {
42
+ border: string;
43
+ outline: string;
44
+ };
41
45
  "#secure-payment-field[type=button]": {
42
46
  "background-color": string;
43
47
  color: string;
@@ -826,6 +830,10 @@ export declare const parentStyles: (assetBaseUrl: string) => {
826
830
  border: string;
827
831
  outline: string;
828
832
  };
833
+ ".secure-payment-form .tooltip:hover": {
834
+ border: string;
835
+ outline: string;
836
+ };
829
837
  ".secure-payment-form .tooltip-content": {
830
838
  visibility: string;
831
839
  width: string;
@@ -1,2 +1,2 @@
1
- declare const _default: "1.9.19";
1
+ declare const _default: "1.9.20";
2
2
  export default _default;
@@ -190,6 +190,10 @@ export declare const fieldStyles: () => {
190
190
  border: string;
191
191
  outline: string;
192
192
  };
193
+ "#secure-payment-field:hover": {
194
+ border: string;
195
+ outline: string;
196
+ };
193
197
  "#secure-payment-field[type=button]": {
194
198
  "background-color": string;
195
199
  color: string;
@@ -229,6 +233,9 @@ export declare const fieldStyles: () => {
229
233
  right: string;
230
234
  top: string;
231
235
  width: string;
236
+ /**
237
+ * Represents logic surrounding a group of hosted fields.
238
+ */
232
239
  height: string;
233
240
  "margin-top": string;
234
241
  "background-size": string;
@@ -248,16 +255,6 @@ export declare const fieldStyles: () => {
248
255
  "img.card-number-icon.card-type-visa": {
249
256
  "background-image": string;
250
257
  };
251
- /**
252
- * Sets an event listener for an event type
253
- *
254
- * @param fieldTypeOrEventName The field type on which the listener should
255
- * be applied, or the type of event that should trigger the listener
256
- * @param eventNameOrListener The type of event that should trigger the
257
- * listener, or the listener function
258
- * @param listener The listener function when both field type and event type
259
- * are provided
260
- */
261
258
  "img.card-number-icon.card-type-diners": {
262
259
  "background-image": string;
263
260
  };
@@ -1555,6 +1552,10 @@ export declare const parentStyles: () => {
1555
1552
  border: string;
1556
1553
  outline: string;
1557
1554
  };
1555
+ ".secure-payment-form .tooltip:hover": {
1556
+ border: string;
1557
+ outline: string;
1558
+ };
1558
1559
  ".secure-payment-form .tooltip-content": {
1559
1560
  visibility: string;
1560
1561
  width: string;
@@ -57,7 +57,7 @@ export declare class IframeField extends EventEmitter {
57
57
  * @param name Field name to be used
58
58
  * @param autocomplete Value for field's autocomplete attribute
59
59
  */
60
- static createAutocompleteField(destination: Node, id: string, type: string, name: string, autocomplete: string): void;
60
+ static createAutocompleteField(destination: Node, id: string, type: string, name: string, label: string, autocomplete: string): void;
61
61
  /**
62
62
  * addFrameFocusEvent
63
63
  *