@bunnyapp/components 1.8.0-beta.22 → 1.8.0-beta.23
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
CHANGED
|
@@ -1291,7 +1291,7 @@ const DEFAULT_CONFIG = {
|
|
|
1291
1291
|
};
|
|
1292
1292
|
|
|
1293
1293
|
// This will be replaced at build time by rollup-plugin-replace
|
|
1294
|
-
const PACKAGE_VERSION = '1.8.0-beta.
|
|
1294
|
+
const PACKAGE_VERSION = '1.8.0-beta.22';
|
|
1295
1295
|
const createRequestHeaders = (token) => {
|
|
1296
1296
|
const headers = createClientDevHeaders({ token });
|
|
1297
1297
|
// Add the components version header
|
|
@@ -19,7 +19,7 @@ export type SignupProps = {
|
|
|
19
19
|
paymentRequiredToAcceptQuote?: boolean;
|
|
20
20
|
/** The document template ID to apply to the quote for the signup */
|
|
21
21
|
documentTemplateId?: string;
|
|
22
|
-
/** Which account billing fields to show and require
|
|
22
|
+
/** Which account billing fields to show and require */
|
|
23
23
|
requiredBillingDetails?: RequiredBillingDetailsFlags;
|
|
24
24
|
};
|
|
25
25
|
declare const useSignupPortalSessionToken: () => [string | undefined, import("react").Dispatch<import("react").SetStateAction<string | undefined>>];
|
package/dist/esm/index.js
CHANGED
|
@@ -1289,7 +1289,7 @@ const DEFAULT_CONFIG = {
|
|
|
1289
1289
|
};
|
|
1290
1290
|
|
|
1291
1291
|
// This will be replaced at build time by rollup-plugin-replace
|
|
1292
|
-
const PACKAGE_VERSION = '1.8.0-beta.
|
|
1292
|
+
const PACKAGE_VERSION = '1.8.0-beta.22';
|
|
1293
1293
|
const createRequestHeaders = (token) => {
|
|
1294
1294
|
const headers = createClientDevHeaders({ token });
|
|
1295
1295
|
// Add the components version header
|
|
@@ -19,7 +19,7 @@ export type SignupProps = {
|
|
|
19
19
|
paymentRequiredToAcceptQuote?: boolean;
|
|
20
20
|
/** The document template ID to apply to the quote for the signup */
|
|
21
21
|
documentTemplateId?: string;
|
|
22
|
-
/** Which account billing fields to show and require
|
|
22
|
+
/** Which account billing fields to show and require */
|
|
23
23
|
requiredBillingDetails?: RequiredBillingDetailsFlags;
|
|
24
24
|
};
|
|
25
25
|
declare const useSignupPortalSessionToken: () => [string | undefined, import("react").Dispatch<import("react").SetStateAction<string | undefined>>];
|
package/dist/index.d.ts
CHANGED
|
@@ -252,7 +252,7 @@ type SignupProps = {
|
|
|
252
252
|
paymentRequiredToAcceptQuote?: boolean;
|
|
253
253
|
/** The document template ID to apply to the quote for the signup */
|
|
254
254
|
documentTemplateId?: string;
|
|
255
|
-
/** Which account billing fields to show and require
|
|
255
|
+
/** Which account billing fields to show and require */
|
|
256
256
|
requiredBillingDetails?: RequiredBillingDetailsFlags;
|
|
257
257
|
};
|
|
258
258
|
declare function Signup({ priceListCode, enableTrial, returnUrl, className, shadow, style, defaultFormValues, paymentRequiredToAcceptQuote, documentTemplateId, requiredBillingDetails, }: SignupProps): react_jsx_runtime.JSX.Element;
|
package/package.json
CHANGED