@rebilly/framepay-react 13.35.0 → 13.36.1
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 +1 -6
- package/build/lib/components/injector.d.ts +160 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
## [13.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* **framepay:** Allow setting the payment card type to make single-CVV element validation work correctly ([#16806](https://github.com/Rebilly/rebilly/issues/16806)) ([04090b9](https://github.com/Rebilly/rebilly/commit/04090b9a19e5e4aeabaee821f02d0b382311d1b3))
|
|
1
|
+
## [13.36.1](https://github.com/Rebilly/rebilly/compare/framepay-react-v13.36.0...framepay-react-v13.36.1) (2025-12-23)
|
|
@@ -21,6 +21,26 @@ export declare function withFramePay<OriginalProps extends object>(WrappedCompon
|
|
|
21
21
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
22
22
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
23
23
|
};
|
|
24
|
+
new (props: OriginalProps, context: any): {
|
|
25
|
+
render(): React.JSX.Element;
|
|
26
|
+
context: unknown;
|
|
27
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
28
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
29
|
+
readonly props: Readonly<OriginalProps>;
|
|
30
|
+
state: Readonly<{}>;
|
|
31
|
+
componentDidMount?(): void;
|
|
32
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
33
|
+
componentWillUnmount?(): void;
|
|
34
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
35
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
36
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
37
|
+
componentWillMount?(): void;
|
|
38
|
+
UNSAFE_componentWillMount?(): void;
|
|
39
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
40
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
41
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
42
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
43
|
+
};
|
|
24
44
|
readonly displayName: string;
|
|
25
45
|
contextType?: React.Context<any> | undefined;
|
|
26
46
|
propTypes?: any;
|
|
@@ -46,6 +66,26 @@ export declare function withFramePayCardComponent<OriginalProps extends object>(
|
|
|
46
66
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
47
67
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
48
68
|
};
|
|
69
|
+
new (props: OriginalProps, context: any): {
|
|
70
|
+
render(): React.JSX.Element;
|
|
71
|
+
context: unknown;
|
|
72
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
73
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
74
|
+
readonly props: Readonly<OriginalProps>;
|
|
75
|
+
state: Readonly<{}>;
|
|
76
|
+
componentDidMount?(): void;
|
|
77
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
78
|
+
componentWillUnmount?(): void;
|
|
79
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
80
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
81
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
82
|
+
componentWillMount?(): void;
|
|
83
|
+
UNSAFE_componentWillMount?(): void;
|
|
84
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
85
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
86
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
87
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
88
|
+
};
|
|
49
89
|
readonly displayName: string;
|
|
50
90
|
contextType?: React.Context<any> | undefined;
|
|
51
91
|
propTypes?: any;
|
|
@@ -71,6 +111,26 @@ export declare function withFramePayBankComponent<OriginalProps extends object>(
|
|
|
71
111
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
72
112
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
73
113
|
};
|
|
114
|
+
new (props: OriginalProps, context: any): {
|
|
115
|
+
render(): React.JSX.Element;
|
|
116
|
+
context: unknown;
|
|
117
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
118
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
119
|
+
readonly props: Readonly<OriginalProps>;
|
|
120
|
+
state: Readonly<{}>;
|
|
121
|
+
componentDidMount?(): void;
|
|
122
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
123
|
+
componentWillUnmount?(): void;
|
|
124
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
125
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
126
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
127
|
+
componentWillMount?(): void;
|
|
128
|
+
UNSAFE_componentWillMount?(): void;
|
|
129
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
130
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
131
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
132
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
133
|
+
};
|
|
74
134
|
readonly displayName: string;
|
|
75
135
|
contextType?: React.Context<any> | undefined;
|
|
76
136
|
propTypes?: any;
|
|
@@ -96,6 +156,26 @@ export declare function withFramePayIBANComponent<OriginalProps extends object>(
|
|
|
96
156
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
97
157
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
98
158
|
};
|
|
159
|
+
new (props: OriginalProps, context: any): {
|
|
160
|
+
render(): React.JSX.Element;
|
|
161
|
+
context: unknown;
|
|
162
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
163
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
164
|
+
readonly props: Readonly<OriginalProps>;
|
|
165
|
+
state: Readonly<{}>;
|
|
166
|
+
componentDidMount?(): void;
|
|
167
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
168
|
+
componentWillUnmount?(): void;
|
|
169
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
170
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
171
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
172
|
+
componentWillMount?(): void;
|
|
173
|
+
UNSAFE_componentWillMount?(): void;
|
|
174
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
175
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
176
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
177
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
178
|
+
};
|
|
99
179
|
readonly displayName: string;
|
|
100
180
|
contextType?: React.Context<any> | undefined;
|
|
101
181
|
propTypes?: any;
|
|
@@ -121,6 +201,26 @@ export declare function withFramePayApplePayComponent<OriginalProps extends obje
|
|
|
121
201
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
122
202
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
123
203
|
};
|
|
204
|
+
new (props: OriginalProps, context: any): {
|
|
205
|
+
render(): React.JSX.Element;
|
|
206
|
+
context: unknown;
|
|
207
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
208
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
209
|
+
readonly props: Readonly<OriginalProps>;
|
|
210
|
+
state: Readonly<{}>;
|
|
211
|
+
componentDidMount?(): void;
|
|
212
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
213
|
+
componentWillUnmount?(): void;
|
|
214
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
215
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
216
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
217
|
+
componentWillMount?(): void;
|
|
218
|
+
UNSAFE_componentWillMount?(): void;
|
|
219
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
220
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
221
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
222
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
223
|
+
};
|
|
124
224
|
readonly displayName: string;
|
|
125
225
|
contextType?: React.Context<any> | undefined;
|
|
126
226
|
propTypes?: any;
|
|
@@ -146,6 +246,26 @@ export declare function withFramePaySamsungPayComponent<OriginalProps extends ob
|
|
|
146
246
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
147
247
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
148
248
|
};
|
|
249
|
+
new (props: OriginalProps, context: any): {
|
|
250
|
+
render(): React.JSX.Element;
|
|
251
|
+
context: unknown;
|
|
252
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
253
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
254
|
+
readonly props: Readonly<OriginalProps>;
|
|
255
|
+
state: Readonly<{}>;
|
|
256
|
+
componentDidMount?(): void;
|
|
257
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
258
|
+
componentWillUnmount?(): void;
|
|
259
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
260
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
261
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
262
|
+
componentWillMount?(): void;
|
|
263
|
+
UNSAFE_componentWillMount?(): void;
|
|
264
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
265
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
266
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
267
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
268
|
+
};
|
|
149
269
|
readonly displayName: string;
|
|
150
270
|
contextType?: React.Context<any> | undefined;
|
|
151
271
|
propTypes?: any;
|
|
@@ -171,6 +291,26 @@ export declare function withFramePayGooglePayComponent<OriginalProps extends obj
|
|
|
171
291
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
172
292
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
173
293
|
};
|
|
294
|
+
new (props: OriginalProps, context: any): {
|
|
295
|
+
render(): React.JSX.Element;
|
|
296
|
+
context: unknown;
|
|
297
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
298
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
299
|
+
readonly props: Readonly<OriginalProps>;
|
|
300
|
+
state: Readonly<{}>;
|
|
301
|
+
componentDidMount?(): void;
|
|
302
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
303
|
+
componentWillUnmount?(): void;
|
|
304
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
305
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
306
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
307
|
+
componentWillMount?(): void;
|
|
308
|
+
UNSAFE_componentWillMount?(): void;
|
|
309
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
310
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
311
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
312
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
313
|
+
};
|
|
174
314
|
readonly displayName: string;
|
|
175
315
|
contextType?: React.Context<any> | undefined;
|
|
176
316
|
propTypes?: any;
|
|
@@ -196,6 +336,26 @@ export declare function withFramePayPaypalComponent<OriginalProps extends object
|
|
|
196
336
|
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
197
337
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
198
338
|
};
|
|
339
|
+
new (props: OriginalProps, context: any): {
|
|
340
|
+
render(): React.JSX.Element;
|
|
341
|
+
context: unknown;
|
|
342
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<OriginalProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
343
|
+
forceUpdate(callback?: (() => void) | undefined): void;
|
|
344
|
+
readonly props: Readonly<OriginalProps>;
|
|
345
|
+
state: Readonly<{}>;
|
|
346
|
+
componentDidMount?(): void;
|
|
347
|
+
shouldComponentUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
|
348
|
+
componentWillUnmount?(): void;
|
|
349
|
+
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
|
350
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>): any;
|
|
351
|
+
componentDidUpdate?(prevProps: Readonly<OriginalProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
|
352
|
+
componentWillMount?(): void;
|
|
353
|
+
UNSAFE_componentWillMount?(): void;
|
|
354
|
+
componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
355
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<OriginalProps>, nextContext: any): void;
|
|
356
|
+
componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
357
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<OriginalProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
358
|
+
};
|
|
199
359
|
readonly displayName: string;
|
|
200
360
|
contextType?: React.Context<any> | undefined;
|
|
201
361
|
propTypes?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/framepay-react",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.36.1",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@testing-library/react": "^15.0.7",
|
|
74
74
|
"@types/jest": "^29.5.1",
|
|
75
75
|
"@types/node": "^22.15.30",
|
|
76
|
-
"@types/react": "^19.
|
|
76
|
+
"@types/react": "^19.2.7",
|
|
77
77
|
"core-js": "^3.42.0",
|
|
78
78
|
"cross-env": "^10.1.0",
|
|
79
79
|
"cypress": "^13.17.0",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
"parcel-bundler": "^1.12.5",
|
|
89
89
|
"portfinder": "^1.0.35",
|
|
90
90
|
"prop-types": "^15.0.0",
|
|
91
|
-
"react": "^19.1
|
|
92
|
-
"react-dom": "^19.1
|
|
93
|
-
"react-dom-19": "npm:react-dom@19.1
|
|
91
|
+
"react": "^19.2.1",
|
|
92
|
+
"react-dom": "^19.2.1",
|
|
93
|
+
"react-dom-19": "npm:react-dom@19.2.1",
|
|
94
94
|
"scheduler": "^0.26.0",
|
|
95
95
|
"start-server-and-test": "^2.0.11",
|
|
96
96
|
"ts-jest": "^29.3.2",
|