@saasquatch/mint-components 1.12.0-12 → 1.12.0-14
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/sqm-banking-info-form_16.cjs.entry.js +33 -13
- package/dist/cjs/sqm-big-stat_39.cjs.entry.js +38 -1
- package/dist/cjs/sqm-code-verification.cjs.entry.js +1 -1
- package/dist/cjs/{sqm-invoice-table-view-301eed81.js → sqm-invoice-table-view-ed76d7bd.js} +16 -0
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +2 -1
- package/dist/collection/components/sqm-payout-button-scroll/sqm-payout-button-scroll.js +5 -1
- package/dist/collection/components/sqm-payout-button-scroll/usePayoutButton.js +3 -10
- package/dist/collection/components/sqm-widget-verification/sqm-code-verification/sqm-code-verification-view.js +1 -1
- package/dist/collection/components/tax-and-cash/BankingForm.stories.js +1 -0
- package/dist/collection/components/tax-and-cash/TaxForm.stories.js +15 -0
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.js +28 -6
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/useBankingInfoForm.js +3 -1
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard-view.js +4 -5
- package/dist/esm/sqm-banking-info-form_16.entry.js +33 -13
- package/dist/esm/sqm-big-stat_39.entry.js +38 -1
- package/dist/esm/sqm-code-verification.entry.js +1 -1
- package/dist/esm/{sqm-invoice-table-view-1f26f252.js → sqm-invoice-table-view-6601d8f2.js} +16 -0
- package/dist/esm/sqm-stencilbook.entry.js +2 -1
- package/dist/esm-es5/sqm-banking-info-form_16.entry.js +1 -1
- package/dist/esm-es5/sqm-big-stat_39.entry.js +1 -1
- package/dist/esm-es5/sqm-code-verification.entry.js +1 -1
- package/dist/esm-es5/sqm-invoice-table-view-6601d8f2.js +1 -0
- package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-b24b4d75.entry.js → p-02892b2a.entry.js} +1 -1
- package/dist/mint-components/{p-9ddcfcd7.entry.js → p-21aa318a.entry.js} +3 -3
- package/dist/mint-components/p-2d836e58.js +1 -0
- package/dist/mint-components/{p-b9e863d0.entry.js → p-30ac8e59.entry.js} +29 -11
- package/dist/mint-components/p-45a8d0fc.system.js +1 -0
- package/dist/mint-components/p-4adff550.system.entry.js +1 -0
- package/dist/mint-components/{p-f7902f51.entry.js → p-856c09f1.entry.js} +2 -2
- package/dist/mint-components/{p-f7493ca6.system.entry.js → p-8fa2809f.system.entry.js} +1 -1
- package/dist/mint-components/p-9a21cc81.system.entry.js +1 -0
- package/dist/mint-components/p-ca809fdd.system.js +1 -1
- package/dist/mint-components/{p-c5f84a95.system.entry.js → p-e0c54a41.system.entry.js} +1 -1
- package/dist/types/components/tax-and-cash/TaxForm.stories.d.ts +1 -0
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form-view.d.ts +2 -0
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
- package/dist/esm-es5/sqm-invoice-table-view-1f26f252.js +0 -1
- package/dist/mint-components/p-635f1cf5.system.entry.js +0 -1
- package/dist/mint-components/p-78ec0d48.js +0 -1
- package/dist/mint-components/p-7d79f697.system.js +0 -1
- package/dist/mint-components/p-a567ba84.system.entry.js +0 -1
|
@@ -712,6 +712,7 @@ const stepFourProps = {
|
|
|
712
712
|
},
|
|
713
713
|
},
|
|
714
714
|
callbacks: {
|
|
715
|
+
onVerificationHide: () => { },
|
|
715
716
|
onVerification: () => { },
|
|
716
717
|
onSubmit: async () => console.log("Submit"),
|
|
717
718
|
setPaymentMethodChecked: () => { },
|
|
@@ -1260,6 +1261,20 @@ const StepFourToPaypalChecked = () => {
|
|
|
1260
1261
|
},
|
|
1261
1262
|
} }));
|
|
1262
1263
|
};
|
|
1264
|
+
const StepFourReVerifyEmail = () => {
|
|
1265
|
+
return (h("sqm-banking-info-form", { demoData: {
|
|
1266
|
+
...stepFourProps,
|
|
1267
|
+
states: {
|
|
1268
|
+
...stepFourProps.states,
|
|
1269
|
+
showVerification: true,
|
|
1270
|
+
isPartner: true,
|
|
1271
|
+
formState: {
|
|
1272
|
+
...stepFourProps.states.formState,
|
|
1273
|
+
paymentMethodChecked: "toPayPalAccount",
|
|
1274
|
+
},
|
|
1275
|
+
},
|
|
1276
|
+
} }));
|
|
1277
|
+
};
|
|
1263
1278
|
const TaxAndCashDashboardActiveW9Form = () => {
|
|
1264
1279
|
return (h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
1265
1280
|
...dashboardProps,
|
|
@@ -1753,6 +1768,7 @@ const TaxForm = /*#__PURE__*/Object.freeze({
|
|
|
1753
1768
|
StepFourIsPartner: StepFourIsPartner,
|
|
1754
1769
|
StepFourDirectToBankChecked: StepFourDirectToBankChecked,
|
|
1755
1770
|
StepFourToPaypalChecked: StepFourToPaypalChecked,
|
|
1771
|
+
StepFourReVerifyEmail: StepFourReVerifyEmail,
|
|
1756
1772
|
TaxAndCashDashboardActiveW9Form: TaxAndCashDashboardActiveW9Form,
|
|
1757
1773
|
TaxAndCashDashboardActiveW8BENForm: TaxAndCashDashboardActiveW8BENForm,
|
|
1758
1774
|
TaxAndCashDashboardActiveW8BENEForm: TaxAndCashDashboardActiveW8BENEForm,
|
|
@@ -26,7 +26,7 @@ import { P as PortalResetPasswordView } from './sqm-portal-reset-password-view-7
|
|
|
26
26
|
import { P as PortalVerifyEmailView } from './sqm-portal-verify-email-view-d7ea2c56.js';
|
|
27
27
|
import { S as ShareButtonView, L as LeaderboardView, C as CopyTextView, B as BigStatView, P as PortalFrameView, E as EditProfileView, u as useShareLink, a as useShareButton, b as useDemoBigStat, c as StatContainerView, d as PortalChangePasswordView, e as PortalLoginView, f as PortalRegisterView, T as TaskCardView, g as ProgressBarView, h as PoweredByImg$1, i as PortalFooterView, H as HeroView, R as ReferralIframeView, N as NameFieldsView, j as CheckboxFieldView, D as DropdownFieldView, I as InputFieldView, k as RewardExchangeView, r as rewardExchangeCustomErrorMsg, l as rewardExchangeLongText, m as rewardExchangeSelected, n as chooseAmountFixed, o as chooseAmountFixedNoDescription, p as chooseAmountVariable, q as chooseAmountVariableNoDescription, s as chooseAmountVariableDisabled, t as chooseAmountVariableUnavailable, v as confirmFixed, w as confirmVariable, x as redemptionError, y as queryError, z as success, A as successVariable, F as loading, G as empty$1, J as rewardExchange, K as CardFeedView, M as CouponCodeView, O as ProgressBar$2, Q as autoColorScaleCss, U as ShadowViewAddon } from './ShadowViewAddon-69b61037.js';
|
|
28
28
|
import { P as PortalContainerView, a as PortalSectionView } from './sqm-portal-container-view-6c582684.js';
|
|
29
|
-
import { O as OtherRegionSlotView, I as InvoiceTableView, T as TaxForm } from './sqm-invoice-table-view-
|
|
29
|
+
import { O as OtherRegionSlotView, I as InvoiceTableView, T as TaxForm } from './sqm-invoice-table-view-6601d8f2.js';
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* lodash (Custom Build) <https://lodash.com/>
|
|
@@ -14400,6 +14400,7 @@ const bankingFormProps = {
|
|
|
14400
14400
|
loadingError: false,
|
|
14401
14401
|
},
|
|
14402
14402
|
callbacks: {
|
|
14403
|
+
onVerificationHide: () => { },
|
|
14403
14404
|
onVerification: () => { },
|
|
14404
14405
|
onSubmit: async () => console.log("Submit"),
|
|
14405
14406
|
setPaymentMethodChecked: () => { },
|