@whop/embedded-components-react-js 0.0.5-beta.1 → 0.0.5-beta.12
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/index.d.ts +3 -0
- package/dist/lib/with-fallback.d.ts +55 -0
- package/dist/lib/with-fallback.js +85 -0
- package/dist/lib/with-fallback.js.map +1 -0
- package/dist/lib/with-fallback.mjs +58 -0
- package/dist/lib/with-fallback.mjs.map +1 -0
- package/dist/payouts/elements/balance.d.ts +8 -13
- package/dist/payouts/elements/balance.js +5 -61
- package/dist/payouts/elements/balance.js.map +1 -1
- package/dist/payouts/elements/balance.mjs +5 -53
- package/dist/payouts/elements/balance.mjs.map +1 -1
- package/dist/payouts/elements/bnpl-reserve-balance-breakdown.d.ts +8 -13
- package/dist/payouts/elements/bnpl-reserve-balance-breakdown.js +5 -61
- package/dist/payouts/elements/bnpl-reserve-balance-breakdown.js.map +1 -1
- package/dist/payouts/elements/bnpl-reserve-balance-breakdown.mjs +5 -53
- package/dist/payouts/elements/bnpl-reserve-balance-breakdown.mjs.map +1 -1
- package/dist/payouts/elements/change-account-country.d.ts +8 -13
- package/dist/payouts/elements/change-account-country.js +5 -61
- package/dist/payouts/elements/change-account-country.js.map +1 -1
- package/dist/payouts/elements/change-account-country.mjs +5 -53
- package/dist/payouts/elements/change-account-country.mjs.map +1 -1
- package/dist/payouts/elements/generate-withdrawal-receipt.d.ts +11 -0
- package/dist/payouts/elements/generate-withdrawal-receipt.js +30 -0
- package/dist/payouts/elements/generate-withdrawal-receipt.js.map +1 -0
- package/dist/payouts/elements/generate-withdrawal-receipt.mjs +8 -0
- package/dist/payouts/elements/generate-withdrawal-receipt.mjs.map +1 -0
- package/dist/payouts/elements/index.d.ts +3 -0
- package/dist/payouts/elements/index.js +2 -0
- package/dist/payouts/elements/index.js.map +1 -1
- package/dist/payouts/elements/index.mjs +2 -0
- package/dist/payouts/elements/index.mjs.map +1 -1
- package/dist/payouts/elements/pending-balance-breakdown.d.ts +8 -13
- package/dist/payouts/elements/pending-balance-breakdown.js +5 -61
- package/dist/payouts/elements/pending-balance-breakdown.js.map +1 -1
- package/dist/payouts/elements/pending-balance-breakdown.mjs +5 -53
- package/dist/payouts/elements/pending-balance-breakdown.mjs.map +1 -1
- package/dist/payouts/elements/regular-reserve-balance-breakdown.d.ts +8 -13
- package/dist/payouts/elements/regular-reserve-balance-breakdown.js +5 -61
- package/dist/payouts/elements/regular-reserve-balance-breakdown.js.map +1 -1
- package/dist/payouts/elements/regular-reserve-balance-breakdown.mjs +5 -53
- package/dist/payouts/elements/regular-reserve-balance-breakdown.mjs.map +1 -1
- package/dist/payouts/elements/reset-account.d.ts +8 -13
- package/dist/payouts/elements/reset-account.js +5 -61
- package/dist/payouts/elements/reset-account.js.map +1 -1
- package/dist/payouts/elements/reset-account.mjs +5 -53
- package/dist/payouts/elements/reset-account.mjs.map +1 -1
- package/dist/payouts/elements/status-banner.d.ts +18 -0
- package/dist/payouts/elements/status-banner.js +102 -0
- package/dist/payouts/elements/status-banner.js.map +1 -0
- package/dist/payouts/elements/status-banner.mjs +76 -0
- package/dist/payouts/elements/status-banner.mjs.map +1 -0
- package/dist/payouts/elements/total-balance-breakdown.d.ts +8 -13
- package/dist/payouts/elements/total-balance-breakdown.js +5 -61
- package/dist/payouts/elements/total-balance-breakdown.js.map +1 -1
- package/dist/payouts/elements/total-balance-breakdown.mjs +5 -53
- package/dist/payouts/elements/total-balance-breakdown.mjs.map +1 -1
- package/dist/payouts/elements/verify.d.ts +8 -13
- package/dist/payouts/elements/verify.js +5 -58
- package/dist/payouts/elements/verify.js.map +1 -1
- package/dist/payouts/elements/verify.mjs +5 -53
- package/dist/payouts/elements/verify.mjs.map +1 -1
- package/dist/payouts/elements/withdraw-button.d.ts +8 -13
- package/dist/payouts/elements/withdraw-button.js +5 -61
- package/dist/payouts/elements/withdraw-button.js.map +1 -1
- package/dist/payouts/elements/withdraw-button.mjs +5 -53
- package/dist/payouts/elements/withdraw-button.mjs.map +1 -1
- package/dist/payouts/elements/withdrawal-breakdown.d.ts +8 -13
- package/dist/payouts/elements/withdrawal-breakdown.js +5 -61
- package/dist/payouts/elements/withdrawal-breakdown.js.map +1 -1
- package/dist/payouts/elements/withdrawal-breakdown.mjs +5 -53
- package/dist/payouts/elements/withdrawal-breakdown.mjs.map +1 -1
- package/dist/payouts/elements/withdrawals.d.ts +8 -13
- package/dist/payouts/elements/withdrawals.js +5 -61
- package/dist/payouts/elements/withdrawals.js.map +1 -1
- package/dist/payouts/elements/withdrawals.mjs +5 -53
- package/dist/payouts/elements/withdrawals.mjs.map +1 -1
- package/dist/payouts/index.d.ts +3 -0
- package/package.json +2 -2
- package/package.json.temp +0 -44
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { WithFallbackPropsOptional } from '../../lib/with-fallback.js';
|
|
2
|
+
import * as _whop_embedded_components_vanilla_js_types from '@whop/embedded-components-vanilla-js/types';
|
|
3
|
+
import 'react';
|
|
3
4
|
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
fallback?: React__default.ReactNode;
|
|
10
|
-
}): React__default.JSX.Element;
|
|
11
|
-
declare namespace ChangeAccountCountryElement {
|
|
12
|
-
var displayName: string;
|
|
13
|
-
var type: "change-account-country-element";
|
|
14
|
-
}
|
|
5
|
+
declare const ChangeAccountCountryElement: {
|
|
6
|
+
(props: WithFallbackPropsOptional<_whop_embedded_components_vanilla_js_types.ChangeAccountCountryElementOptions>): React.ReactNode;
|
|
7
|
+
displayName: string;
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
15
10
|
|
|
16
11
|
export { ChangeAccountCountryElement };
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
"use client";
|
|
3
|
-
var __create = Object.create;
|
|
4
3
|
var __defProp = Object.defineProperty;
|
|
5
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
7
|
var __export = (target, all) => {
|
|
10
8
|
for (var name in all)
|
|
@@ -18,69 +16,15 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
16
|
}
|
|
19
17
|
return to;
|
|
20
18
|
};
|
|
21
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
26
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
|
-
mod
|
|
28
|
-
));
|
|
29
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
20
|
var change_account_country_exports = {};
|
|
31
21
|
__export(change_account_country_exports, {
|
|
32
22
|
ChangeAccountCountryElement: () => ChangeAccountCountryElement
|
|
33
23
|
});
|
|
34
24
|
module.exports = __toCommonJS(change_account_country_exports);
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
className,
|
|
41
|
-
style,
|
|
42
|
-
onReady,
|
|
43
|
-
fallback
|
|
44
|
-
}) {
|
|
45
|
-
const payoutsSession = (0, import_session.usePayoutsSession)();
|
|
46
|
-
const ref = (0, import_react.useRef)(null);
|
|
47
|
-
const element = (0, import_react.useMemo)(() => {
|
|
48
|
-
if (!payoutsSession) return null;
|
|
49
|
-
const createdElement = payoutsSession.createElement(
|
|
50
|
-
ChangeAccountCountryElement,
|
|
51
|
-
options
|
|
52
|
-
);
|
|
53
|
-
return createdElement;
|
|
54
|
-
}, [payoutsSession]);
|
|
55
|
-
const elementSnapshot = (0, import_use_element_snapshot.useElementSnapshot)(element);
|
|
56
|
-
const isReady = elementSnapshot?.state === "ready";
|
|
57
|
-
(0, import_react.useEffect)(() => {
|
|
58
|
-
if (!element) return;
|
|
59
|
-
element.updateOptions(options);
|
|
60
|
-
}, [options, element]);
|
|
61
|
-
(0, import_react.useEffect)(() => {
|
|
62
|
-
if (!element || !onReady) return;
|
|
63
|
-
element.on("ready", onReady);
|
|
64
|
-
return () => {
|
|
65
|
-
element.off("ready", onReady);
|
|
66
|
-
};
|
|
67
|
-
}, [element, onReady]);
|
|
68
|
-
(0, import_react.useLayoutEffect)(() => {
|
|
69
|
-
if (!element || !ref.current) return;
|
|
70
|
-
element.mount(ref.current);
|
|
71
|
-
return () => {
|
|
72
|
-
element.unmount();
|
|
73
|
-
};
|
|
74
|
-
}, [element, ref.current]);
|
|
75
|
-
return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(
|
|
76
|
-
"div",
|
|
77
|
-
{
|
|
78
|
-
style: { ...style, visibility: isReady ? void 0 : "hidden" },
|
|
79
|
-
className,
|
|
80
|
-
ref
|
|
81
|
-
}
|
|
82
|
-
), !isReady && (fallback ?? null));
|
|
83
|
-
}
|
|
84
|
-
ChangeAccountCountryElement.displayName = "ChangeAccountCountryElement";
|
|
85
|
-
ChangeAccountCountryElement.type = "change-account-country-element";
|
|
25
|
+
var import_with_fallback = require("../../lib/with-fallback");
|
|
26
|
+
const ChangeAccountCountryElement = (0, import_with_fallback.withFallback)({
|
|
27
|
+
displayName: "ChangeAccountCountryElement",
|
|
28
|
+
type: "change-account-country-element"
|
|
29
|
+
});
|
|
86
30
|
//# sourceMappingURL=change-account-country.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/change-account-country.tsx"],"sourcesContent":["\"use client\";\n\nimport
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/change-account-country.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const ChangeAccountCountryElement = withFallback({\n\tdisplayName: \"ChangeAccountCountryElement\",\n\ttype: \"change-account-country-element\",\n} as const);\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,2BAA6B;AAEtB,MAAM,kCAA8B,mCAAa;AAAA,EACvD,aAAa;AAAA,EACb,MAAM;AACP,CAAU;","names":[]}
|
|
@@ -1,56 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../../chunk-NSSMTXJJ.mjs";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const ref = useRef(null);
|
|
9
|
-
const element = useMemo(()=>{
|
|
10
|
-
if (!payoutsSession) return null;
|
|
11
|
-
const createdElement = payoutsSession.createElement(ChangeAccountCountryElement, options);
|
|
12
|
-
return createdElement;
|
|
13
|
-
}, [
|
|
14
|
-
payoutsSession
|
|
15
|
-
]);
|
|
16
|
-
const elementSnapshot = useElementSnapshot(element);
|
|
17
|
-
const isReady = elementSnapshot?.state === "ready";
|
|
18
|
-
useEffect(()=>{
|
|
19
|
-
if (!element) return;
|
|
20
|
-
element.updateOptions(options);
|
|
21
|
-
}, [
|
|
22
|
-
options,
|
|
23
|
-
element
|
|
24
|
-
]);
|
|
25
|
-
useEffect(()=>{
|
|
26
|
-
if (!element || !onReady) return;
|
|
27
|
-
element.on("ready", onReady);
|
|
28
|
-
return ()=>{
|
|
29
|
-
element.off("ready", onReady);
|
|
30
|
-
};
|
|
31
|
-
}, [
|
|
32
|
-
element,
|
|
33
|
-
onReady
|
|
34
|
-
]);
|
|
35
|
-
useLayoutEffect(()=>{
|
|
36
|
-
if (!element || !ref.current) return;
|
|
37
|
-
element.mount(ref.current);
|
|
38
|
-
return ()=>{
|
|
39
|
-
element.unmount();
|
|
40
|
-
};
|
|
41
|
-
}, [
|
|
42
|
-
element,
|
|
43
|
-
ref.current
|
|
44
|
-
]);
|
|
45
|
-
return React.createElement(React.Fragment, null, React.createElement("div", {
|
|
46
|
-
style: {
|
|
47
|
-
...style,
|
|
48
|
-
visibility: isReady ? void 0 : "hidden"
|
|
49
|
-
},
|
|
50
|
-
className,
|
|
51
|
-
ref
|
|
52
|
-
}), !isReady && (fallback ?? null));
|
|
53
|
-
}
|
|
54
|
-
ChangeAccountCountryElement.displayName = "ChangeAccountCountryElement";
|
|
55
|
-
ChangeAccountCountryElement.type = "change-account-country-element";
|
|
3
|
+
import { withFallback } from "../../lib/with-fallback.mjs";
|
|
4
|
+
const ChangeAccountCountryElement = withFallback({
|
|
5
|
+
displayName: "ChangeAccountCountryElement",
|
|
6
|
+
type: "change-account-country-element"
|
|
7
|
+
});
|
|
56
8
|
export { ChangeAccountCountryElement };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/change-account-country.tsx"],"sourcesContent":["\"use client\";\n\nimport
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/change-account-country.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const ChangeAccountCountryElement = withFallback({\n\tdisplayName: \"ChangeAccountCountryElement\",\n\ttype: \"change-account-country-element\",\n} as const);\n"],"mappings":";;AAEA,SAAS,oBAAoB;AAEtB,MAAM,8BAA8B,aAAa;AAAA,EACvD,aAAa;AAAA,EACb,MAAM;AACP,CAAU;","names":[]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WithFallbackPropsRequired } from '../../lib/with-fallback.js';
|
|
2
|
+
import * as _whop_embedded_components_vanilla_js_types from '@whop/embedded-components-vanilla-js/types';
|
|
3
|
+
import 'react';
|
|
4
|
+
|
|
5
|
+
declare const GenerateWithdrawalReceiptElement: {
|
|
6
|
+
(props: WithFallbackPropsRequired<_whop_embedded_components_vanilla_js_types.GenerateWithdrawalReceiptElementOptions>): React.ReactNode;
|
|
7
|
+
displayName: string;
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export { GenerateWithdrawalReceiptElement };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
var generate_withdrawal_receipt_exports = {};
|
|
21
|
+
__export(generate_withdrawal_receipt_exports, {
|
|
22
|
+
GenerateWithdrawalReceiptElement: () => GenerateWithdrawalReceiptElement
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(generate_withdrawal_receipt_exports);
|
|
25
|
+
var import_with_fallback = require("../../lib/with-fallback");
|
|
26
|
+
const GenerateWithdrawalReceiptElement = (0, import_with_fallback.withFallback)({
|
|
27
|
+
displayName: "GenerateWithdrawalReceiptElement",
|
|
28
|
+
type: "generate-withdrawal-receipt-element"
|
|
29
|
+
});
|
|
30
|
+
//# sourceMappingURL=generate-withdrawal-receipt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/generate-withdrawal-receipt.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const GenerateWithdrawalReceiptElement = withFallback<\n\t\"generate-withdrawal-receipt-element\",\n\ttrue\n>({\n\tdisplayName: \"GenerateWithdrawalReceiptElement\",\n\ttype: \"generate-withdrawal-receipt-element\",\n});\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,2BAA6B;AAEtB,MAAM,uCAAmC,mCAG9C;AAAA,EACD,aAAa;AAAA,EACb,MAAM;AACP,CAAC;","names":[]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "../../chunk-NSSMTXJJ.mjs";
|
|
3
|
+
import { withFallback } from "../../lib/with-fallback.mjs";
|
|
4
|
+
const GenerateWithdrawalReceiptElement = withFallback({
|
|
5
|
+
displayName: "GenerateWithdrawalReceiptElement",
|
|
6
|
+
type: "generate-withdrawal-receipt-element"
|
|
7
|
+
});
|
|
8
|
+
export { GenerateWithdrawalReceiptElement };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/generate-withdrawal-receipt.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const GenerateWithdrawalReceiptElement = withFallback<\n\t\"generate-withdrawal-receipt-element\",\n\ttrue\n>({\n\tdisplayName: \"GenerateWithdrawalReceiptElement\",\n\ttype: \"generate-withdrawal-receipt-element\",\n});\n"],"mappings":";;AAEA,SAAS,oBAAoB;AAEtB,MAAM,mCAAmC,aAG9C;AAAA,EACD,aAAa;AAAA,EACb,MAAM;AACP,CAAC;","names":[]}
|
|
@@ -9,5 +9,8 @@ export { TotalBalanceBreakdownElement } from './total-balance-breakdown.js';
|
|
|
9
9
|
export { PendingBalanceBreakdownElement } from './pending-balance-breakdown.js';
|
|
10
10
|
export { RegularReserveBalanceBreakdownElement } from './regular-reserve-balance-breakdown.js';
|
|
11
11
|
export { BnplReserveBalanceBreakdownElement } from './bnpl-reserve-balance-breakdown.js';
|
|
12
|
+
export { GenerateWithdrawalReceiptElement } from './generate-withdrawal-receipt.js';
|
|
13
|
+
export { StatusBannerElement } from './status-banner.js';
|
|
14
|
+
import '../../lib/with-fallback.js';
|
|
12
15
|
import '@whop/embedded-components-vanilla-js/types';
|
|
13
16
|
import 'react';
|
|
@@ -26,4 +26,6 @@ __reExport(elements_exports, require("./total-balance-breakdown"), module.export
|
|
|
26
26
|
__reExport(elements_exports, require("./pending-balance-breakdown"), module.exports);
|
|
27
27
|
__reExport(elements_exports, require("./regular-reserve-balance-breakdown"), module.exports);
|
|
28
28
|
__reExport(elements_exports, require("./bnpl-reserve-balance-breakdown"), module.exports);
|
|
29
|
+
__reExport(elements_exports, require("./generate-withdrawal-receipt"), module.exports);
|
|
30
|
+
__reExport(elements_exports, require("./status-banner"), module.exports);
|
|
29
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/index.tsx"],"sourcesContent":["export * from \"./balance\";\nexport * from \"./change-account-country\";\nexport * from \"./reset-account\";\nexport * from \"./verify\";\nexport * from \"./withdraw-button\";\nexport * from \"./withdrawal-breakdown\";\nexport * from \"./withdrawals\";\nexport * from \"./total-balance-breakdown\";\nexport * from \"./pending-balance-breakdown\";\nexport * from \"./regular-reserve-balance-breakdown\";\nexport * from \"./bnpl-reserve-balance-breakdown\";\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,6BAAc,sBAAd;AACA,6BAAc,qCADd;AAEA,6BAAc,4BAFd;AAGA,6BAAc,qBAHd;AAIA,6BAAc,8BAJd;AAKA,6BAAc,mCALd;AAMA,6BAAc,0BANd;AAOA,6BAAc,sCAPd;AAQA,6BAAc,wCARd;AASA,6BAAc,gDATd;AAUA,6BAAc,6CAVd;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/index.tsx"],"sourcesContent":["export * from \"./balance\";\nexport * from \"./change-account-country\";\nexport * from \"./reset-account\";\nexport * from \"./verify\";\nexport * from \"./withdraw-button\";\nexport * from \"./withdrawal-breakdown\";\nexport * from \"./withdrawals\";\nexport * from \"./total-balance-breakdown\";\nexport * from \"./pending-balance-breakdown\";\nexport * from \"./regular-reserve-balance-breakdown\";\nexport * from \"./bnpl-reserve-balance-breakdown\";\nexport * from \"./generate-withdrawal-receipt\";\nexport * from \"./status-banner\";\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,6BAAc,sBAAd;AACA,6BAAc,qCADd;AAEA,6BAAc,4BAFd;AAGA,6BAAc,qBAHd;AAIA,6BAAc,8BAJd;AAKA,6BAAc,mCALd;AAMA,6BAAc,0BANd;AAOA,6BAAc,sCAPd;AAQA,6BAAc,wCARd;AASA,6BAAc,gDATd;AAUA,6BAAc,6CAVd;AAWA,6BAAc,0CAXd;AAYA,6BAAc,4BAZd;","names":[]}
|
|
@@ -9,3 +9,5 @@ export * from "./total-balance-breakdown.mjs";
|
|
|
9
9
|
export * from "./pending-balance-breakdown.mjs";
|
|
10
10
|
export * from "./regular-reserve-balance-breakdown.mjs";
|
|
11
11
|
export * from "./bnpl-reserve-balance-breakdown.mjs";
|
|
12
|
+
export * from "./generate-withdrawal-receipt.mjs";
|
|
13
|
+
export * from "./status-banner.mjs";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/index.tsx"],"sourcesContent":["export * from \"./balance\";\nexport * from \"./change-account-country\";\nexport * from \"./reset-account\";\nexport * from \"./verify\";\nexport * from \"./withdraw-button\";\nexport * from \"./withdrawal-breakdown\";\nexport * from \"./withdrawals\";\nexport * from \"./total-balance-breakdown\";\nexport * from \"./pending-balance-breakdown\";\nexport * from \"./regular-reserve-balance-breakdown\";\nexport * from \"./bnpl-reserve-balance-breakdown\";\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/index.tsx"],"sourcesContent":["export * from \"./balance\";\nexport * from \"./change-account-country\";\nexport * from \"./reset-account\";\nexport * from \"./verify\";\nexport * from \"./withdraw-button\";\nexport * from \"./withdrawal-breakdown\";\nexport * from \"./withdrawals\";\nexport * from \"./total-balance-breakdown\";\nexport * from \"./pending-balance-breakdown\";\nexport * from \"./regular-reserve-balance-breakdown\";\nexport * from \"./bnpl-reserve-balance-breakdown\";\nexport * from \"./generate-withdrawal-receipt\";\nexport * from \"./status-banner\";\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { WithFallbackPropsOptional } from '../../lib/with-fallback.js';
|
|
2
|
+
import * as _whop_embedded_components_vanilla_js_types from '@whop/embedded-components-vanilla-js/types';
|
|
3
|
+
import 'react';
|
|
3
4
|
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
fallback?: React__default.ReactNode;
|
|
10
|
-
}): React__default.JSX.Element;
|
|
11
|
-
declare namespace PendingBalanceBreakdownElement {
|
|
12
|
-
var displayName: string;
|
|
13
|
-
var type: "pending-balance-breakdown-element";
|
|
14
|
-
}
|
|
5
|
+
declare const PendingBalanceBreakdownElement: {
|
|
6
|
+
(props: WithFallbackPropsOptional<_whop_embedded_components_vanilla_js_types.PendingBalanceBreakdownElementOptions>): React.ReactNode;
|
|
7
|
+
displayName: string;
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
15
10
|
|
|
16
11
|
export { PendingBalanceBreakdownElement };
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
"use client";
|
|
3
|
-
var __create = Object.create;
|
|
4
3
|
var __defProp = Object.defineProperty;
|
|
5
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
7
|
var __export = (target, all) => {
|
|
10
8
|
for (var name in all)
|
|
@@ -18,69 +16,15 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
16
|
}
|
|
19
17
|
return to;
|
|
20
18
|
};
|
|
21
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
26
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
|
-
mod
|
|
28
|
-
));
|
|
29
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
20
|
var pending_balance_breakdown_exports = {};
|
|
31
21
|
__export(pending_balance_breakdown_exports, {
|
|
32
22
|
PendingBalanceBreakdownElement: () => PendingBalanceBreakdownElement
|
|
33
23
|
});
|
|
34
24
|
module.exports = __toCommonJS(pending_balance_breakdown_exports);
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
className,
|
|
41
|
-
style,
|
|
42
|
-
onReady,
|
|
43
|
-
fallback
|
|
44
|
-
}) {
|
|
45
|
-
const payoutsSession = (0, import_session.usePayoutsSession)();
|
|
46
|
-
const ref = (0, import_react.useRef)(null);
|
|
47
|
-
const element = (0, import_react.useMemo)(() => {
|
|
48
|
-
if (!payoutsSession) return null;
|
|
49
|
-
const createdElement = payoutsSession.createElement(
|
|
50
|
-
PendingBalanceBreakdownElement,
|
|
51
|
-
options
|
|
52
|
-
);
|
|
53
|
-
return createdElement;
|
|
54
|
-
}, [payoutsSession]);
|
|
55
|
-
const elementSnapshot = (0, import_use_element_snapshot.useElementSnapshot)(element);
|
|
56
|
-
const isReady = elementSnapshot?.state === "ready";
|
|
57
|
-
(0, import_react.useEffect)(() => {
|
|
58
|
-
if (!element) return;
|
|
59
|
-
element.updateOptions(options);
|
|
60
|
-
}, [options, element]);
|
|
61
|
-
(0, import_react.useEffect)(() => {
|
|
62
|
-
if (!element || !onReady) return;
|
|
63
|
-
element.on("ready", onReady);
|
|
64
|
-
return () => {
|
|
65
|
-
element.off("ready", onReady);
|
|
66
|
-
};
|
|
67
|
-
}, [element, onReady]);
|
|
68
|
-
(0, import_react.useLayoutEffect)(() => {
|
|
69
|
-
if (!element || !ref.current) return;
|
|
70
|
-
element.mount(ref.current);
|
|
71
|
-
return () => {
|
|
72
|
-
element.unmount();
|
|
73
|
-
};
|
|
74
|
-
}, [element, ref.current]);
|
|
75
|
-
return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(
|
|
76
|
-
"div",
|
|
77
|
-
{
|
|
78
|
-
style: { ...style, visibility: isReady ? void 0 : "hidden" },
|
|
79
|
-
className,
|
|
80
|
-
ref
|
|
81
|
-
}
|
|
82
|
-
), !isReady && (fallback ?? null));
|
|
83
|
-
}
|
|
84
|
-
PendingBalanceBreakdownElement.displayName = "PendingBalanceBreakdownElement";
|
|
85
|
-
PendingBalanceBreakdownElement.type = "pending-balance-breakdown-element";
|
|
25
|
+
var import_with_fallback = require("../../lib/with-fallback");
|
|
26
|
+
const PendingBalanceBreakdownElement = (0, import_with_fallback.withFallback)({
|
|
27
|
+
displayName: "PendingBalanceBreakdownElement",
|
|
28
|
+
type: "pending-balance-breakdown-element"
|
|
29
|
+
});
|
|
86
30
|
//# sourceMappingURL=pending-balance-breakdown.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/pending-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/pending-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const PendingBalanceBreakdownElement = withFallback({\n\tdisplayName: \"PendingBalanceBreakdownElement\",\n\ttype: \"pending-balance-breakdown-element\",\n} as const);\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,2BAA6B;AAEtB,MAAM,qCAAiC,mCAAa;AAAA,EAC1D,aAAa;AAAA,EACb,MAAM;AACP,CAAU;","names":[]}
|
|
@@ -1,56 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../../chunk-NSSMTXJJ.mjs";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const ref = useRef(null);
|
|
9
|
-
const element = useMemo(()=>{
|
|
10
|
-
if (!payoutsSession) return null;
|
|
11
|
-
const createdElement = payoutsSession.createElement(PendingBalanceBreakdownElement, options);
|
|
12
|
-
return createdElement;
|
|
13
|
-
}, [
|
|
14
|
-
payoutsSession
|
|
15
|
-
]);
|
|
16
|
-
const elementSnapshot = useElementSnapshot(element);
|
|
17
|
-
const isReady = elementSnapshot?.state === "ready";
|
|
18
|
-
useEffect(()=>{
|
|
19
|
-
if (!element) return;
|
|
20
|
-
element.updateOptions(options);
|
|
21
|
-
}, [
|
|
22
|
-
options,
|
|
23
|
-
element
|
|
24
|
-
]);
|
|
25
|
-
useEffect(()=>{
|
|
26
|
-
if (!element || !onReady) return;
|
|
27
|
-
element.on("ready", onReady);
|
|
28
|
-
return ()=>{
|
|
29
|
-
element.off("ready", onReady);
|
|
30
|
-
};
|
|
31
|
-
}, [
|
|
32
|
-
element,
|
|
33
|
-
onReady
|
|
34
|
-
]);
|
|
35
|
-
useLayoutEffect(()=>{
|
|
36
|
-
if (!element || !ref.current) return;
|
|
37
|
-
element.mount(ref.current);
|
|
38
|
-
return ()=>{
|
|
39
|
-
element.unmount();
|
|
40
|
-
};
|
|
41
|
-
}, [
|
|
42
|
-
element,
|
|
43
|
-
ref.current
|
|
44
|
-
]);
|
|
45
|
-
return React.createElement(React.Fragment, null, React.createElement("div", {
|
|
46
|
-
style: {
|
|
47
|
-
...style,
|
|
48
|
-
visibility: isReady ? void 0 : "hidden"
|
|
49
|
-
},
|
|
50
|
-
className,
|
|
51
|
-
ref
|
|
52
|
-
}), !isReady && (fallback ?? null));
|
|
53
|
-
}
|
|
54
|
-
PendingBalanceBreakdownElement.displayName = "PendingBalanceBreakdownElement";
|
|
55
|
-
PendingBalanceBreakdownElement.type = "pending-balance-breakdown-element";
|
|
3
|
+
import { withFallback } from "../../lib/with-fallback.mjs";
|
|
4
|
+
const PendingBalanceBreakdownElement = withFallback({
|
|
5
|
+
displayName: "PendingBalanceBreakdownElement",
|
|
6
|
+
type: "pending-balance-breakdown-element"
|
|
7
|
+
});
|
|
56
8
|
export { PendingBalanceBreakdownElement };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/pending-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/pending-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const PendingBalanceBreakdownElement = withFallback({\n\tdisplayName: \"PendingBalanceBreakdownElement\",\n\ttype: \"pending-balance-breakdown-element\",\n} as const);\n"],"mappings":";;AAEA,SAAS,oBAAoB;AAEtB,MAAM,iCAAiC,aAAa;AAAA,EAC1D,aAAa;AAAA,EACb,MAAM;AACP,CAAU;","names":[]}
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { WithFallbackPropsOptional } from '../../lib/with-fallback.js';
|
|
2
|
+
import * as _whop_embedded_components_vanilla_js_types from '@whop/embedded-components-vanilla-js/types';
|
|
3
|
+
import 'react';
|
|
3
4
|
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
fallback?: React__default.ReactNode;
|
|
10
|
-
}): React__default.JSX.Element;
|
|
11
|
-
declare namespace RegularReserveBalanceBreakdownElement {
|
|
12
|
-
var displayName: string;
|
|
13
|
-
var type: "regular-reserve-balance-breakdown-element";
|
|
14
|
-
}
|
|
5
|
+
declare const RegularReserveBalanceBreakdownElement: {
|
|
6
|
+
(props: WithFallbackPropsOptional<_whop_embedded_components_vanilla_js_types.RegularReserveBalanceBreakdownElementOptions>): React.ReactNode;
|
|
7
|
+
displayName: string;
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
15
10
|
|
|
16
11
|
export { RegularReserveBalanceBreakdownElement };
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
"use client";
|
|
3
|
-
var __create = Object.create;
|
|
4
3
|
var __defProp = Object.defineProperty;
|
|
5
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
7
|
var __export = (target, all) => {
|
|
10
8
|
for (var name in all)
|
|
@@ -18,69 +16,15 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
16
|
}
|
|
19
17
|
return to;
|
|
20
18
|
};
|
|
21
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
26
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
|
-
mod
|
|
28
|
-
));
|
|
29
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
20
|
var regular_reserve_balance_breakdown_exports = {};
|
|
31
21
|
__export(regular_reserve_balance_breakdown_exports, {
|
|
32
22
|
RegularReserveBalanceBreakdownElement: () => RegularReserveBalanceBreakdownElement
|
|
33
23
|
});
|
|
34
24
|
module.exports = __toCommonJS(regular_reserve_balance_breakdown_exports);
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
className,
|
|
41
|
-
style,
|
|
42
|
-
onReady,
|
|
43
|
-
fallback
|
|
44
|
-
}) {
|
|
45
|
-
const payoutsSession = (0, import_session.usePayoutsSession)();
|
|
46
|
-
const ref = (0, import_react.useRef)(null);
|
|
47
|
-
const element = (0, import_react.useMemo)(() => {
|
|
48
|
-
if (!payoutsSession) return null;
|
|
49
|
-
const createdElement = payoutsSession.createElement(
|
|
50
|
-
RegularReserveBalanceBreakdownElement,
|
|
51
|
-
options
|
|
52
|
-
);
|
|
53
|
-
return createdElement;
|
|
54
|
-
}, [payoutsSession]);
|
|
55
|
-
const elementSnapshot = (0, import_use_element_snapshot.useElementSnapshot)(element);
|
|
56
|
-
const isReady = elementSnapshot?.state === "ready";
|
|
57
|
-
(0, import_react.useEffect)(() => {
|
|
58
|
-
if (!element) return;
|
|
59
|
-
element.updateOptions(options);
|
|
60
|
-
}, [options, element]);
|
|
61
|
-
(0, import_react.useEffect)(() => {
|
|
62
|
-
if (!element || !onReady) return;
|
|
63
|
-
element.on("ready", onReady);
|
|
64
|
-
return () => {
|
|
65
|
-
element.off("ready", onReady);
|
|
66
|
-
};
|
|
67
|
-
}, [element, onReady]);
|
|
68
|
-
(0, import_react.useLayoutEffect)(() => {
|
|
69
|
-
if (!element || !ref.current) return;
|
|
70
|
-
element.mount(ref.current);
|
|
71
|
-
return () => {
|
|
72
|
-
element.unmount();
|
|
73
|
-
};
|
|
74
|
-
}, [element, ref.current]);
|
|
75
|
-
return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement(
|
|
76
|
-
"div",
|
|
77
|
-
{
|
|
78
|
-
style: { ...style, visibility: isReady ? void 0 : "hidden" },
|
|
79
|
-
className,
|
|
80
|
-
ref
|
|
81
|
-
}
|
|
82
|
-
), !isReady && (fallback ?? null));
|
|
83
|
-
}
|
|
84
|
-
RegularReserveBalanceBreakdownElement.displayName = "RegularReserveBalanceBreakdownElement";
|
|
85
|
-
RegularReserveBalanceBreakdownElement.type = "regular-reserve-balance-breakdown-element";
|
|
25
|
+
var import_with_fallback = require("../../lib/with-fallback");
|
|
26
|
+
const RegularReserveBalanceBreakdownElement = (0, import_with_fallback.withFallback)({
|
|
27
|
+
displayName: "RegularReserveBalanceBreakdownElement",
|
|
28
|
+
type: "regular-reserve-balance-breakdown-element"
|
|
29
|
+
});
|
|
86
30
|
//# sourceMappingURL=regular-reserve-balance-breakdown.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/payouts/elements/regular-reserve-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport
|
|
1
|
+
{"version":3,"sources":["../../../src/payouts/elements/regular-reserve-balance-breakdown.tsx"],"sourcesContent":["\"use client\";\n\nimport { withFallback } from \"../../lib/with-fallback\";\n\nexport const RegularReserveBalanceBreakdownElement = withFallback({\n\tdisplayName: \"RegularReserveBalanceBreakdownElement\",\n\ttype: \"regular-reserve-balance-breakdown-element\",\n} as const);\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,2BAA6B;AAEtB,MAAM,4CAAwC,mCAAa;AAAA,EACjE,aAAa;AAAA,EACb,MAAM;AACP,CAAU;","names":[]}
|