@rebilly/framepay-react 6.39.0 → 6.40.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/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
## [6.
|
1
|
+
## [6.40.0](https://github.com/Rebilly/rebilly/compare/framepay-react-v6.39.0...framepay-react-v6.40.0) (2024-08-20)
|
2
2
|
|
3
3
|
|
4
4
|
### Features
|
5
5
|
|
6
|
-
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#7083](https://github.com/Rebilly/rebilly/issues/7083)) ([726d5ce](https://github.com/Rebilly/rebilly/commit/726d5cedb649c2701366667eca8ad05cd17d1f61))
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import { FramePayApplePayProps, FramePayBankProps, FramePayCardProps, FramePayComponentProps, FramePayGooglePayProps, FramePayIBANProps, FramePayPaypalProps } from '../../../types/injector';
|
2
|
+
import type { FramePayApplePayProps, FramePayBankProps, FramePayCardProps, FramePayComponentProps, FramePayGooglePayProps, FramePayIBANProps, FramePayPaypalProps } from '../../../types/injector';
|
3
3
|
export declare function withFramePay<OriginalProps extends object>(WrappedComponent: React.ComponentType<OriginalProps & FramePayComponentProps>): {
|
4
4
|
new (props: OriginalProps | Readonly<OriginalProps>): {
|
5
5
|
render(): JSX.Element;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { FramepayApi } from '../../types/rebilly/api';
|
1
|
+
import type { FramepayApi } from '../../types/rebilly/api';
|
2
2
|
export default function getFramepayApi(): FramepayApi;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@rebilly/framepay-react",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.40.0",
|
4
4
|
"description": "A React wrapper for Rebilly's FramePay offering out-of-the-box support for Redux and other common React features",
|
5
5
|
"main": "build/index.js",
|
6
6
|
"author": "Rebilly",
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
4
4
|
|
5
5
|
import { withFramePay } from '../..';
|
6
6
|
|
7
|
-
import { FramePayComponentProps } from '../../../types/injector';
|
7
|
+
import type { FramePayComponentProps } from '../../../types/injector';
|
8
8
|
|
9
9
|
import { ContextProvider } from '../context';
|
10
10
|
|
@@ -9,7 +9,7 @@ import GooglePayElementComponent from './elements/googlepay-element';
|
|
9
9
|
import IBANElementComponent from './elements/iban-element';
|
10
10
|
import PaypalElementComponent from './elements/paypal-element';
|
11
11
|
|
12
|
-
import {
|
12
|
+
import type {
|
13
13
|
FramePayApplePayProps,
|
14
14
|
FramePayBankProps,
|
15
15
|
FramePayCardProps,
|