@bigcommerce/checkout-sdk 1.743.2 → 1.744.0

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/docs/README.md CHANGED
@@ -223,9 +223,11 @@
223
223
  - [CreditCardInstrument](interfaces/CreditCardInstrument.md)
224
224
  - [CreditCardPaymentInitializeOptions_2](interfaces/CreditCardPaymentInitializeOptions_2.md)
225
225
  - [CreditCardPlaceHolder](interfaces/CreditCardPlaceHolder.md)
226
+ - [CssFontSource](interfaces/CssFontSource.md)
226
227
  - [CssProperties](interfaces/CssProperties.md)
227
228
  - [Currency](interfaces/Currency.md)
228
229
  - [CustomError](interfaces/CustomError.md)
230
+ - [CustomFontSource](interfaces/CustomFontSource.md)
229
231
  - [CustomItem](interfaces/CustomItem.md)
230
232
  - [Customer](interfaces/Customer.md)
231
233
  - [CustomerAccountRequestBody](interfaces/CustomerAccountRequestBody.md)
@@ -439,6 +441,7 @@
439
441
  - [StoredCardHostedFormBillingAddress](interfaces/StoredCardHostedFormBillingAddress.md)
440
442
  - [StoredCardHostedFormData](interfaces/StoredCardHostedFormData.md)
441
443
  - [StoredCardHostedFormInstrumentFields](interfaces/StoredCardHostedFormInstrumentFields.md)
444
+ - [StripeAppearanceOptions](interfaces/StripeAppearanceOptions.md)
442
445
  - [StripeCustomerEvent](interfaces/StripeCustomerEvent.md)
443
446
  - [StripeElementCSSProperties](interfaces/StripeElementCSSProperties.md)
444
447
  - [StripeElementClasses](interfaces/StripeElementClasses.md)
@@ -590,9 +593,10 @@
590
593
  - [PaymentInstrument](README.md#paymentinstrument)
591
594
  - [PaymentProviderCustomer](README.md#paymentprovidercustomer)
592
595
  - [ReadableCheckoutStore](README.md#readablecheckoutstore)
596
+ - [StripeAppearanceValues](README.md#stripeappearancevalues)
597
+ - [StripeCustomFont](README.md#stripecustomfont)
593
598
  - [StripeElementOptions](README.md#stripeelementoptions)
594
599
  - [StripeEventType](README.md#stripeeventtype)
595
- - [StripeUPEAppearanceValues](README.md#stripeupeappearancevalues)
596
600
  - [WithGooglePayButtonInitializeOptions](README.md#withgooglepaybuttoninitializeoptions)
597
601
  - [WithGooglePayCustomerInitializeOptions](README.md#withgooglepaycustomerinitializeoptions)
598
602
  - [WithGooglePayPaymentInitializeOptions](README.md#withgooglepaypaymentinitializeoptions)
@@ -946,21 +950,27 @@ ___
946
950
 
947
951
  ___
948
952
 
949
- ### StripeElementOptions
953
+ ### StripeAppearanceValues
950
954
 
951
- Ƭ **StripeElementOptions**: [`CardElementOptions`](interfaces/CardElementOptions.md) \| [`CardExpiryElementOptions`](interfaces/CardExpiryElementOptions.md) \| [`CardNumberElementOptions`](interfaces/CardNumberElementOptions.md) \| [`CardCvcElementOptions`](interfaces/CardCvcElementOptions.md) \| [`IdealElementOptions`](interfaces/IdealElementOptions.md) \| [`IbanElementOptions`](interfaces/IbanElementOptions.md) \| [`ZipCodeElementOptions`](interfaces/ZipCodeElementOptions.md)
955
+ Ƭ **StripeAppearanceValues**: `string` \| `string`[] \| `number` \| `undefined`
952
956
 
953
957
  ___
954
958
 
955
- ### StripeEventType
959
+ ### StripeCustomFont
956
960
 
957
- Ƭ **StripeEventType**: [`StripeShippingEvent`](interfaces/StripeShippingEvent.md) \| [`StripeCustomerEvent`](interfaces/StripeCustomerEvent.md)
961
+ Ƭ **StripeCustomFont**: [`CssFontSource`](interfaces/CssFontSource.md) \| [`CustomFontSource`](interfaces/CustomFontSource.md)
962
+
963
+ ___
964
+
965
+ ### StripeElementOptions
966
+
967
+ Ƭ **StripeElementOptions**: [`CardElementOptions`](interfaces/CardElementOptions.md) \| [`CardExpiryElementOptions`](interfaces/CardExpiryElementOptions.md) \| [`CardNumberElementOptions`](interfaces/CardNumberElementOptions.md) \| [`CardCvcElementOptions`](interfaces/CardCvcElementOptions.md) \| [`IdealElementOptions`](interfaces/IdealElementOptions.md) \| [`IbanElementOptions`](interfaces/IbanElementOptions.md) \| [`ZipCodeElementOptions`](interfaces/ZipCodeElementOptions.md)
958
968
 
959
969
  ___
960
970
 
961
- ### StripeUPEAppearanceValues
971
+ ### StripeEventType
962
972
 
963
- Ƭ **StripeUPEAppearanceValues**: `string` \| `string`[] \| `number` \| `undefined`
973
+ Ƭ **StripeEventType**: [`StripeShippingEvent`](interfaces/StripeShippingEvent.md) \| [`StripeCustomerEvent`](interfaces/StripeCustomerEvent.md)
964
974
 
965
975
  ___
966
976
 
@@ -0,0 +1,22 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / CssFontSource
2
+
3
+ # Interface: CssFontSource
4
+
5
+ This object is used to pass custom fonts when creating an [Elements](https://stripe.com/docs/js/elements_object/create) object.
6
+
7
+ ## Table of contents
8
+
9
+ ### Properties
10
+
11
+ - [cssSrc](CssFontSource.md#csssrc)
12
+
13
+ ## Properties
14
+
15
+ ### cssSrc
16
+
17
+ • **cssSrc**: `string`
18
+
19
+ A relative or absolute URL pointing to a CSS file with [@font-face](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face) definitions, for example:
20
+ `https://fonts.googleapis.com/css?family=Open+Sans`
21
+ Note that if you are using a [content security policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) (CSP),
22
+ [additional directives](https://stripe.com/docs/security#content-security-policy) may be necessary.
@@ -0,0 +1,65 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / CustomFontSource
2
+
3
+ # Interface: CustomFontSource
4
+
5
+ This object is used to pass custom fonts when creating an [Elements](https://stripe.com/docs/js/elements_object/create) object.
6
+
7
+ ## Table of contents
8
+
9
+ ### Properties
10
+
11
+ - [display](CustomFontSource.md#display)
12
+ - [family](CustomFontSource.md#family)
13
+ - [src](CustomFontSource.md#src)
14
+ - [style](CustomFontSource.md#style)
15
+ - [unicodeRange](CustomFontSource.md#unicoderange)
16
+ - [weight](CustomFontSource.md#weight)
17
+
18
+ ## Properties
19
+
20
+ ### display
21
+
22
+ • `Optional` **display**: `string`
23
+
24
+ A valid [font-display](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display) value.
25
+
26
+ ___
27
+
28
+ ### family
29
+
30
+ • **family**: `string`
31
+
32
+ The name to give the font.
33
+
34
+ ___
35
+
36
+ ### src
37
+
38
+ • **src**: `string`
39
+
40
+ A valid [src](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src) value pointing to your
41
+ custom font file. This is usually (though not always) a link to a file with a .woff , .otf, or .svg suffix.
42
+
43
+ ___
44
+
45
+ ### style
46
+
47
+ • `Optional` **style**: `string`
48
+
49
+ One of normal, italic, oblique. Defaults to normal.
50
+
51
+ ___
52
+
53
+ ### unicodeRange
54
+
55
+ • `Optional` **unicodeRange**: `string`
56
+
57
+ A valid [unicode-range](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/unicode-range) value.
58
+
59
+ ___
60
+
61
+ ### weight
62
+
63
+ • `Optional` **weight**: `string`
64
+
65
+ A valid [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight). Note that this is a string, not a number.
@@ -0,0 +1,24 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / StripeAppearanceOptions
2
+
3
+ # Interface: StripeAppearanceOptions
4
+
5
+ All available options are here https://stripe.com/docs/stripe-js/appearance-api#supported-css-properties
6
+
7
+ ## Table of contents
8
+
9
+ ### Properties
10
+
11
+ - [rules](StripeAppearanceOptions.md#rules)
12
+ - [variables](StripeAppearanceOptions.md#variables)
13
+
14
+ ## Properties
15
+
16
+ ### rules
17
+
18
+ • `Optional` **rules**: `Record`<`string`, `Record`<`string`, [`StripeAppearanceValues`](../README.md#stripeappearancevalues)\>\>
19
+
20
+ ___
21
+
22
+ ### variables
23
+
24
+ • `Optional` **variables**: `Record`<`string`, [`StripeAppearanceValues`](../README.md#stripeappearancevalues)\>
@@ -27,9 +27,10 @@ service.initializePayment({
27
27
 
28
28
  ### Properties
29
29
 
30
+ - [appearance](StripeOCSPaymentInitializeOptions.md#appearance)
30
31
  - [containerId](StripeOCSPaymentInitializeOptions.md#containerid)
32
+ - [fonts](StripeOCSPaymentInitializeOptions.md#fonts)
31
33
  - [layout](StripeOCSPaymentInitializeOptions.md#layout)
32
- - [style](StripeOCSPaymentInitializeOptions.md#style)
33
34
 
34
35
  ### Methods
35
36
 
@@ -41,6 +42,14 @@ service.initializePayment({
41
42
 
42
43
  ## Properties
43
44
 
45
+ ### appearance
46
+
47
+ • `Optional` **appearance**: [`StripeAppearanceOptions`](StripeAppearanceOptions.md)
48
+
49
+ Stripe OCS appearance options for styling the accordion.
50
+
51
+ ___
52
+
44
53
  ### containerId
45
54
 
46
55
  • **containerId**: `string`
@@ -49,19 +58,19 @@ The location to insert the credit card number form field.
49
58
 
50
59
  ___
51
60
 
52
- ### layout
61
+ ### fonts
53
62
 
54
- • `Optional` **layout**: `Record`<`string`, `string` \| `number` \| `boolean`\>
63
+ • `Optional` **fonts**: [`StripeCustomFont`](../README.md#stripecustomfont)[]
55
64
 
56
- Stripe OCS layout options
65
+ Stripe OCS fonts options for styling the accordion.
57
66
 
58
67
  ___
59
68
 
60
- ### style
69
+ ### layout
61
70
 
62
- • `Optional` **style**: `Record`<`string`, [`StripeUPEAppearanceValues`](../README.md#stripeupeappearancevalues)\>
71
+ • `Optional` **layout**: `Record`<`string`, `string` \| `number` \| `boolean`\>
63
72
 
64
- Checkout styles from store theme
73
+ Stripe OCS layout options
65
74
 
66
75
  ## Methods
67
76
 
@@ -47,7 +47,7 @@ ___
47
47
 
48
48
  ### style
49
49
 
50
- • `Optional` **style**: `Record`<`string`, [`StripeUPEAppearanceValues`](../README.md#stripeupeappearancevalues)\>
50
+ • `Optional` **style**: `Record`<`string`, [`StripeAppearanceValues`](../README.md#stripeappearancevalues)\>
51
51
 
52
52
  Checkout styles from store theme
53
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigcommerce/checkout-sdk",
3
- "version": "1.743.2",
3
+ "version": "1.744.0",
4
4
  "description": "BigCommerce Checkout JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "main": "dist/checkout-sdk.js",