@paypal/checkout-components 5.0.206 → 5.0.207
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/CHANGELOG.md +6 -0
- package/dist/button.js +1 -1
- package/globals.js +2 -2
- package/package.json +13 -13
- package/src/funding/applepay/template.jsx +1 -1
- package/src/funding/card/config.jsx +1 -1
- package/src/funding/common.jsx +1 -1
- package/src/funding/config.js +1 -1
- package/src/funding/content.jsx +1 -1
- package/src/funding/credit/config.jsx +1 -1
- package/src/funding/ideal/config.jsx +1 -1
- package/src/funding/paylater/config.jsx +1 -1
- package/src/funding/paypal/template.jsx +1 -1
- package/src/funding/venmo/template.jsx +1 -1
- package/src/interface/button.js +1 -1
- package/src/lib/security.js +2 -2
- package/src/lib/session.js +1 -1
- package/src/marks/component.jsx +3 -3
- package/src/marks/template.jsx +2 -2
- package/src/ui/buttons/button.jsx +2 -2
- package/src/ui/buttons/buttonDesigns/control.jsx +1 -1
- package/src/ui/buttons/buttonDesigns/divideLogoAnimation.jsx +1 -1
- package/src/ui/buttons/buttonDesigns/index.js +1 -1
- package/src/ui/buttons/buttonDesigns/inlineLogoTextDesign.jsx +1 -1
- package/src/ui/buttons/buttonDesigns/script.jsx +1 -1
- package/src/ui/buttons/buttonDesigns/types.js +1 -1
- package/src/ui/buttons/buttons.jsx +2 -2
- package/src/ui/buttons/content.jsx +1 -1
- package/src/ui/buttons/menu-button/menu-button.jsx +1 -1
- package/src/ui/buttons/poweredBy.jsx +1 -1
- package/src/ui/buttons/props.js +4 -4
- package/src/ui/buttons/script.jsx +1 -1
- package/src/ui/buttons/spinner.jsx +1 -1
- package/src/ui/buttons/style.jsx +1 -1
- package/src/ui/buttons/styles/responsive.js +1 -1
- package/src/ui/buttons/tagline.jsx +1 -1
- package/src/ui/chevron.jsx +1 -1
- package/src/ui/loading.jsx +1 -1
- package/src/ui/text/text.jsx +1 -1
- package/src/ui/tracking.jsx +1 -1
- package/src/zoid/buttons/component.jsx +4 -4
- package/src/zoid/buttons/container.jsx +3 -3
- package/src/zoid/buttons/prerender.jsx +4 -4
- package/src/zoid/buttons/util.js +1 -1
- package/src/zoid/card-fields/component.jsx +5 -5
- package/src/zoid/card-fields/prerender.jsx +1 -1
- package/src/zoid/card-form/component.js +4 -4
- package/src/zoid/checkout/component.jsx +4 -4
- package/src/zoid/checkout/hacks.js +1 -1
- package/src/zoid/checkout/props.js +1 -1
- package/src/zoid/installments/component.jsx +3 -3
- package/src/zoid/menu/component.jsx +2 -2
- package/src/zoid/modal/component.jsx +3 -3
- package/src/zoid/payment-fields/component.jsx +3 -3
- package/src/zoid/payment-fields/container.jsx +3 -3
- package/src/zoid/payment-fields/prerender.jsx +1 -1
- package/src/zoid/qr-code/component.jsx +2 -2
- package/src/zoid/qr-code/container.jsx +3 -3
- package/src/zoid/qr-code/prerender.jsx +2 -2
- package/src/zoid/wallet/component.jsx +4 -4
- package/src/zoid/wallet/container.jsx +3 -3
- package/src/zoid/wallet/prerender.jsx +1 -1
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint max-lines: 0 */
|
|
4
4
|
|
|
5
5
|
import { getLogger, getPayPalDomainRegex, getSDKMeta, getPayPalDomain } from '@paypal/sdk-client/src';
|
|
6
|
-
import { create, EVENT, type ZoidComponent } from 'zoid/src';
|
|
7
|
-
import { inlineMemoize, destroyElement, toCSS } from 'belter/src';
|
|
8
|
-
import { node, dom } from 'jsx-pragmatic/src';
|
|
6
|
+
import { create, EVENT, type ZoidComponent } from '@krakenjs/zoid/src';
|
|
7
|
+
import { inlineMemoize, destroyElement, toCSS } from '@krakenjs/belter/src';
|
|
8
|
+
import { node, dom } from '@krakenjs/jsx-pragmatic/src';
|
|
9
9
|
|
|
10
10
|
import { type ModalProps } from './props';
|
|
11
11
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
/* eslint max-lines: 0 */
|
|
4
4
|
|
|
5
|
-
import { node, dom } from 'jsx-pragmatic/src';
|
|
5
|
+
import { node, dom } from '@krakenjs/jsx-pragmatic/src';
|
|
6
6
|
import { getLogger, getPayPalDomainRegex, getSDKMeta, getPayPalDomain, getClientID,
|
|
7
7
|
getCorrelationID, getSessionID, getEnv, getBuyerCountry, getLocale, getPartnerAttributionID } from '@paypal/sdk-client/src';
|
|
8
|
-
import { create, type ZoidComponent } from 'zoid/src';
|
|
9
|
-
import { inlineMemoize, uniqueID } from 'belter/src';
|
|
8
|
+
import { create, type ZoidComponent } from '@krakenjs/zoid/src';
|
|
9
|
+
import { inlineMemoize, uniqueID } from '@krakenjs/belter/src';
|
|
10
10
|
|
|
11
11
|
import { storageState, sessionState } from '../../lib';
|
|
12
12
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { destroyElement, toCSS, type EventEmitterType } from 'belter/src';
|
|
5
|
-
import { node, type ChildType } from 'jsx-pragmatic/src';
|
|
6
|
-
import { EVENT } from 'zoid/src';
|
|
4
|
+
import { destroyElement, toCSS, type EventEmitterType } from '@krakenjs/belter/src';
|
|
5
|
+
import { node, type ChildType } from '@krakenjs/jsx-pragmatic/src';
|
|
6
|
+
import { EVENT } from '@krakenjs/zoid/src';
|
|
7
7
|
|
|
8
8
|
const CLASS = {
|
|
9
9
|
VISIBLE: 'visible',
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { inlineMemoize, uniqueID } from 'belter/src';
|
|
5
|
-
import { create, type ZoidComponent } from 'zoid/src';
|
|
4
|
+
import { inlineMemoize, uniqueID } from '@krakenjs/belter/src';
|
|
5
|
+
import { create, type ZoidComponent } from '@krakenjs/zoid/src';
|
|
6
6
|
import { getLogger, getPayPalDomainRegex, getPayPalDomain, getCSPNonce, getSDKMeta, getDebug, getEnv, getSessionID, getLocale, getClientID, getCorrelationID, getBuyerCountry } from '@paypal/sdk-client/src';
|
|
7
7
|
|
|
8
8
|
import { containerTemplate } from './container';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { destroyElement, type EventEmitterType } from 'belter/src';
|
|
5
|
-
import { EVENT, type RenderOptionsType } from 'zoid/src';
|
|
6
|
-
import { node, dom, type ChildType } from 'jsx-pragmatic/src';
|
|
4
|
+
import { destroyElement, type EventEmitterType } from '@krakenjs/belter/src';
|
|
5
|
+
import { EVENT, type RenderOptionsType } from '@krakenjs/zoid/src';
|
|
6
|
+
import { node, dom, type ChildType } from '@krakenjs/jsx-pragmatic/src';
|
|
7
7
|
|
|
8
8
|
import { type QRCodeProps } from './types';
|
|
9
9
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { type RenderOptionsType } from 'zoid/src';
|
|
5
|
-
import { node, dom } from 'jsx-pragmatic/src';
|
|
4
|
+
import { type RenderOptionsType } from '@krakenjs/zoid/src';
|
|
5
|
+
import { node, dom } from '@krakenjs/jsx-pragmatic/src';
|
|
6
6
|
import { SpinnerPage } from '@paypal/common-components/src';
|
|
7
7
|
|
|
8
8
|
import { type QRCodeProps } from './types';
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
/* eslint max-lines: 0 */
|
|
4
4
|
|
|
5
|
-
import { node, dom } from 'jsx-pragmatic/src';
|
|
5
|
+
import { node, dom } from '@krakenjs/jsx-pragmatic/src';
|
|
6
6
|
import {
|
|
7
7
|
getLogger, getPayPalDomainRegex, getSDKMeta, getPayPalDomain, getClientID, getUserAccessToken,
|
|
8
8
|
getClientAccessToken, getUserIDToken, getLocale, getPartnerAttributionID, getCorrelationID, getSessionID,
|
|
9
9
|
getEnv, getStageHost, getAPIStageHost, getPlatform, getCurrency, getIntent, getBuyerCountry, getCommit, getVault,
|
|
10
10
|
getMerchantID, getCSPNonce, getDebug, getMerchantRequestedPopupsDisabled
|
|
11
11
|
} from '@paypal/sdk-client/src';
|
|
12
|
-
import { create, type ZoidComponent } from 'zoid/src';
|
|
13
|
-
import { inlineMemoize, memoize, uniqueID } from 'belter/src';
|
|
14
|
-
import { ZalgoPromise } from 'zalgo-promise/src';
|
|
12
|
+
import { create, type ZoidComponent } from '@krakenjs/zoid/src';
|
|
13
|
+
import { inlineMemoize, memoize, uniqueID } from '@krakenjs/belter/src';
|
|
14
|
+
import { ZalgoPromise } from '@krakenjs/zalgo-promise/src';
|
|
15
15
|
import { FUNDING } from '@paypal/sdk-constants/src';
|
|
16
16
|
import { getRefinedFundingEligibility, rememberFunding } from '@paypal/funding-components/src';
|
|
17
17
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { destroyElement, toCSS, type EventEmitterType } from 'belter/src';
|
|
5
|
-
import { node, type ChildType } from 'jsx-pragmatic/src';
|
|
6
|
-
import { EVENT } from 'zoid/src';
|
|
4
|
+
import { destroyElement, toCSS, type EventEmitterType } from '@krakenjs/belter/src';
|
|
5
|
+
import { node, type ChildType } from '@krakenjs/jsx-pragmatic/src';
|
|
6
|
+
import { EVENT } from '@krakenjs/zoid/src';
|
|
7
7
|
|
|
8
8
|
const CLASS = {
|
|
9
9
|
VISIBLE: 'visible',
|