@bunnyapp/components 1.8.0-beta.42 → 1.8.0-beta.43
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/dist/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/PaymentForm/PaymentForm.d.ts +2 -0
- package/dist/cjs/types/src/components/PaymentForm/components/NoPaymentPluginsAlert.d.ts +1 -0
- package/dist/esm/index.js +27 -27
- package/dist/esm/types/src/components/PaymentForm/PaymentForm.d.ts +2 -0
- package/dist/esm/types/src/components/PaymentForm/components/NoPaymentPluginsAlert.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { FragmentOf, ResultOf } from 'gql.tada';
|
|
|
2
2
|
import type { ComponentProps } from 'react';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
4
|
import { CheckoutNoPayment } from './components/CheckoutNoPayment';
|
|
5
|
+
import { NoPaymentPluginsAlert } from './components/NoPaymentPluginsAlert';
|
|
5
6
|
import { Pay } from './components/Pay';
|
|
6
7
|
import { PaymentMethodDetails } from './components/PaymentMethodDetails/PaymentMethodDetails';
|
|
7
8
|
import { StoredPaymentMethods } from './components/StoredPaymentMethods';
|
|
@@ -54,5 +55,6 @@ export declare const PaymentForm: typeof PaymentFormInternal & {
|
|
|
54
55
|
Pay: typeof Pay;
|
|
55
56
|
CheckoutNoPayment: typeof CheckoutNoPayment;
|
|
56
57
|
PaymentMethodDetails: typeof PaymentMethodDetails;
|
|
58
|
+
NoPaymentPluginsAlert: typeof NoPaymentPluginsAlert;
|
|
57
59
|
};
|
|
58
60
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function NoPaymentPluginsAlert(): import("react").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -104,6 +104,8 @@ type Props = {
|
|
|
104
104
|
};
|
|
105
105
|
declare function CheckoutNoPayment(props?: Props): react.JSX.Element;
|
|
106
106
|
|
|
107
|
+
declare function NoPaymentPluginsAlert(): react.JSX.Element;
|
|
108
|
+
|
|
107
109
|
type PayProps = {
|
|
108
110
|
disabled?: boolean;
|
|
109
111
|
onClickPrecondition?: () => boolean | Promise<boolean>;
|
|
@@ -208,6 +210,7 @@ declare const PaymentForm: typeof PaymentFormInternal & {
|
|
|
208
210
|
Pay: typeof Pay;
|
|
209
211
|
CheckoutNoPayment: typeof CheckoutNoPayment;
|
|
210
212
|
PaymentMethodDetails: typeof PaymentMethodDetails;
|
|
213
|
+
NoPaymentPluginsAlert: typeof NoPaymentPluginsAlert;
|
|
211
214
|
};
|
|
212
215
|
|
|
213
216
|
type DefaultSignupValues = {
|
package/package.json
CHANGED