@justifi/webcomponents 4.10.0 → 4.11.0
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/{Business-663db337.js → Business-7ae04d4f.js} +46 -1
- package/dist/cjs/business-additional-questions-schema-18a82d19.js +47 -0
- package/dist/cjs/business-details-core.cjs.entry.js +7 -2
- package/dist/cjs/{business-form-types-3cdd5447.js → business-form-types-29b2bad9.js} +7 -0
- package/dist/cjs/{form-control-datepart_3.cjs.entry.js → form-control-datepart_4.cjs.entry.js} +59 -12
- package/dist/cjs/{form-control-number_3.cjs.entry.js → form-control-select_2.cjs.entry.js} +3 -45
- package/dist/cjs/gross-payment-chart-core.cjs.entry.js +7 -1
- package/dist/cjs/justifi-additional-questions-form-step_5.cjs.entry.js +24 -20
- package/dist/cjs/justifi-additional-questions_4.cjs.entry.js +6 -8
- package/dist/cjs/justifi-billing-form_4.cjs.entry.js +1 -1
- package/dist/cjs/justifi-business-details.cjs.entry.js +21 -4
- package/dist/cjs/justifi-business-form.cjs.entry.js +60 -51
- package/dist/cjs/justifi-business-list.cjs.entry.js +1 -1
- package/dist/cjs/justifi-checkout.cjs.entry.js +1 -1
- package/dist/cjs/justifi-gross-payment-chart.cjs.entry.js +29 -5
- package/dist/cjs/justifi-owner-form.cjs.entry.js +20 -12
- package/dist/cjs/justifi-payment-details.cjs.entry.js +25 -4
- package/dist/cjs/justifi-payment-form.cjs.entry.js +16 -3
- package/dist/cjs/justifi-payment-provisioning.cjs.entry.js +16 -16
- package/dist/cjs/justifi-payments-list.cjs.entry.js +25 -5
- package/dist/cjs/justifi-payout-details.cjs.entry.js +27 -7
- package/dist/cjs/justifi-payouts-list.cjs.entry.js +26 -6
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/payload-parsers-f437272e.js +132 -0
- package/dist/cjs/payment-details-core.cjs.entry.js +7 -1
- package/dist/cjs/payments-list-core.cjs.entry.js +8 -2
- package/dist/cjs/payout-details-core.cjs.entry.js +8 -3
- package/dist/cjs/payouts-list-core.cjs.entry.js +8 -2
- package/dist/cjs/{utils-df5167a8.js → utils-87435719.js} +7 -0
- package/dist/cjs/utils-f8079741.js +41 -0
- package/dist/cjs/webcomponents.cjs.js +1 -1
- package/dist/collection/api/Business.js +2 -1
- package/dist/collection/api/ComponentError.js +14 -0
- package/dist/collection/api/services/utils.js +11 -0
- package/dist/collection/api/shared.js +11 -1
- package/dist/collection/collection-manifest.json +1 -2
- package/dist/collection/components/business-details/additional-questions-details/test/additional-questions.spec.js +1 -1
- package/dist/collection/components/business-details/business-details-core.js +30 -2
- package/dist/collection/components/business-details/business-details.js +30 -0
- package/dist/collection/components/business-details/generic-info-details/test/generic-info-details.spec.js +1 -1
- package/dist/collection/components/business-details/get-business.js +15 -3
- package/dist/collection/components/business-details/legal-address-details/test/legal-address-details.spec.js +1 -1
- package/dist/collection/components/business-details/owner-details/test/owner-details.spec.js +1 -1
- package/dist/collection/components/business-details/representative-details/test/representative-details.spec.js +1 -1
- package/dist/collection/components/business-details/test/busines-details-core.spec.js +56 -16
- package/dist/collection/components/business-details/test/business-details.spec.js +20 -4
- package/dist/collection/components/business-details/test/get-business.spec.js +13 -6
- package/dist/collection/components/business-forms/business-form/business-form.js +79 -50
- package/dist/collection/components/business-forms/business-form/business-representative/business-representative.js +1 -4
- package/dist/collection/components/business-forms/business-form/legal-address-form/legal-address-form.js +4 -2
- package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.js → owner-form/identity-address/identity-address-form.js} +13 -10
- package/dist/collection/components/business-forms/owner-form/identity-address/test/identity-address.e2e.js +9 -0
- package/dist/collection/components/business-forms/{business-form/business-address/test/business-address.spec.js → owner-form/identity-address/test/identity-address.spec.js} +21 -14
- package/dist/collection/components/business-forms/owner-form/owner-form.js +54 -8
- package/dist/collection/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.js +20 -2
- package/dist/collection/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.js +19 -1
- package/dist/collection/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.js +44 -4
- package/dist/collection/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.js +21 -6
- package/dist/collection/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.js +23 -4
- package/dist/collection/components/business-forms/payment-provisioning/payment-provisioning.js +32 -14
- package/dist/collection/components/business-forms/schemas/business-additional-questions-schema.js +15 -6
- package/dist/collection/components/business-forms/schemas/business-address-schema.js +47 -12
- package/dist/collection/components/business-forms/schemas/business-core-info-schema.js +24 -12
- package/dist/collection/components/business-forms/schemas/business-form-schema.js +4 -4
- package/dist/collection/components/business-forms/schemas/business-identity-schema.js +29 -34
- package/dist/collection/components/business-forms/utils/business-form-types.js +7 -0
- package/dist/collection/components/business-forms/utils/helpers.js +2 -0
- package/dist/collection/components/form/form-control-text.js +35 -1
- package/dist/collection/components/form/utils.js +6 -0
- package/dist/collection/components/gross-payment-chart/get-gross-payment-chart-data.js +17 -2
- package/dist/collection/components/gross-payment-chart/gross-payment-chart-core.js +30 -1
- package/dist/collection/components/gross-payment-chart/gross-payment-chart.js +35 -1
- package/dist/collection/components/gross-payment-chart/test/get-gross-payment-chart-data.spec.js +26 -8
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart-core.spec.js +51 -11
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart.spec.js +55 -3
- package/dist/collection/components/payment-details/get-payment-details.js +15 -3
- package/dist/collection/components/payment-details/payment-details-core.js +30 -1
- package/dist/collection/components/payment-details/payment-details.js +35 -1
- package/dist/collection/components/payment-details/test/get-payment-details.spec.js +11 -3
- package/dist/collection/components/payment-details/test/payment-details-core.spec.js +55 -12
- package/dist/collection/components/payment-details/test/payment-details.spec.js +69 -3
- package/dist/collection/components/payment-form/payment-form.js +54 -3
- package/dist/collection/components/payment-form/test/payment-form.spec.js +60 -1
- package/dist/collection/components/payments-list/get-payments.js +15 -4
- package/dist/collection/components/payments-list/payments-list-core.js +28 -2
- package/dist/collection/components/payments-list/payments-list.js +35 -1
- package/dist/collection/components/payments-list/test/get-payments.spec.js +11 -3
- package/dist/collection/components/payments-list/test/payments-list-core.spec.js +43 -28
- package/dist/collection/components/payments-list/test/payments-list.spec.js +31 -3
- package/dist/collection/components/payout-details/get-payout-details.js +17 -6
- package/dist/collection/components/payout-details/payout-details-core.js +31 -3
- package/dist/collection/components/payout-details/payout-details.js +35 -1
- package/dist/collection/components/payout-details/test/get-payout-details.spec.js +15 -5
- package/dist/collection/components/payout-details/test/payout-details-core.spec.js +54 -16
- package/dist/collection/components/payout-details/test/payout-details.spec.js +50 -1
- package/dist/collection/components/payouts-list/get-payouts.js +17 -5
- package/dist/collection/components/payouts-list/payouts-list-core.js +28 -2
- package/dist/collection/components/payouts-list/payouts-list.js +34 -1
- package/dist/collection/components/payouts-list/test/get-payouts.spec.js +11 -3
- package/dist/collection/components/payouts-list/test/payouts-list-core.spec.js +42 -29
- package/dist/collection/components/payouts-list/test/payouts-list.spec.js +33 -0
- package/dist/docs.json +753 -354
- package/dist/esm/{Business-6cc4e473.js → Business-91caaccb.js} +45 -2
- package/dist/esm/business-additional-questions-schema-b642a2b7.js +44 -0
- package/dist/esm/business-details-core.entry.js +8 -3
- package/dist/esm/{business-form-types-de9f38cd.js → business-form-types-0d76133c.js} +8 -1
- package/dist/esm/{form-control-datepart_3.entry.js → form-control-datepart_4.entry.js} +59 -13
- package/dist/esm/{form-control-number_3.entry.js → form-control-select_2.entry.js} +4 -45
- package/dist/esm/gross-payment-chart-core.entry.js +8 -2
- package/dist/esm/justifi-additional-questions-form-step_5.entry.js +22 -18
- package/dist/esm/justifi-additional-questions_4.entry.js +6 -8
- package/dist/esm/justifi-billing-form_4.entry.js +1 -1
- package/dist/esm/justifi-business-details.entry.js +22 -5
- package/dist/esm/justifi-business-form.entry.js +60 -51
- package/dist/esm/justifi-business-list.entry.js +1 -1
- package/dist/esm/justifi-checkout.entry.js +1 -1
- package/dist/esm/justifi-gross-payment-chart.entry.js +28 -4
- package/dist/esm/justifi-owner-form.entry.js +19 -11
- package/dist/esm/justifi-payment-details.entry.js +26 -5
- package/dist/esm/justifi-payment-form.entry.js +16 -3
- package/dist/esm/justifi-payment-provisioning.entry.js +16 -16
- package/dist/esm/justifi-payments-list.entry.js +26 -6
- package/dist/esm/justifi-payout-details.entry.js +28 -8
- package/dist/esm/justifi-payouts-list.entry.js +27 -7
- package/dist/esm/loader.js +1 -1
- package/dist/esm/payload-parsers-920f49dd.js +123 -0
- package/dist/esm/payment-details-core.entry.js +8 -2
- package/dist/esm/payments-list-core.entry.js +8 -2
- package/dist/esm/payout-details-core.entry.js +9 -4
- package/dist/esm/payouts-list-core.entry.js +8 -2
- package/dist/esm/utils-4609f32c.js +38 -0
- package/dist/esm/{utils-2828201a.js → utils-684d2e47.js} +7 -1
- package/dist/esm/webcomponents.js +1 -1
- package/dist/module/Business.js +45 -2
- package/dist/module/business-additional-questions-form-step.js +4 -2
- package/dist/module/business-additional-questions-schema.js +16 -7
- package/dist/module/business-address-schema.js +49 -14
- package/dist/module/business-core-info-form-step.js +3 -1
- package/dist/module/business-core-info-schema.js +24 -12
- package/dist/module/business-details-core2.js +8 -3
- package/dist/module/business-form-types.js +8 -1
- package/dist/module/business-identity-schema.js +30 -35
- package/dist/module/business-owners-form-step.js +12 -8
- package/dist/module/business-representative-form-step.js +9 -10
- package/dist/module/business-representative.js +4 -7
- package/dist/module/form-control-text2.js +5 -1
- package/dist/module/gross-payment-chart-core2.js +8 -2
- package/dist/module/helpers.js +4 -0
- package/dist/module/{business-address-form.js → identity-address-form.js} +17 -20
- package/dist/module/justifi-business-details.js +21 -4
- package/dist/module/justifi-business-form.js +65 -56
- package/dist/module/justifi-gross-payment-chart.js +28 -4
- package/dist/module/justifi-identity-address-form.d.ts +11 -0
- package/dist/module/justifi-identity-address-form.js +6 -0
- package/dist/module/justifi-payment-details.js +26 -5
- package/dist/module/justifi-payment-form.js +18 -4
- package/dist/module/justifi-payment-provisioning.js +24 -23
- package/dist/module/justifi-payments-list.js +26 -6
- package/dist/module/justifi-payout-details.js +28 -8
- package/dist/module/justifi-payouts-list.js +27 -7
- package/dist/module/legal-address-form-step.js +8 -11
- package/dist/module/legal-address-form.js +5 -9
- package/dist/module/owner-form.js +22 -12
- package/dist/module/payment-details-core2.js +8 -2
- package/dist/module/payment-method-form.js +1 -1
- package/dist/module/payments-list-core2.js +8 -2
- package/dist/module/payout-details-core2.js +9 -4
- package/dist/module/payouts-list-core2.js +8 -2
- package/dist/module/utils3.js +31 -1
- package/dist/module/utils4.js +7 -1
- package/dist/types/api/ComponentError.d.ts +18 -0
- package/dist/types/api/services/utils.d.ts +2 -0
- package/dist/types/api/shared.d.ts +9 -0
- package/dist/types/components/business-details/business-details-core.d.ts +3 -0
- package/dist/types/components/business-details/business-details.d.ts +3 -0
- package/dist/types/components/business-forms/business-form/business-form.d.ts +4 -2
- package/dist/types/components/business-forms/owner-form/identity-address/identity-address-form.d.ts +10 -0
- package/dist/types/components/business-forms/owner-form/owner-form.d.ts +5 -1
- package/dist/types/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.d.ts +3 -1
- package/dist/types/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/payment-provisioning.d.ts +3 -2
- package/dist/types/components/business-forms/schemas/business-additional-questions-schema.d.ts +1 -1
- package/dist/types/components/business-forms/schemas/business-address-schema.d.ts +1 -12
- package/dist/types/components/business-forms/schemas/business-core-info-schema.d.ts +1 -1
- package/dist/types/components/business-forms/schemas/business-form-schema.d.ts +7 -3
- package/dist/types/components/business-forms/schemas/business-identity-schema.d.ts +5 -31
- package/dist/types/components/business-forms/utils/business-form-types.d.ts +10 -0
- package/dist/types/components/business-forms/utils/helpers.d.ts +2 -0
- package/dist/types/components/form/form-control-text.d.ts +2 -0
- package/dist/types/components/form/utils.d.ts +1 -0
- package/dist/types/components/gross-payment-chart/get-gross-payment-chart-data.d.ts +5 -8
- package/dist/types/components/gross-payment-chart/gross-payment-chart-core.d.ts +3 -0
- package/dist/types/components/gross-payment-chart/gross-payment-chart.d.ts +4 -0
- package/dist/types/components/payment-details/payment-details-core.d.ts +3 -0
- package/dist/types/components/payment-details/payment-details.d.ts +4 -0
- package/dist/types/components/payment-form/payment-form.d.ts +4 -1
- package/dist/types/components/payments-list/payments-list-core.d.ts +2 -0
- package/dist/types/components/payments-list/payments-list.d.ts +4 -0
- package/dist/types/components/payout-details/payout-details-core.d.ts +3 -0
- package/dist/types/components/payout-details/payout-details.d.ts +4 -0
- package/dist/types/components/payouts-list/payouts-list-core.d.ts +2 -0
- package/dist/types/components/payouts-list/payouts-list.d.ts +4 -0
- package/dist/types/components.d.ts +217 -43
- package/dist/webcomponents/p-091f9732.entry.js +1 -0
- package/dist/webcomponents/p-0b76c770.entry.js +1 -0
- package/dist/webcomponents/p-0d81883d.entry.js +1 -0
- package/dist/webcomponents/{p-cb8f9cb8.entry.js → p-102b593a.entry.js} +1 -1
- package/dist/webcomponents/p-28cd23c8.entry.js +1 -0
- package/dist/webcomponents/p-2b8368d2.js +1 -0
- package/dist/webcomponents/p-436d27b9.entry.js +1 -0
- package/dist/webcomponents/p-448063ba.entry.js +1 -0
- package/dist/webcomponents/p-5341321d.entry.js +1 -0
- package/dist/webcomponents/p-5b262705.entry.js +1 -0
- package/dist/webcomponents/p-5e503d7d.entry.js +1 -0
- package/dist/webcomponents/p-6047b960.entry.js +1 -0
- package/dist/webcomponents/p-6f294d5d.js +1 -0
- package/dist/webcomponents/p-7294eb89.entry.js +1 -0
- package/dist/webcomponents/p-746bfba6.entry.js +1 -0
- package/dist/webcomponents/p-7c6a355f.entry.js +1 -0
- package/dist/webcomponents/p-935d6f55.js +1 -0
- package/dist/webcomponents/{p-e924f2e1.entry.js → p-959250e3.entry.js} +1 -1
- package/dist/webcomponents/{p-b37d6888.entry.js → p-a130a884.entry.js} +1 -1
- package/dist/webcomponents/p-ac670a3e.js +1 -0
- package/dist/webcomponents/p-ae21ed6f.entry.js +19 -0
- package/dist/webcomponents/p-c071d8c1.entry.js +1 -0
- package/dist/webcomponents/p-c340b60f.js +1 -0
- package/dist/webcomponents/p-d5aab6b5.entry.js +1 -0
- package/dist/webcomponents/p-d5c80489.entry.js +1 -0
- package/dist/webcomponents/p-d776fe10.entry.js +1 -0
- package/dist/webcomponents/p-d8679fad.entry.js +1 -0
- package/dist/webcomponents/p-e84b3616.entry.js +1 -0
- package/dist/webcomponents/p-ea2cca2a.js +1 -0
- package/dist/webcomponents/webcomponents.esm.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/Identity-1c4528b8.js +0 -49
- package/dist/cjs/business-additional-questions-schema-cbac27f2.js +0 -26
- package/dist/cjs/justifi-business-address-form-step.cjs.entry.js +0 -35
- package/dist/cjs/payload-parsers-9e72e80f.js +0 -99
- package/dist/cjs/utils-f5d82f21.js +0 -10
- package/dist/collection/api/mockData/MockOnboardingData.js +0 -117
- package/dist/collection/api/mockData/MockPayments.js +0 -243
- package/dist/collection/api/mockData/MockSubAccount.js +0 -102
- package/dist/collection/api/mockData/mockGrossVolumeReport.js +0 -125
- package/dist/collection/components/business-forms/business-form/business-address/test/business-address.e2e.js +0 -9
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.css +0 -2536
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.js +0 -97
- package/dist/collection/components/business-forms/payment-provisioning/business-address/test/business-address-form-step.spec.js +0 -97
- package/dist/collection/components/business-forms/schemas/business-owners-schema.js +0 -16
- package/dist/collection/components/card-form/test/card-form.e2e.js +0 -13
- package/dist/esm/Identity-5f8f916f.js +0 -46
- package/dist/esm/business-additional-questions-schema-2cb80f70.js +0 -23
- package/dist/esm/justifi-business-address-form-step.entry.js +0 -31
- package/dist/esm/payload-parsers-caea809d.js +0 -91
- package/dist/esm/utils-546ca6aa.js +0 -8
- package/dist/module/Identity.js +0 -46
- package/dist/module/justifi-business-address-form-step.d.ts +0 -11
- package/dist/module/justifi-business-address-form-step.js +0 -75
- package/dist/module/justifi-business-address-form.d.ts +0 -11
- package/dist/module/justifi-business-address-form.js +0 -6
- package/dist/types/api/mockData/MockOnboardingData.d.ts +0 -8
- package/dist/types/api/mockData/MockPayments.d.ts +0 -3
- package/dist/types/api/mockData/MockSubAccount.d.ts +0 -3
- package/dist/types/components/business-forms/business-form/business-address/business-address-form.d.ts +0 -9
- package/dist/types/components/business-forms/payment-provisioning/business-address/business-address-form-step.d.ts +0 -9
- package/dist/types/components/business-forms/schemas/business-owners-schema.d.ts +0 -33
- package/dist/webcomponents/p-03b1d0d5.entry.js +0 -1
- package/dist/webcomponents/p-0e189d6a.entry.js +0 -1
- package/dist/webcomponents/p-16dcf053.entry.js +0 -1
- package/dist/webcomponents/p-17d72f4a.js +0 -1
- package/dist/webcomponents/p-38ba2848.entry.js +0 -1
- package/dist/webcomponents/p-41870765.entry.js +0 -1
- package/dist/webcomponents/p-461f42b8.entry.js +0 -1
- package/dist/webcomponents/p-48c2400e.js +0 -1
- package/dist/webcomponents/p-491ca87f.js +0 -1
- package/dist/webcomponents/p-5be4e217.entry.js +0 -1
- package/dist/webcomponents/p-60714f2a.entry.js +0 -1
- package/dist/webcomponents/p-65500b31.entry.js +0 -19
- package/dist/webcomponents/p-6ed680e9.js +0 -1
- package/dist/webcomponents/p-7ec301b5.entry.js +0 -1
- package/dist/webcomponents/p-9207ccb2.entry.js +0 -1
- package/dist/webcomponents/p-9e4b81ad.entry.js +0 -1
- package/dist/webcomponents/p-a141c531.js +0 -1
- package/dist/webcomponents/p-a2dbe90f.entry.js +0 -1
- package/dist/webcomponents/p-a68519e5.entry.js +0 -1
- package/dist/webcomponents/p-af8363a1.entry.js +0 -1
- package/dist/webcomponents/p-b1bc23af.entry.js +0 -1
- package/dist/webcomponents/p-b5a3bf86.entry.js +0 -1
- package/dist/webcomponents/p-b8f22856.js +0 -1
- package/dist/webcomponents/p-d0761829.entry.js +0 -1
- package/dist/webcomponents/p-dbe32e75.entry.js +0 -1
- package/dist/webcomponents/p-e0c1cba8.js +0 -1
- package/dist/webcomponents/p-eed5f4ad.entry.js +0 -1
- package/dist/webcomponents/p-fe8a94c1.entry.js +0 -1
- /package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.css → owner-form/identity-address/identity-address-form.css} +0 -0
- /package/dist/types/{api → home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil}/mockData/mockGrossVolumeReport.d.ts +0 -0
- /package/dist/types/home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil/{config.d.ts → packages/webcomponents/config.d.ts} +0 -0
package/dist/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2024-
|
|
2
|
+
"timestamp": "2024-05-03T22:49:41",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.10.0",
|
|
@@ -115,7 +115,28 @@
|
|
|
115
115
|
}
|
|
116
116
|
],
|
|
117
117
|
"methods": [],
|
|
118
|
-
"events": [
|
|
118
|
+
"events": [
|
|
119
|
+
{
|
|
120
|
+
"event": "error-event",
|
|
121
|
+
"detail": "ComponentError",
|
|
122
|
+
"bubbles": true,
|
|
123
|
+
"complexType": {
|
|
124
|
+
"original": "ComponentError",
|
|
125
|
+
"resolved": "ComponentError",
|
|
126
|
+
"references": {
|
|
127
|
+
"ComponentError": {
|
|
128
|
+
"location": "import",
|
|
129
|
+
"path": "../../api/ComponentError",
|
|
130
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"cancelable": true,
|
|
135
|
+
"composed": true,
|
|
136
|
+
"docs": "",
|
|
137
|
+
"docsTags": []
|
|
138
|
+
}
|
|
139
|
+
],
|
|
119
140
|
"listeners": [],
|
|
120
141
|
"styles": [],
|
|
121
142
|
"slots": [],
|
|
@@ -719,23 +740,13 @@
|
|
|
719
740
|
}
|
|
720
741
|
],
|
|
721
742
|
"dependents": [
|
|
722
|
-
"justifi-business-address-form",
|
|
723
|
-
"justifi-business-address-form-step",
|
|
724
743
|
"justifi-business-owners",
|
|
725
744
|
"justifi-business-representative",
|
|
726
745
|
"justifi-business-representative-form-step",
|
|
727
|
-
"justifi-legal-address-form",
|
|
728
|
-
"justifi-legal-address-form-step",
|
|
729
746
|
"justifi-owner-form"
|
|
730
747
|
],
|
|
731
748
|
"dependencies": [],
|
|
732
749
|
"dependencyGraph": {
|
|
733
|
-
"justifi-business-address-form": [
|
|
734
|
-
"form-control-number"
|
|
735
|
-
],
|
|
736
|
-
"justifi-business-address-form-step": [
|
|
737
|
-
"form-control-number"
|
|
738
|
-
],
|
|
739
750
|
"justifi-business-owners": [
|
|
740
751
|
"form-control-number"
|
|
741
752
|
],
|
|
@@ -745,12 +756,6 @@
|
|
|
745
756
|
"justifi-business-representative-form-step": [
|
|
746
757
|
"form-control-number"
|
|
747
758
|
],
|
|
748
|
-
"justifi-legal-address-form": [
|
|
749
|
-
"form-control-number"
|
|
750
|
-
],
|
|
751
|
-
"justifi-legal-address-form-step": [
|
|
752
|
-
"form-control-number"
|
|
753
|
-
],
|
|
754
759
|
"justifi-owner-form": [
|
|
755
760
|
"form-control-number"
|
|
756
761
|
]
|
|
@@ -1178,34 +1183,21 @@
|
|
|
1178
1183
|
}
|
|
1179
1184
|
],
|
|
1180
1185
|
"dependents": [
|
|
1181
|
-
"justifi-business-address-form",
|
|
1182
|
-
"justifi-business-address-form-step",
|
|
1183
1186
|
"justifi-business-core-info",
|
|
1184
1187
|
"justifi-business-core-info-form-step",
|
|
1185
|
-
"justifi-
|
|
1186
|
-
"justifi-business-representative-form-step",
|
|
1188
|
+
"justifi-identity-address-form",
|
|
1187
1189
|
"justifi-legal-address-form",
|
|
1188
|
-
"justifi-legal-address-form-step"
|
|
1189
|
-
"justifi-owner-form"
|
|
1190
|
+
"justifi-legal-address-form-step"
|
|
1190
1191
|
],
|
|
1191
1192
|
"dependencies": [],
|
|
1192
1193
|
"dependencyGraph": {
|
|
1193
|
-
"justifi-business-address-form": [
|
|
1194
|
-
"form-control-select"
|
|
1195
|
-
],
|
|
1196
|
-
"justifi-business-address-form-step": [
|
|
1197
|
-
"form-control-select"
|
|
1198
|
-
],
|
|
1199
1194
|
"justifi-business-core-info": [
|
|
1200
1195
|
"form-control-select"
|
|
1201
1196
|
],
|
|
1202
1197
|
"justifi-business-core-info-form-step": [
|
|
1203
1198
|
"form-control-select"
|
|
1204
1199
|
],
|
|
1205
|
-
"justifi-
|
|
1206
|
-
"form-control-select"
|
|
1207
|
-
],
|
|
1208
|
-
"justifi-business-representative-form-step": [
|
|
1200
|
+
"justifi-identity-address-form": [
|
|
1209
1201
|
"form-control-select"
|
|
1210
1202
|
],
|
|
1211
1203
|
"justifi-legal-address-form": [
|
|
@@ -1213,9 +1205,6 @@
|
|
|
1213
1205
|
],
|
|
1214
1206
|
"justifi-legal-address-form-step": [
|
|
1215
1207
|
"form-control-select"
|
|
1216
|
-
],
|
|
1217
|
-
"justifi-owner-form": [
|
|
1218
|
-
"form-control-select"
|
|
1219
1208
|
]
|
|
1220
1209
|
}
|
|
1221
1210
|
},
|
|
@@ -1311,6 +1300,26 @@
|
|
|
1311
1300
|
"optional": false,
|
|
1312
1301
|
"required": false
|
|
1313
1302
|
},
|
|
1303
|
+
{
|
|
1304
|
+
"name": "keyDownHandler",
|
|
1305
|
+
"type": "(event: any) => void",
|
|
1306
|
+
"complexType": {
|
|
1307
|
+
"original": "(event: any) => void",
|
|
1308
|
+
"resolved": "(event: any) => void",
|
|
1309
|
+
"references": {}
|
|
1310
|
+
},
|
|
1311
|
+
"mutable": false,
|
|
1312
|
+
"reflectToAttr": false,
|
|
1313
|
+
"docs": "",
|
|
1314
|
+
"docsTags": [],
|
|
1315
|
+
"values": [
|
|
1316
|
+
{
|
|
1317
|
+
"type": "(event: any) => void"
|
|
1318
|
+
}
|
|
1319
|
+
],
|
|
1320
|
+
"optional": true,
|
|
1321
|
+
"required": false
|
|
1322
|
+
},
|
|
1314
1323
|
{
|
|
1315
1324
|
"name": "label",
|
|
1316
1325
|
"type": "string",
|
|
@@ -1332,6 +1341,27 @@
|
|
|
1332
1341
|
"optional": false,
|
|
1333
1342
|
"required": false
|
|
1334
1343
|
},
|
|
1344
|
+
{
|
|
1345
|
+
"name": "maxLength",
|
|
1346
|
+
"type": "number",
|
|
1347
|
+
"complexType": {
|
|
1348
|
+
"original": "number",
|
|
1349
|
+
"resolved": "number",
|
|
1350
|
+
"references": {}
|
|
1351
|
+
},
|
|
1352
|
+
"mutable": false,
|
|
1353
|
+
"attr": "max-length",
|
|
1354
|
+
"reflectToAttr": false,
|
|
1355
|
+
"docs": "",
|
|
1356
|
+
"docsTags": [],
|
|
1357
|
+
"values": [
|
|
1358
|
+
{
|
|
1359
|
+
"type": "number"
|
|
1360
|
+
}
|
|
1361
|
+
],
|
|
1362
|
+
"optional": true,
|
|
1363
|
+
"required": false
|
|
1364
|
+
},
|
|
1335
1365
|
{
|
|
1336
1366
|
"name": "name",
|
|
1337
1367
|
"type": "any",
|
|
@@ -1395,13 +1425,12 @@
|
|
|
1395
1425
|
}
|
|
1396
1426
|
],
|
|
1397
1427
|
"dependents": [
|
|
1398
|
-
"justifi-business-address-form",
|
|
1399
|
-
"justifi-business-address-form-step",
|
|
1400
1428
|
"justifi-business-core-info",
|
|
1401
1429
|
"justifi-business-core-info-form-step",
|
|
1402
1430
|
"justifi-business-owners",
|
|
1403
1431
|
"justifi-business-representative",
|
|
1404
1432
|
"justifi-business-representative-form-step",
|
|
1433
|
+
"justifi-identity-address-form",
|
|
1405
1434
|
"justifi-legal-address-form",
|
|
1406
1435
|
"justifi-legal-address-form-step",
|
|
1407
1436
|
"justifi-owner-form",
|
|
@@ -1409,12 +1438,6 @@
|
|
|
1409
1438
|
],
|
|
1410
1439
|
"dependencies": [],
|
|
1411
1440
|
"dependencyGraph": {
|
|
1412
|
-
"justifi-business-address-form": [
|
|
1413
|
-
"form-control-text"
|
|
1414
|
-
],
|
|
1415
|
-
"justifi-business-address-form-step": [
|
|
1416
|
-
"form-control-text"
|
|
1417
|
-
],
|
|
1418
1441
|
"justifi-business-core-info": [
|
|
1419
1442
|
"form-control-text"
|
|
1420
1443
|
],
|
|
@@ -1430,6 +1453,9 @@
|
|
|
1430
1453
|
"justifi-business-representative-form-step": [
|
|
1431
1454
|
"form-control-text"
|
|
1432
1455
|
],
|
|
1456
|
+
"justifi-identity-address-form": [
|
|
1457
|
+
"form-control-text"
|
|
1458
|
+
],
|
|
1433
1459
|
"justifi-legal-address-form": [
|
|
1434
1460
|
"form-control-text"
|
|
1435
1461
|
],
|
|
@@ -1532,7 +1558,28 @@
|
|
|
1532
1558
|
}
|
|
1533
1559
|
],
|
|
1534
1560
|
"methods": [],
|
|
1535
|
-
"events": [
|
|
1561
|
+
"events": [
|
|
1562
|
+
{
|
|
1563
|
+
"event": "error-event",
|
|
1564
|
+
"detail": "ComponentError",
|
|
1565
|
+
"bubbles": true,
|
|
1566
|
+
"complexType": {
|
|
1567
|
+
"original": "ComponentError",
|
|
1568
|
+
"resolved": "ComponentError",
|
|
1569
|
+
"references": {
|
|
1570
|
+
"ComponentError": {
|
|
1571
|
+
"location": "import",
|
|
1572
|
+
"path": "../../api/ComponentError",
|
|
1573
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
1574
|
+
}
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"cancelable": true,
|
|
1578
|
+
"composed": true,
|
|
1579
|
+
"docs": "",
|
|
1580
|
+
"docsTags": []
|
|
1581
|
+
}
|
|
1582
|
+
],
|
|
1536
1583
|
"listeners": [],
|
|
1537
1584
|
"styles": [],
|
|
1538
1585
|
"slots": [],
|
|
@@ -1639,6 +1686,27 @@
|
|
|
1639
1686
|
],
|
|
1640
1687
|
"usage": {},
|
|
1641
1688
|
"props": [
|
|
1689
|
+
{
|
|
1690
|
+
"name": "allowOptionalFields",
|
|
1691
|
+
"type": "boolean",
|
|
1692
|
+
"complexType": {
|
|
1693
|
+
"original": "boolean",
|
|
1694
|
+
"resolved": "boolean",
|
|
1695
|
+
"references": {}
|
|
1696
|
+
},
|
|
1697
|
+
"mutable": false,
|
|
1698
|
+
"attr": "allow-optional-fields",
|
|
1699
|
+
"reflectToAttr": false,
|
|
1700
|
+
"docs": "",
|
|
1701
|
+
"docsTags": [],
|
|
1702
|
+
"values": [
|
|
1703
|
+
{
|
|
1704
|
+
"type": "boolean"
|
|
1705
|
+
}
|
|
1706
|
+
],
|
|
1707
|
+
"optional": true,
|
|
1708
|
+
"required": false
|
|
1709
|
+
},
|
|
1642
1710
|
{
|
|
1643
1711
|
"name": "authToken",
|
|
1644
1712
|
"type": "string",
|
|
@@ -2252,63 +2320,40 @@
|
|
|
2252
2320
|
}
|
|
2253
2321
|
},
|
|
2254
2322
|
{
|
|
2255
|
-
"filePath": "src/components/business-forms/business-form/business-
|
|
2256
|
-
"encapsulation": "
|
|
2257
|
-
"tag": "justifi-business-
|
|
2258
|
-
"readme": "# justifi-business-
|
|
2259
|
-
"docs": "",
|
|
2260
|
-
"docsTags": [
|
|
2261
|
-
"usage": {},
|
|
2262
|
-
"props": [
|
|
2323
|
+
"filePath": "src/components/business-forms/business-form/business-core-info/business-core-info.tsx",
|
|
2324
|
+
"encapsulation": "none",
|
|
2325
|
+
"tag": "justifi-business-core-info",
|
|
2326
|
+
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2327
|
+
"docs": "\nThe difference between this component and business-core-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2328
|
+
"docsTags": [
|
|
2263
2329
|
{
|
|
2264
|
-
"name": "
|
|
2265
|
-
"
|
|
2266
|
-
"complexType": {
|
|
2267
|
-
"original": "any",
|
|
2268
|
-
"resolved": "any",
|
|
2269
|
-
"references": {}
|
|
2270
|
-
},
|
|
2271
|
-
"mutable": false,
|
|
2272
|
-
"attr": "default-values",
|
|
2273
|
-
"reflectToAttr": false,
|
|
2274
|
-
"docs": "",
|
|
2275
|
-
"docsTags": [],
|
|
2276
|
-
"values": [
|
|
2277
|
-
{
|
|
2278
|
-
"type": "any"
|
|
2279
|
-
}
|
|
2280
|
-
],
|
|
2281
|
-
"optional": false,
|
|
2282
|
-
"required": false
|
|
2330
|
+
"name": "exportedPart",
|
|
2331
|
+
"text": "label: Label for inputs"
|
|
2283
2332
|
},
|
|
2284
2333
|
{
|
|
2285
|
-
"name": "
|
|
2286
|
-
"
|
|
2287
|
-
"complexType": {
|
|
2288
|
-
"original": "any",
|
|
2289
|
-
"resolved": "any",
|
|
2290
|
-
"references": {}
|
|
2291
|
-
},
|
|
2292
|
-
"mutable": false,
|
|
2293
|
-
"attr": "errors",
|
|
2294
|
-
"reflectToAttr": false,
|
|
2295
|
-
"docs": "",
|
|
2296
|
-
"docsTags": [],
|
|
2297
|
-
"values": [
|
|
2298
|
-
{
|
|
2299
|
-
"type": "any"
|
|
2300
|
-
}
|
|
2301
|
-
],
|
|
2302
|
-
"optional": false,
|
|
2303
|
-
"required": false
|
|
2334
|
+
"name": "exportedPart",
|
|
2335
|
+
"text": "input: The input fields"
|
|
2304
2336
|
},
|
|
2305
2337
|
{
|
|
2306
|
-
"name": "
|
|
2307
|
-
"
|
|
2338
|
+
"name": "exportedPart",
|
|
2339
|
+
"text": "input-invalid: Invalid state for inputfs"
|
|
2340
|
+
}
|
|
2341
|
+
],
|
|
2342
|
+
"usage": {},
|
|
2343
|
+
"props": [
|
|
2344
|
+
{
|
|
2345
|
+
"name": "formController",
|
|
2346
|
+
"type": "FormController",
|
|
2308
2347
|
"complexType": {
|
|
2309
|
-
"original": "
|
|
2310
|
-
"resolved": "
|
|
2311
|
-
"references": {
|
|
2348
|
+
"original": "FormController",
|
|
2349
|
+
"resolved": "FormController",
|
|
2350
|
+
"references": {
|
|
2351
|
+
"FormController": {
|
|
2352
|
+
"location": "import",
|
|
2353
|
+
"path": "../../../form/form",
|
|
2354
|
+
"id": "src/components/form/form.ts::FormController"
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2312
2357
|
},
|
|
2313
2358
|
"mutable": false,
|
|
2314
2359
|
"reflectToAttr": false,
|
|
@@ -2316,7 +2361,7 @@
|
|
|
2316
2361
|
"docsTags": [],
|
|
2317
2362
|
"values": [
|
|
2318
2363
|
{
|
|
2319
|
-
"type": "
|
|
2364
|
+
"type": "FormController"
|
|
2320
2365
|
}
|
|
2321
2366
|
],
|
|
2322
2367
|
"optional": false,
|
|
@@ -2330,226 +2375,73 @@
|
|
|
2330
2375
|
"slots": [],
|
|
2331
2376
|
"parts": [],
|
|
2332
2377
|
"dependents": [
|
|
2333
|
-
"justifi-business-
|
|
2334
|
-
"justifi-business-representative-form-step",
|
|
2335
|
-
"justifi-owner-form"
|
|
2378
|
+
"justifi-business-form"
|
|
2336
2379
|
],
|
|
2337
2380
|
"dependencies": [
|
|
2338
2381
|
"form-control-text",
|
|
2339
2382
|
"form-control-select",
|
|
2340
|
-
"form-control-number"
|
|
2383
|
+
"form-control-number-masked"
|
|
2341
2384
|
],
|
|
2342
2385
|
"dependencyGraph": {
|
|
2343
|
-
"justifi-business-
|
|
2386
|
+
"justifi-business-core-info": [
|
|
2344
2387
|
"form-control-text",
|
|
2345
2388
|
"form-control-select",
|
|
2346
|
-
"form-control-number"
|
|
2347
|
-
],
|
|
2348
|
-
"justifi-business-representative": [
|
|
2349
|
-
"justifi-business-address-form"
|
|
2350
|
-
],
|
|
2351
|
-
"justifi-business-representative-form-step": [
|
|
2352
|
-
"justifi-business-address-form"
|
|
2389
|
+
"form-control-number-masked"
|
|
2353
2390
|
],
|
|
2354
|
-
"justifi-
|
|
2355
|
-
"justifi-business-
|
|
2391
|
+
"justifi-business-form": [
|
|
2392
|
+
"justifi-business-core-info"
|
|
2356
2393
|
]
|
|
2357
2394
|
}
|
|
2358
2395
|
},
|
|
2359
2396
|
{
|
|
2360
|
-
"filePath": "src/components/business-forms/payment-provisioning/business-
|
|
2361
|
-
"encapsulation": "
|
|
2362
|
-
"tag": "justifi-business-
|
|
2363
|
-
"readme": "# justifi-business-
|
|
2364
|
-
"docs": "",
|
|
2365
|
-
"docsTags": [
|
|
2397
|
+
"filePath": "src/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.tsx",
|
|
2398
|
+
"encapsulation": "none",
|
|
2399
|
+
"tag": "justifi-business-core-info-form-step",
|
|
2400
|
+
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2401
|
+
"docs": "\nThe difference between this component and business-generic-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2402
|
+
"docsTags": [
|
|
2403
|
+
{
|
|
2404
|
+
"name": "exportedPart",
|
|
2405
|
+
"text": "label: Label for inputs"
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "exportedPart",
|
|
2409
|
+
"text": "input: The input fields"
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"name": "exportedPart",
|
|
2413
|
+
"text": "input-invalid: Invalid state for inputfs"
|
|
2414
|
+
}
|
|
2415
|
+
],
|
|
2366
2416
|
"usage": {},
|
|
2367
2417
|
"props": [
|
|
2368
2418
|
{
|
|
2369
|
-
"name": "
|
|
2370
|
-
"type": "
|
|
2419
|
+
"name": "allowOptionalFields",
|
|
2420
|
+
"type": "boolean",
|
|
2371
2421
|
"complexType": {
|
|
2372
|
-
"original": "
|
|
2373
|
-
"resolved": "
|
|
2422
|
+
"original": "boolean",
|
|
2423
|
+
"resolved": "boolean",
|
|
2374
2424
|
"references": {}
|
|
2375
2425
|
},
|
|
2376
2426
|
"mutable": false,
|
|
2377
|
-
"attr": "
|
|
2427
|
+
"attr": "allow-optional-fields",
|
|
2378
2428
|
"reflectToAttr": false,
|
|
2379
2429
|
"docs": "",
|
|
2380
2430
|
"docsTags": [],
|
|
2381
2431
|
"values": [
|
|
2382
2432
|
{
|
|
2383
|
-
"type": "
|
|
2433
|
+
"type": "boolean"
|
|
2384
2434
|
}
|
|
2385
2435
|
],
|
|
2386
|
-
"optional":
|
|
2436
|
+
"optional": true,
|
|
2387
2437
|
"required": false
|
|
2388
2438
|
},
|
|
2389
2439
|
{
|
|
2390
|
-
"name": "
|
|
2391
|
-
"type": "
|
|
2440
|
+
"name": "authToken",
|
|
2441
|
+
"type": "string",
|
|
2392
2442
|
"complexType": {
|
|
2393
|
-
"original": "
|
|
2394
|
-
"resolved": "
|
|
2395
|
-
"references": {}
|
|
2396
|
-
},
|
|
2397
|
-
"mutable": false,
|
|
2398
|
-
"attr": "errors",
|
|
2399
|
-
"reflectToAttr": false,
|
|
2400
|
-
"docs": "",
|
|
2401
|
-
"docsTags": [],
|
|
2402
|
-
"values": [
|
|
2403
|
-
{
|
|
2404
|
-
"type": "any"
|
|
2405
|
-
}
|
|
2406
|
-
],
|
|
2407
|
-
"optional": false,
|
|
2408
|
-
"required": false
|
|
2409
|
-
},
|
|
2410
|
-
{
|
|
2411
|
-
"name": "handleFormUpdate",
|
|
2412
|
-
"type": "(values: any) => void",
|
|
2413
|
-
"complexType": {
|
|
2414
|
-
"original": "(values: any) => void",
|
|
2415
|
-
"resolved": "(values: any) => void",
|
|
2416
|
-
"references": {}
|
|
2417
|
-
},
|
|
2418
|
-
"mutable": false,
|
|
2419
|
-
"reflectToAttr": false,
|
|
2420
|
-
"docs": "",
|
|
2421
|
-
"docsTags": [],
|
|
2422
|
-
"values": [
|
|
2423
|
-
{
|
|
2424
|
-
"type": "(values: any) => void"
|
|
2425
|
-
}
|
|
2426
|
-
],
|
|
2427
|
-
"optional": false,
|
|
2428
|
-
"required": false
|
|
2429
|
-
}
|
|
2430
|
-
],
|
|
2431
|
-
"methods": [],
|
|
2432
|
-
"events": [],
|
|
2433
|
-
"listeners": [],
|
|
2434
|
-
"styles": [],
|
|
2435
|
-
"slots": [],
|
|
2436
|
-
"parts": [],
|
|
2437
|
-
"dependents": [],
|
|
2438
|
-
"dependencies": [
|
|
2439
|
-
"form-control-text",
|
|
2440
|
-
"form-control-select",
|
|
2441
|
-
"form-control-number"
|
|
2442
|
-
],
|
|
2443
|
-
"dependencyGraph": {
|
|
2444
|
-
"justifi-business-address-form-step": [
|
|
2445
|
-
"form-control-text",
|
|
2446
|
-
"form-control-select",
|
|
2447
|
-
"form-control-number"
|
|
2448
|
-
]
|
|
2449
|
-
}
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"filePath": "src/components/business-forms/business-form/business-core-info/business-core-info.tsx",
|
|
2453
|
-
"encapsulation": "none",
|
|
2454
|
-
"tag": "justifi-business-core-info",
|
|
2455
|
-
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2456
|
-
"docs": "\nThe difference between this component and business-core-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2457
|
-
"docsTags": [
|
|
2458
|
-
{
|
|
2459
|
-
"name": "exportedPart",
|
|
2460
|
-
"text": "label: Label for inputs"
|
|
2461
|
-
},
|
|
2462
|
-
{
|
|
2463
|
-
"name": "exportedPart",
|
|
2464
|
-
"text": "input: The input fields"
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"name": "exportedPart",
|
|
2468
|
-
"text": "input-invalid: Invalid state for inputfs"
|
|
2469
|
-
}
|
|
2470
|
-
],
|
|
2471
|
-
"usage": {},
|
|
2472
|
-
"props": [
|
|
2473
|
-
{
|
|
2474
|
-
"name": "formController",
|
|
2475
|
-
"type": "FormController",
|
|
2476
|
-
"complexType": {
|
|
2477
|
-
"original": "FormController",
|
|
2478
|
-
"resolved": "FormController",
|
|
2479
|
-
"references": {
|
|
2480
|
-
"FormController": {
|
|
2481
|
-
"location": "import",
|
|
2482
|
-
"path": "../../../form/form",
|
|
2483
|
-
"id": "src/components/form/form.ts::FormController"
|
|
2484
|
-
}
|
|
2485
|
-
}
|
|
2486
|
-
},
|
|
2487
|
-
"mutable": false,
|
|
2488
|
-
"reflectToAttr": false,
|
|
2489
|
-
"docs": "",
|
|
2490
|
-
"docsTags": [],
|
|
2491
|
-
"values": [
|
|
2492
|
-
{
|
|
2493
|
-
"type": "FormController"
|
|
2494
|
-
}
|
|
2495
|
-
],
|
|
2496
|
-
"optional": false,
|
|
2497
|
-
"required": false
|
|
2498
|
-
}
|
|
2499
|
-
],
|
|
2500
|
-
"methods": [],
|
|
2501
|
-
"events": [],
|
|
2502
|
-
"listeners": [],
|
|
2503
|
-
"styles": [],
|
|
2504
|
-
"slots": [],
|
|
2505
|
-
"parts": [],
|
|
2506
|
-
"dependents": [
|
|
2507
|
-
"justifi-business-form"
|
|
2508
|
-
],
|
|
2509
|
-
"dependencies": [
|
|
2510
|
-
"form-control-text",
|
|
2511
|
-
"form-control-select",
|
|
2512
|
-
"form-control-number-masked"
|
|
2513
|
-
],
|
|
2514
|
-
"dependencyGraph": {
|
|
2515
|
-
"justifi-business-core-info": [
|
|
2516
|
-
"form-control-text",
|
|
2517
|
-
"form-control-select",
|
|
2518
|
-
"form-control-number-masked"
|
|
2519
|
-
],
|
|
2520
|
-
"justifi-business-form": [
|
|
2521
|
-
"justifi-business-core-info"
|
|
2522
|
-
]
|
|
2523
|
-
}
|
|
2524
|
-
},
|
|
2525
|
-
{
|
|
2526
|
-
"filePath": "src/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.tsx",
|
|
2527
|
-
"encapsulation": "none",
|
|
2528
|
-
"tag": "justifi-business-core-info-form-step",
|
|
2529
|
-
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2530
|
-
"docs": "\nThe difference between this component and business-generic-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2531
|
-
"docsTags": [
|
|
2532
|
-
{
|
|
2533
|
-
"name": "exportedPart",
|
|
2534
|
-
"text": "label: Label for inputs"
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
"name": "exportedPart",
|
|
2538
|
-
"text": "input: The input fields"
|
|
2539
|
-
},
|
|
2540
|
-
{
|
|
2541
|
-
"name": "exportedPart",
|
|
2542
|
-
"text": "input-invalid: Invalid state for inputfs"
|
|
2543
|
-
}
|
|
2544
|
-
],
|
|
2545
|
-
"usage": {},
|
|
2546
|
-
"props": [
|
|
2547
|
-
{
|
|
2548
|
-
"name": "authToken",
|
|
2549
|
-
"type": "string",
|
|
2550
|
-
"complexType": {
|
|
2551
|
-
"original": "string",
|
|
2552
|
-
"resolved": "string",
|
|
2443
|
+
"original": "string",
|
|
2444
|
+
"resolved": "string",
|
|
2553
2445
|
"references": {}
|
|
2554
2446
|
},
|
|
2555
2447
|
"mutable": false,
|
|
@@ -2776,7 +2668,28 @@
|
|
|
2776
2668
|
}
|
|
2777
2669
|
],
|
|
2778
2670
|
"methods": [],
|
|
2779
|
-
"events": [
|
|
2671
|
+
"events": [
|
|
2672
|
+
{
|
|
2673
|
+
"event": "error-event",
|
|
2674
|
+
"detail": "ComponentError",
|
|
2675
|
+
"bubbles": true,
|
|
2676
|
+
"complexType": {
|
|
2677
|
+
"original": "ComponentError",
|
|
2678
|
+
"resolved": "ComponentError",
|
|
2679
|
+
"references": {
|
|
2680
|
+
"ComponentError": {
|
|
2681
|
+
"location": "import",
|
|
2682
|
+
"path": "../../api/ComponentError",
|
|
2683
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
},
|
|
2687
|
+
"cancelable": true,
|
|
2688
|
+
"composed": true,
|
|
2689
|
+
"docs": "",
|
|
2690
|
+
"docsTags": []
|
|
2691
|
+
}
|
|
2692
|
+
],
|
|
2780
2693
|
"listeners": [],
|
|
2781
2694
|
"styles": [],
|
|
2782
2695
|
"slots": [],
|
|
@@ -2887,6 +2800,26 @@
|
|
|
2887
2800
|
],
|
|
2888
2801
|
"methods": [],
|
|
2889
2802
|
"events": [
|
|
2803
|
+
{
|
|
2804
|
+
"event": "click-event",
|
|
2805
|
+
"detail": "BusinessFormClickEvent",
|
|
2806
|
+
"bubbles": true,
|
|
2807
|
+
"complexType": {
|
|
2808
|
+
"original": "BusinessFormClickEvent",
|
|
2809
|
+
"resolved": "BusinessFormClickEvent",
|
|
2810
|
+
"references": {
|
|
2811
|
+
"BusinessFormClickEvent": {
|
|
2812
|
+
"location": "import",
|
|
2813
|
+
"path": "../utils/business-form-types",
|
|
2814
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::BusinessFormClickEvent"
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2817
|
+
},
|
|
2818
|
+
"cancelable": true,
|
|
2819
|
+
"composed": true,
|
|
2820
|
+
"docs": "",
|
|
2821
|
+
"docsTags": []
|
|
2822
|
+
},
|
|
2890
2823
|
{
|
|
2891
2824
|
"event": "clickEvent",
|
|
2892
2825
|
"detail": "BusinessFormClickEvent",
|
|
@@ -2953,7 +2886,6 @@
|
|
|
2953
2886
|
],
|
|
2954
2887
|
"justifi-legal-address-form": [
|
|
2955
2888
|
"form-control-text",
|
|
2956
|
-
"form-control-number",
|
|
2957
2889
|
"form-control-select"
|
|
2958
2890
|
],
|
|
2959
2891
|
"justifi-additional-questions": [
|
|
@@ -2961,16 +2893,14 @@
|
|
|
2961
2893
|
],
|
|
2962
2894
|
"justifi-business-representative": [
|
|
2963
2895
|
"form-control-text",
|
|
2964
|
-
"form-control-select",
|
|
2965
2896
|
"form-control-number-masked",
|
|
2966
2897
|
"form-control-datepart",
|
|
2967
2898
|
"form-control-number",
|
|
2968
|
-
"justifi-
|
|
2899
|
+
"justifi-identity-address-form"
|
|
2969
2900
|
],
|
|
2970
|
-
"justifi-
|
|
2901
|
+
"justifi-identity-address-form": [
|
|
2971
2902
|
"form-control-text",
|
|
2972
|
-
"form-control-select"
|
|
2973
|
-
"form-control-number"
|
|
2903
|
+
"form-control-select"
|
|
2974
2904
|
]
|
|
2975
2905
|
}
|
|
2976
2906
|
},
|
|
@@ -3219,6 +3149,27 @@
|
|
|
3219
3149
|
],
|
|
3220
3150
|
"usage": {},
|
|
3221
3151
|
"props": [
|
|
3152
|
+
{
|
|
3153
|
+
"name": "allowOptionalFields",
|
|
3154
|
+
"type": "boolean",
|
|
3155
|
+
"complexType": {
|
|
3156
|
+
"original": "boolean",
|
|
3157
|
+
"resolved": "boolean",
|
|
3158
|
+
"references": {}
|
|
3159
|
+
},
|
|
3160
|
+
"mutable": false,
|
|
3161
|
+
"attr": "allow-optional-fields",
|
|
3162
|
+
"reflectToAttr": false,
|
|
3163
|
+
"docs": "",
|
|
3164
|
+
"docsTags": [],
|
|
3165
|
+
"values": [
|
|
3166
|
+
{
|
|
3167
|
+
"type": "boolean"
|
|
3168
|
+
}
|
|
3169
|
+
],
|
|
3170
|
+
"optional": true,
|
|
3171
|
+
"required": false
|
|
3172
|
+
},
|
|
3222
3173
|
{
|
|
3223
3174
|
"name": "authToken",
|
|
3224
3175
|
"type": "string",
|
|
@@ -3299,6 +3250,26 @@
|
|
|
3299
3250
|
}
|
|
3300
3251
|
],
|
|
3301
3252
|
"events": [
|
|
3253
|
+
{
|
|
3254
|
+
"event": "click-event",
|
|
3255
|
+
"detail": "OwnerFormClickEvent",
|
|
3256
|
+
"bubbles": true,
|
|
3257
|
+
"complexType": {
|
|
3258
|
+
"original": "OwnerFormClickEvent",
|
|
3259
|
+
"resolved": "OwnerFormClickEvent",
|
|
3260
|
+
"references": {
|
|
3261
|
+
"OwnerFormClickEvent": {
|
|
3262
|
+
"location": "import",
|
|
3263
|
+
"path": "../../utils/business-form-types",
|
|
3264
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent"
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
"cancelable": true,
|
|
3269
|
+
"composed": true,
|
|
3270
|
+
"docs": "",
|
|
3271
|
+
"docsTags": []
|
|
3272
|
+
},
|
|
3302
3273
|
{
|
|
3303
3274
|
"event": "formLoading",
|
|
3304
3275
|
"detail": "boolean",
|
|
@@ -3370,16 +3341,14 @@
|
|
|
3370
3341
|
],
|
|
3371
3342
|
"justifi-owner-form": [
|
|
3372
3343
|
"form-control-text",
|
|
3373
|
-
"form-control-select",
|
|
3374
3344
|
"form-control-number-masked",
|
|
3375
3345
|
"form-control-datepart",
|
|
3376
3346
|
"form-control-number",
|
|
3377
|
-
"justifi-
|
|
3347
|
+
"justifi-identity-address-form"
|
|
3378
3348
|
],
|
|
3379
|
-
"justifi-
|
|
3349
|
+
"justifi-identity-address-form": [
|
|
3380
3350
|
"form-control-text",
|
|
3381
|
-
"form-control-select"
|
|
3382
|
-
"form-control-number"
|
|
3351
|
+
"form-control-select"
|
|
3383
3352
|
],
|
|
3384
3353
|
"justifi-payment-provisioning": [
|
|
3385
3354
|
"justifi-business-owners-form-step"
|
|
@@ -3438,25 +3407,22 @@
|
|
|
3438
3407
|
],
|
|
3439
3408
|
"dependencies": [
|
|
3440
3409
|
"form-control-text",
|
|
3441
|
-
"form-control-select",
|
|
3442
3410
|
"form-control-number-masked",
|
|
3443
3411
|
"form-control-datepart",
|
|
3444
3412
|
"form-control-number",
|
|
3445
|
-
"justifi-
|
|
3413
|
+
"justifi-identity-address-form"
|
|
3446
3414
|
],
|
|
3447
3415
|
"dependencyGraph": {
|
|
3448
3416
|
"justifi-business-representative": [
|
|
3449
3417
|
"form-control-text",
|
|
3450
|
-
"form-control-select",
|
|
3451
3418
|
"form-control-number-masked",
|
|
3452
3419
|
"form-control-datepart",
|
|
3453
3420
|
"form-control-number",
|
|
3454
|
-
"justifi-
|
|
3421
|
+
"justifi-identity-address-form"
|
|
3455
3422
|
],
|
|
3456
|
-
"justifi-
|
|
3423
|
+
"justifi-identity-address-form": [
|
|
3457
3424
|
"form-control-text",
|
|
3458
|
-
"form-control-select"
|
|
3459
|
-
"form-control-number"
|
|
3425
|
+
"form-control-select"
|
|
3460
3426
|
],
|
|
3461
3427
|
"justifi-business-form": [
|
|
3462
3428
|
"justifi-business-representative"
|
|
@@ -3472,6 +3438,27 @@
|
|
|
3472
3438
|
"docsTags": [],
|
|
3473
3439
|
"usage": {},
|
|
3474
3440
|
"props": [
|
|
3441
|
+
{
|
|
3442
|
+
"name": "allowOptionalFields",
|
|
3443
|
+
"type": "boolean",
|
|
3444
|
+
"complexType": {
|
|
3445
|
+
"original": "boolean",
|
|
3446
|
+
"resolved": "boolean",
|
|
3447
|
+
"references": {}
|
|
3448
|
+
},
|
|
3449
|
+
"mutable": false,
|
|
3450
|
+
"attr": "allow-optional-fields",
|
|
3451
|
+
"reflectToAttr": false,
|
|
3452
|
+
"docs": "",
|
|
3453
|
+
"docsTags": [],
|
|
3454
|
+
"values": [
|
|
3455
|
+
{
|
|
3456
|
+
"type": "boolean"
|
|
3457
|
+
}
|
|
3458
|
+
],
|
|
3459
|
+
"optional": true,
|
|
3460
|
+
"required": false
|
|
3461
|
+
},
|
|
3475
3462
|
{
|
|
3476
3463
|
"name": "authToken",
|
|
3477
3464
|
"type": "string",
|
|
@@ -3621,25 +3608,22 @@
|
|
|
3621
3608
|
],
|
|
3622
3609
|
"dependencies": [
|
|
3623
3610
|
"form-control-text",
|
|
3624
|
-
"form-control-select",
|
|
3625
3611
|
"form-control-number-masked",
|
|
3626
3612
|
"form-control-datepart",
|
|
3627
3613
|
"form-control-number",
|
|
3628
|
-
"justifi-
|
|
3614
|
+
"justifi-identity-address-form"
|
|
3629
3615
|
],
|
|
3630
3616
|
"dependencyGraph": {
|
|
3631
3617
|
"justifi-business-representative-form-step": [
|
|
3632
3618
|
"form-control-text",
|
|
3633
|
-
"form-control-select",
|
|
3634
3619
|
"form-control-number-masked",
|
|
3635
3620
|
"form-control-datepart",
|
|
3636
3621
|
"form-control-number",
|
|
3637
|
-
"justifi-
|
|
3622
|
+
"justifi-identity-address-form"
|
|
3638
3623
|
],
|
|
3639
|
-
"justifi-
|
|
3624
|
+
"justifi-identity-address-form": [
|
|
3640
3625
|
"form-control-text",
|
|
3641
|
-
"form-control-select"
|
|
3642
|
-
"form-control-number"
|
|
3626
|
+
"form-control-select"
|
|
3643
3627
|
],
|
|
3644
3628
|
"justifi-payment-provisioning": [
|
|
3645
3629
|
"justifi-business-representative-form-step"
|
|
@@ -4358,7 +4342,28 @@
|
|
|
4358
4342
|
}
|
|
4359
4343
|
],
|
|
4360
4344
|
"methods": [],
|
|
4361
|
-
"events": [
|
|
4345
|
+
"events": [
|
|
4346
|
+
{
|
|
4347
|
+
"event": "error-event",
|
|
4348
|
+
"detail": "ComponentError",
|
|
4349
|
+
"bubbles": true,
|
|
4350
|
+
"complexType": {
|
|
4351
|
+
"original": "ComponentError",
|
|
4352
|
+
"resolved": "ComponentError",
|
|
4353
|
+
"references": {
|
|
4354
|
+
"ComponentError": {
|
|
4355
|
+
"location": "import",
|
|
4356
|
+
"path": "../../api/ComponentError",
|
|
4357
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
4358
|
+
}
|
|
4359
|
+
}
|
|
4360
|
+
},
|
|
4361
|
+
"cancelable": true,
|
|
4362
|
+
"composed": true,
|
|
4363
|
+
"docs": "",
|
|
4364
|
+
"docsTags": []
|
|
4365
|
+
}
|
|
4366
|
+
],
|
|
4362
4367
|
"listeners": [],
|
|
4363
4368
|
"styles": [],
|
|
4364
4369
|
"slots": [],
|
|
@@ -4373,6 +4378,109 @@
|
|
|
4373
4378
|
]
|
|
4374
4379
|
}
|
|
4375
4380
|
},
|
|
4381
|
+
{
|
|
4382
|
+
"filePath": "src/components/business-forms/owner-form/identity-address/identity-address-form.tsx",
|
|
4383
|
+
"encapsulation": "shadow",
|
|
4384
|
+
"tag": "justifi-identity-address-form",
|
|
4385
|
+
"readme": "# justifi-business-address\n\n\n",
|
|
4386
|
+
"docs": "",
|
|
4387
|
+
"docsTags": [],
|
|
4388
|
+
"usage": {},
|
|
4389
|
+
"props": [
|
|
4390
|
+
{
|
|
4391
|
+
"name": "defaultValues",
|
|
4392
|
+
"type": "any",
|
|
4393
|
+
"complexType": {
|
|
4394
|
+
"original": "any",
|
|
4395
|
+
"resolved": "any",
|
|
4396
|
+
"references": {}
|
|
4397
|
+
},
|
|
4398
|
+
"mutable": false,
|
|
4399
|
+
"attr": "default-values",
|
|
4400
|
+
"reflectToAttr": false,
|
|
4401
|
+
"docs": "",
|
|
4402
|
+
"docsTags": [],
|
|
4403
|
+
"values": [
|
|
4404
|
+
{
|
|
4405
|
+
"type": "any"
|
|
4406
|
+
}
|
|
4407
|
+
],
|
|
4408
|
+
"optional": false,
|
|
4409
|
+
"required": false
|
|
4410
|
+
},
|
|
4411
|
+
{
|
|
4412
|
+
"name": "errors",
|
|
4413
|
+
"type": "any",
|
|
4414
|
+
"complexType": {
|
|
4415
|
+
"original": "any",
|
|
4416
|
+
"resolved": "any",
|
|
4417
|
+
"references": {}
|
|
4418
|
+
},
|
|
4419
|
+
"mutable": false,
|
|
4420
|
+
"attr": "errors",
|
|
4421
|
+
"reflectToAttr": false,
|
|
4422
|
+
"docs": "",
|
|
4423
|
+
"docsTags": [],
|
|
4424
|
+
"values": [
|
|
4425
|
+
{
|
|
4426
|
+
"type": "any"
|
|
4427
|
+
}
|
|
4428
|
+
],
|
|
4429
|
+
"optional": false,
|
|
4430
|
+
"required": false
|
|
4431
|
+
},
|
|
4432
|
+
{
|
|
4433
|
+
"name": "handleFormUpdate",
|
|
4434
|
+
"type": "(values: any) => void",
|
|
4435
|
+
"complexType": {
|
|
4436
|
+
"original": "(values: any) => void",
|
|
4437
|
+
"resolved": "(values: any) => void",
|
|
4438
|
+
"references": {}
|
|
4439
|
+
},
|
|
4440
|
+
"mutable": false,
|
|
4441
|
+
"reflectToAttr": false,
|
|
4442
|
+
"docs": "",
|
|
4443
|
+
"docsTags": [],
|
|
4444
|
+
"values": [
|
|
4445
|
+
{
|
|
4446
|
+
"type": "(values: any) => void"
|
|
4447
|
+
}
|
|
4448
|
+
],
|
|
4449
|
+
"optional": false,
|
|
4450
|
+
"required": false
|
|
4451
|
+
}
|
|
4452
|
+
],
|
|
4453
|
+
"methods": [],
|
|
4454
|
+
"events": [],
|
|
4455
|
+
"listeners": [],
|
|
4456
|
+
"styles": [],
|
|
4457
|
+
"slots": [],
|
|
4458
|
+
"parts": [],
|
|
4459
|
+
"dependents": [
|
|
4460
|
+
"justifi-business-representative",
|
|
4461
|
+
"justifi-business-representative-form-step",
|
|
4462
|
+
"justifi-owner-form"
|
|
4463
|
+
],
|
|
4464
|
+
"dependencies": [
|
|
4465
|
+
"form-control-text",
|
|
4466
|
+
"form-control-select"
|
|
4467
|
+
],
|
|
4468
|
+
"dependencyGraph": {
|
|
4469
|
+
"justifi-identity-address-form": [
|
|
4470
|
+
"form-control-text",
|
|
4471
|
+
"form-control-select"
|
|
4472
|
+
],
|
|
4473
|
+
"justifi-business-representative": [
|
|
4474
|
+
"justifi-identity-address-form"
|
|
4475
|
+
],
|
|
4476
|
+
"justifi-business-representative-form-step": [
|
|
4477
|
+
"justifi-identity-address-form"
|
|
4478
|
+
],
|
|
4479
|
+
"justifi-owner-form": [
|
|
4480
|
+
"justifi-identity-address-form"
|
|
4481
|
+
]
|
|
4482
|
+
}
|
|
4483
|
+
},
|
|
4376
4484
|
{
|
|
4377
4485
|
"filePath": "src/components/business-forms/business-form/legal-address-form/legal-address-form.tsx",
|
|
4378
4486
|
"encapsulation": "none",
|
|
@@ -4433,13 +4541,11 @@
|
|
|
4433
4541
|
],
|
|
4434
4542
|
"dependencies": [
|
|
4435
4543
|
"form-control-text",
|
|
4436
|
-
"form-control-number",
|
|
4437
4544
|
"form-control-select"
|
|
4438
4545
|
],
|
|
4439
4546
|
"dependencyGraph": {
|
|
4440
4547
|
"justifi-legal-address-form": [
|
|
4441
4548
|
"form-control-text",
|
|
4442
|
-
"form-control-number",
|
|
4443
4549
|
"form-control-select"
|
|
4444
4550
|
],
|
|
4445
4551
|
"justifi-business-form": [
|
|
@@ -4462,13 +4568,34 @@
|
|
|
4462
4568
|
"name": "exportedPart",
|
|
4463
4569
|
"text": "input: The input fields"
|
|
4464
4570
|
},
|
|
4465
|
-
{
|
|
4466
|
-
"name": "exportedPart",
|
|
4467
|
-
"text": "input-invalid: Invalid state for inputfs"
|
|
4468
|
-
}
|
|
4469
|
-
],
|
|
4470
|
-
"usage": {},
|
|
4471
|
-
"props": [
|
|
4571
|
+
{
|
|
4572
|
+
"name": "exportedPart",
|
|
4573
|
+
"text": "input-invalid: Invalid state for inputfs"
|
|
4574
|
+
}
|
|
4575
|
+
],
|
|
4576
|
+
"usage": {},
|
|
4577
|
+
"props": [
|
|
4578
|
+
{
|
|
4579
|
+
"name": "allowOptionalFields",
|
|
4580
|
+
"type": "boolean",
|
|
4581
|
+
"complexType": {
|
|
4582
|
+
"original": "boolean",
|
|
4583
|
+
"resolved": "boolean",
|
|
4584
|
+
"references": {}
|
|
4585
|
+
},
|
|
4586
|
+
"mutable": false,
|
|
4587
|
+
"attr": "allow-optional-fields",
|
|
4588
|
+
"reflectToAttr": false,
|
|
4589
|
+
"docs": "",
|
|
4590
|
+
"docsTags": [],
|
|
4591
|
+
"values": [
|
|
4592
|
+
{
|
|
4593
|
+
"type": "boolean"
|
|
4594
|
+
}
|
|
4595
|
+
],
|
|
4596
|
+
"optional": true,
|
|
4597
|
+
"required": false
|
|
4598
|
+
},
|
|
4472
4599
|
{
|
|
4473
4600
|
"name": "authToken",
|
|
4474
4601
|
"type": "string",
|
|
@@ -4613,14 +4740,12 @@
|
|
|
4613
4740
|
],
|
|
4614
4741
|
"dependencies": [
|
|
4615
4742
|
"form-control-text",
|
|
4616
|
-
"form-control-select"
|
|
4617
|
-
"form-control-number"
|
|
4743
|
+
"form-control-select"
|
|
4618
4744
|
],
|
|
4619
4745
|
"dependencyGraph": {
|
|
4620
4746
|
"justifi-legal-address-form-step": [
|
|
4621
4747
|
"form-control-text",
|
|
4622
|
-
"form-control-select"
|
|
4623
|
-
"form-control-number"
|
|
4748
|
+
"form-control-select"
|
|
4624
4749
|
],
|
|
4625
4750
|
"justifi-payment-provisioning": [
|
|
4626
4751
|
"justifi-legal-address-form-step"
|
|
@@ -4822,6 +4947,27 @@
|
|
|
4822
4947
|
"docsTags": [],
|
|
4823
4948
|
"usage": {},
|
|
4824
4949
|
"props": [
|
|
4950
|
+
{
|
|
4951
|
+
"name": "allowOptionalFields",
|
|
4952
|
+
"type": "boolean",
|
|
4953
|
+
"complexType": {
|
|
4954
|
+
"original": "boolean",
|
|
4955
|
+
"resolved": "boolean",
|
|
4956
|
+
"references": {}
|
|
4957
|
+
},
|
|
4958
|
+
"mutable": false,
|
|
4959
|
+
"attr": "allow-optional-fields",
|
|
4960
|
+
"reflectToAttr": false,
|
|
4961
|
+
"docs": "",
|
|
4962
|
+
"docsTags": [],
|
|
4963
|
+
"values": [
|
|
4964
|
+
{
|
|
4965
|
+
"type": "boolean"
|
|
4966
|
+
}
|
|
4967
|
+
],
|
|
4968
|
+
"optional": true,
|
|
4969
|
+
"required": false
|
|
4970
|
+
},
|
|
4825
4971
|
{
|
|
4826
4972
|
"name": "authToken",
|
|
4827
4973
|
"type": "string",
|
|
@@ -4995,6 +5141,26 @@
|
|
|
4995
5141
|
}
|
|
4996
5142
|
],
|
|
4997
5143
|
"events": [
|
|
5144
|
+
{
|
|
5145
|
+
"event": "click-event",
|
|
5146
|
+
"detail": "OwnerFormClickEvent",
|
|
5147
|
+
"bubbles": true,
|
|
5148
|
+
"complexType": {
|
|
5149
|
+
"original": "OwnerFormClickEvent",
|
|
5150
|
+
"resolved": "OwnerFormClickEvent",
|
|
5151
|
+
"references": {
|
|
5152
|
+
"OwnerFormClickEvent": {
|
|
5153
|
+
"location": "import",
|
|
5154
|
+
"path": "../utils/business-form-types",
|
|
5155
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent"
|
|
5156
|
+
}
|
|
5157
|
+
}
|
|
5158
|
+
},
|
|
5159
|
+
"cancelable": true,
|
|
5160
|
+
"composed": true,
|
|
5161
|
+
"docs": "",
|
|
5162
|
+
"docsTags": []
|
|
5163
|
+
},
|
|
4998
5164
|
{
|
|
4999
5165
|
"event": "formLoading",
|
|
5000
5166
|
"detail": "boolean",
|
|
@@ -5064,25 +5230,22 @@
|
|
|
5064
5230
|
],
|
|
5065
5231
|
"dependencies": [
|
|
5066
5232
|
"form-control-text",
|
|
5067
|
-
"form-control-select",
|
|
5068
5233
|
"form-control-number-masked",
|
|
5069
5234
|
"form-control-datepart",
|
|
5070
5235
|
"form-control-number",
|
|
5071
|
-
"justifi-
|
|
5236
|
+
"justifi-identity-address-form"
|
|
5072
5237
|
],
|
|
5073
5238
|
"dependencyGraph": {
|
|
5074
5239
|
"justifi-owner-form": [
|
|
5075
5240
|
"form-control-text",
|
|
5076
|
-
"form-control-select",
|
|
5077
5241
|
"form-control-number-masked",
|
|
5078
5242
|
"form-control-datepart",
|
|
5079
5243
|
"form-control-number",
|
|
5080
|
-
"justifi-
|
|
5244
|
+
"justifi-identity-address-form"
|
|
5081
5245
|
],
|
|
5082
|
-
"justifi-
|
|
5246
|
+
"justifi-identity-address-form": [
|
|
5083
5247
|
"form-control-text",
|
|
5084
|
-
"form-control-select"
|
|
5085
|
-
"form-control-number"
|
|
5248
|
+
"form-control-select"
|
|
5086
5249
|
],
|
|
5087
5250
|
"justifi-business-owners-form-step": [
|
|
5088
5251
|
"justifi-owner-form"
|
|
@@ -5319,7 +5482,28 @@
|
|
|
5319
5482
|
}
|
|
5320
5483
|
],
|
|
5321
5484
|
"methods": [],
|
|
5322
|
-
"events": [
|
|
5485
|
+
"events": [
|
|
5486
|
+
{
|
|
5487
|
+
"event": "error-event",
|
|
5488
|
+
"detail": "ComponentError",
|
|
5489
|
+
"bubbles": true,
|
|
5490
|
+
"complexType": {
|
|
5491
|
+
"original": "ComponentError",
|
|
5492
|
+
"resolved": "ComponentError",
|
|
5493
|
+
"references": {
|
|
5494
|
+
"ComponentError": {
|
|
5495
|
+
"location": "import",
|
|
5496
|
+
"path": "../../api/ComponentError",
|
|
5497
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
5498
|
+
}
|
|
5499
|
+
}
|
|
5500
|
+
},
|
|
5501
|
+
"cancelable": true,
|
|
5502
|
+
"composed": true,
|
|
5503
|
+
"docs": "",
|
|
5504
|
+
"docsTags": []
|
|
5505
|
+
}
|
|
5506
|
+
],
|
|
5323
5507
|
"listeners": [],
|
|
5324
5508
|
"styles": [],
|
|
5325
5509
|
"slots": [],
|
|
@@ -5475,6 +5659,28 @@
|
|
|
5475
5659
|
}
|
|
5476
5660
|
],
|
|
5477
5661
|
"methods": [
|
|
5662
|
+
{
|
|
5663
|
+
"name": "disableSubmitButton",
|
|
5664
|
+
"returns": {
|
|
5665
|
+
"type": "Promise<void>",
|
|
5666
|
+
"docs": ""
|
|
5667
|
+
},
|
|
5668
|
+
"complexType": {
|
|
5669
|
+
"signature": "() => Promise<void>",
|
|
5670
|
+
"parameters": [],
|
|
5671
|
+
"references": {
|
|
5672
|
+
"Promise": {
|
|
5673
|
+
"location": "global",
|
|
5674
|
+
"id": "global::Promise"
|
|
5675
|
+
}
|
|
5676
|
+
},
|
|
5677
|
+
"return": "Promise<void>"
|
|
5678
|
+
},
|
|
5679
|
+
"signature": "disableSubmitButton() => Promise<void>",
|
|
5680
|
+
"parameters": [],
|
|
5681
|
+
"docs": "",
|
|
5682
|
+
"docsTags": []
|
|
5683
|
+
},
|
|
5478
5684
|
{
|
|
5479
5685
|
"name": "enableSubmitButton",
|
|
5480
5686
|
"returns": {
|
|
@@ -5538,6 +5744,26 @@
|
|
|
5538
5744
|
}
|
|
5539
5745
|
],
|
|
5540
5746
|
"events": [
|
|
5747
|
+
{
|
|
5748
|
+
"event": "error-event",
|
|
5749
|
+
"detail": "ComponentError",
|
|
5750
|
+
"bubbles": true,
|
|
5751
|
+
"complexType": {
|
|
5752
|
+
"original": "ComponentError",
|
|
5753
|
+
"resolved": "ComponentError",
|
|
5754
|
+
"references": {
|
|
5755
|
+
"ComponentError": {
|
|
5756
|
+
"location": "import",
|
|
5757
|
+
"path": "../../api/ComponentError",
|
|
5758
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
5759
|
+
}
|
|
5760
|
+
}
|
|
5761
|
+
},
|
|
5762
|
+
"cancelable": true,
|
|
5763
|
+
"composed": true,
|
|
5764
|
+
"docs": "",
|
|
5765
|
+
"docsTags": []
|
|
5766
|
+
},
|
|
5541
5767
|
{
|
|
5542
5768
|
"event": "submitted",
|
|
5543
5769
|
"detail": "BankAccountCreateResponse | CardCreateResponse",
|
|
@@ -6208,6 +6434,28 @@
|
|
|
6208
6434
|
],
|
|
6209
6435
|
"usage": {},
|
|
6210
6436
|
"props": [
|
|
6437
|
+
{
|
|
6438
|
+
"name": "allowOptionalFields",
|
|
6439
|
+
"type": "boolean",
|
|
6440
|
+
"complexType": {
|
|
6441
|
+
"original": "boolean",
|
|
6442
|
+
"resolved": "boolean",
|
|
6443
|
+
"references": {}
|
|
6444
|
+
},
|
|
6445
|
+
"mutable": false,
|
|
6446
|
+
"attr": "allow-optional-fields",
|
|
6447
|
+
"reflectToAttr": false,
|
|
6448
|
+
"docs": "",
|
|
6449
|
+
"docsTags": [],
|
|
6450
|
+
"default": "false",
|
|
6451
|
+
"values": [
|
|
6452
|
+
{
|
|
6453
|
+
"type": "boolean"
|
|
6454
|
+
}
|
|
6455
|
+
],
|
|
6456
|
+
"optional": true,
|
|
6457
|
+
"required": false
|
|
6458
|
+
},
|
|
6211
6459
|
{
|
|
6212
6460
|
"name": "authToken",
|
|
6213
6461
|
"type": "string",
|
|
@@ -6298,7 +6546,7 @@
|
|
|
6298
6546
|
"methods": [],
|
|
6299
6547
|
"events": [
|
|
6300
6548
|
{
|
|
6301
|
-
"event": "
|
|
6549
|
+
"event": "click-event",
|
|
6302
6550
|
"detail": "BusinessFormClickEvent",
|
|
6303
6551
|
"bubbles": true,
|
|
6304
6552
|
"complexType": {
|
|
@@ -6345,35 +6593,31 @@
|
|
|
6345
6593
|
],
|
|
6346
6594
|
"justifi-legal-address-form-step": [
|
|
6347
6595
|
"form-control-text",
|
|
6348
|
-
"form-control-select"
|
|
6349
|
-
"form-control-number"
|
|
6596
|
+
"form-control-select"
|
|
6350
6597
|
],
|
|
6351
6598
|
"justifi-additional-questions-form-step": [
|
|
6352
6599
|
"form-control-monetary"
|
|
6353
6600
|
],
|
|
6354
6601
|
"justifi-business-representative-form-step": [
|
|
6355
6602
|
"form-control-text",
|
|
6356
|
-
"form-control-select",
|
|
6357
6603
|
"form-control-number-masked",
|
|
6358
6604
|
"form-control-datepart",
|
|
6359
6605
|
"form-control-number",
|
|
6360
|
-
"justifi-
|
|
6606
|
+
"justifi-identity-address-form"
|
|
6361
6607
|
],
|
|
6362
|
-
"justifi-
|
|
6608
|
+
"justifi-identity-address-form": [
|
|
6363
6609
|
"form-control-text",
|
|
6364
|
-
"form-control-select"
|
|
6365
|
-
"form-control-number"
|
|
6610
|
+
"form-control-select"
|
|
6366
6611
|
],
|
|
6367
6612
|
"justifi-business-owners-form-step": [
|
|
6368
6613
|
"justifi-owner-form"
|
|
6369
6614
|
],
|
|
6370
6615
|
"justifi-owner-form": [
|
|
6371
6616
|
"form-control-text",
|
|
6372
|
-
"form-control-select",
|
|
6373
6617
|
"form-control-number-masked",
|
|
6374
6618
|
"form-control-datepart",
|
|
6375
6619
|
"form-control-number",
|
|
6376
|
-
"justifi-
|
|
6620
|
+
"justifi-identity-address-form"
|
|
6377
6621
|
]
|
|
6378
6622
|
}
|
|
6379
6623
|
},
|
|
@@ -6499,7 +6743,28 @@
|
|
|
6499
6743
|
}
|
|
6500
6744
|
],
|
|
6501
6745
|
"methods": [],
|
|
6502
|
-
"events": [
|
|
6746
|
+
"events": [
|
|
6747
|
+
{
|
|
6748
|
+
"event": "error-event",
|
|
6749
|
+
"detail": "ComponentError",
|
|
6750
|
+
"bubbles": true,
|
|
6751
|
+
"complexType": {
|
|
6752
|
+
"original": "ComponentError",
|
|
6753
|
+
"resolved": "ComponentError",
|
|
6754
|
+
"references": {
|
|
6755
|
+
"ComponentError": {
|
|
6756
|
+
"location": "import",
|
|
6757
|
+
"path": "../../api/ComponentError",
|
|
6758
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
6759
|
+
}
|
|
6760
|
+
}
|
|
6761
|
+
},
|
|
6762
|
+
"cancelable": true,
|
|
6763
|
+
"composed": true,
|
|
6764
|
+
"docs": "",
|
|
6765
|
+
"docsTags": []
|
|
6766
|
+
}
|
|
6767
|
+
],
|
|
6503
6768
|
"listeners": [],
|
|
6504
6769
|
"styles": [],
|
|
6505
6770
|
"slots": [],
|
|
@@ -6573,7 +6838,28 @@
|
|
|
6573
6838
|
}
|
|
6574
6839
|
],
|
|
6575
6840
|
"methods": [],
|
|
6576
|
-
"events": [
|
|
6841
|
+
"events": [
|
|
6842
|
+
{
|
|
6843
|
+
"event": "error-event",
|
|
6844
|
+
"detail": "ComponentError",
|
|
6845
|
+
"bubbles": true,
|
|
6846
|
+
"complexType": {
|
|
6847
|
+
"original": "ComponentError",
|
|
6848
|
+
"resolved": "ComponentError",
|
|
6849
|
+
"references": {
|
|
6850
|
+
"ComponentError": {
|
|
6851
|
+
"location": "import",
|
|
6852
|
+
"path": "../../api/ComponentError",
|
|
6853
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
6854
|
+
}
|
|
6855
|
+
}
|
|
6856
|
+
},
|
|
6857
|
+
"cancelable": true,
|
|
6858
|
+
"composed": true,
|
|
6859
|
+
"docs": "",
|
|
6860
|
+
"docsTags": []
|
|
6861
|
+
}
|
|
6862
|
+
],
|
|
6577
6863
|
"listeners": [],
|
|
6578
6864
|
"styles": [],
|
|
6579
6865
|
"slots": [],
|
|
@@ -6713,7 +6999,28 @@
|
|
|
6713
6999
|
}
|
|
6714
7000
|
],
|
|
6715
7001
|
"methods": [],
|
|
6716
|
-
"events": [
|
|
7002
|
+
"events": [
|
|
7003
|
+
{
|
|
7004
|
+
"event": "error-event",
|
|
7005
|
+
"detail": "ComponentError",
|
|
7006
|
+
"bubbles": true,
|
|
7007
|
+
"complexType": {
|
|
7008
|
+
"original": "ComponentError",
|
|
7009
|
+
"resolved": "ComponentError",
|
|
7010
|
+
"references": {
|
|
7011
|
+
"ComponentError": {
|
|
7012
|
+
"location": "import",
|
|
7013
|
+
"path": "../../api/ComponentError",
|
|
7014
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
7015
|
+
}
|
|
7016
|
+
}
|
|
7017
|
+
},
|
|
7018
|
+
"cancelable": true,
|
|
7019
|
+
"composed": true,
|
|
7020
|
+
"docs": "",
|
|
7021
|
+
"docsTags": []
|
|
7022
|
+
}
|
|
7023
|
+
],
|
|
6717
7024
|
"listeners": [],
|
|
6718
7025
|
"styles": [],
|
|
6719
7026
|
"slots": [],
|
|
@@ -7906,7 +8213,28 @@
|
|
|
7906
8213
|
}
|
|
7907
8214
|
],
|
|
7908
8215
|
"methods": [],
|
|
7909
|
-
"events": [
|
|
8216
|
+
"events": [
|
|
8217
|
+
{
|
|
8218
|
+
"event": "error-event",
|
|
8219
|
+
"detail": "ComponentError",
|
|
8220
|
+
"bubbles": true,
|
|
8221
|
+
"complexType": {
|
|
8222
|
+
"original": "ComponentError",
|
|
8223
|
+
"resolved": "ComponentError",
|
|
8224
|
+
"references": {
|
|
8225
|
+
"ComponentError": {
|
|
8226
|
+
"location": "import",
|
|
8227
|
+
"path": "../../api/ComponentError",
|
|
8228
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8229
|
+
}
|
|
8230
|
+
}
|
|
8231
|
+
},
|
|
8232
|
+
"cancelable": true,
|
|
8233
|
+
"composed": true,
|
|
8234
|
+
"docs": "",
|
|
8235
|
+
"docsTags": []
|
|
8236
|
+
}
|
|
8237
|
+
],
|
|
7910
8238
|
"listeners": [],
|
|
7911
8239
|
"styles": [],
|
|
7912
8240
|
"slots": [],
|
|
@@ -7963,6 +8291,26 @@
|
|
|
7963
8291
|
],
|
|
7964
8292
|
"methods": [],
|
|
7965
8293
|
"events": [
|
|
8294
|
+
{
|
|
8295
|
+
"event": "error-event",
|
|
8296
|
+
"detail": "ComponentError",
|
|
8297
|
+
"bubbles": true,
|
|
8298
|
+
"complexType": {
|
|
8299
|
+
"original": "ComponentError",
|
|
8300
|
+
"resolved": "ComponentError",
|
|
8301
|
+
"references": {
|
|
8302
|
+
"ComponentError": {
|
|
8303
|
+
"location": "import",
|
|
8304
|
+
"path": "../../api/ComponentError",
|
|
8305
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8306
|
+
}
|
|
8307
|
+
}
|
|
8308
|
+
},
|
|
8309
|
+
"cancelable": true,
|
|
8310
|
+
"composed": true,
|
|
8311
|
+
"docs": "",
|
|
8312
|
+
"docsTags": []
|
|
8313
|
+
},
|
|
7966
8314
|
{
|
|
7967
8315
|
"event": "payment-row-clicked",
|
|
7968
8316
|
"detail": "Payment",
|
|
@@ -8042,7 +8390,28 @@
|
|
|
8042
8390
|
}
|
|
8043
8391
|
],
|
|
8044
8392
|
"methods": [],
|
|
8045
|
-
"events": [
|
|
8393
|
+
"events": [
|
|
8394
|
+
{
|
|
8395
|
+
"event": "error-event",
|
|
8396
|
+
"detail": "ComponentError",
|
|
8397
|
+
"bubbles": true,
|
|
8398
|
+
"complexType": {
|
|
8399
|
+
"original": "ComponentError",
|
|
8400
|
+
"resolved": "ComponentError",
|
|
8401
|
+
"references": {
|
|
8402
|
+
"ComponentError": {
|
|
8403
|
+
"location": "import",
|
|
8404
|
+
"path": "../../api/ComponentError",
|
|
8405
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8406
|
+
}
|
|
8407
|
+
}
|
|
8408
|
+
},
|
|
8409
|
+
"cancelable": true,
|
|
8410
|
+
"composed": true,
|
|
8411
|
+
"docs": "",
|
|
8412
|
+
"docsTags": []
|
|
8413
|
+
}
|
|
8414
|
+
],
|
|
8046
8415
|
"listeners": [],
|
|
8047
8416
|
"styles": [],
|
|
8048
8417
|
"slots": [],
|
|
@@ -8099,6 +8468,26 @@
|
|
|
8099
8468
|
],
|
|
8100
8469
|
"methods": [],
|
|
8101
8470
|
"events": [
|
|
8471
|
+
{
|
|
8472
|
+
"event": "error-event",
|
|
8473
|
+
"detail": "ComponentError",
|
|
8474
|
+
"bubbles": true,
|
|
8475
|
+
"complexType": {
|
|
8476
|
+
"original": "ComponentError",
|
|
8477
|
+
"resolved": "ComponentError",
|
|
8478
|
+
"references": {
|
|
8479
|
+
"ComponentError": {
|
|
8480
|
+
"location": "import",
|
|
8481
|
+
"path": "../../api/ComponentError",
|
|
8482
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8483
|
+
}
|
|
8484
|
+
}
|
|
8485
|
+
},
|
|
8486
|
+
"cancelable": true,
|
|
8487
|
+
"composed": true,
|
|
8488
|
+
"docs": "",
|
|
8489
|
+
"docsTags": []
|
|
8490
|
+
},
|
|
8102
8491
|
{
|
|
8103
8492
|
"event": "payout-row-clicked",
|
|
8104
8493
|
"detail": "Payout",
|
|
@@ -8854,6 +9243,11 @@
|
|
|
8854
9243
|
"docstring": "",
|
|
8855
9244
|
"path": "../../node_modules/.pnpm/yup@1.3.3/node_modules/yup/index.d.ts"
|
|
8856
9245
|
},
|
|
9246
|
+
"src/api/ComponentError.ts::ComponentError": {
|
|
9247
|
+
"declaration": "export interface ComponentError {\n errorCode: ComponentErrorCodes; // A unique code identifying the error\n message: string; // A descriptive message about the error\n severity?: ComponentErrorSeverity; // Optional severity level\n data?: any; // Additional data pertinent to the error (optional)\n}",
|
|
9248
|
+
"docstring": "",
|
|
9249
|
+
"path": "src/api/ComponentError.ts"
|
|
9250
|
+
},
|
|
8857
9251
|
"src/api/Business.ts::IAdditionalQuestions": {
|
|
8858
9252
|
"declaration": "export interface IAdditionalQuestions {\n business_revenue?: string;\n business_payment_volume?: string;\n business_dispute_volume?: string;\n business_receivable_volume?: string;\n}",
|
|
8859
9253
|
"docstring": "",
|
|
@@ -8874,13 +9268,13 @@
|
|
|
8874
9268
|
"docstring": "",
|
|
8875
9269
|
"path": "src/api/Identity.ts"
|
|
8876
9270
|
},
|
|
8877
|
-
"src/components/business-forms/utils/business-form-types.ts::
|
|
8878
|
-
"declaration": "export interface
|
|
9271
|
+
"src/components/business-forms/utils/business-form-types.ts::BusinessFormSubmitEvent": {
|
|
9272
|
+
"declaration": "export interface BusinessFormSubmitEvent {\n data: any;\n metadata?: BusinessFormEventMetaData;\n}",
|
|
8879
9273
|
"docstring": "",
|
|
8880
9274
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8881
9275
|
},
|
|
8882
|
-
"src/components/business-forms/utils/business-form-types.ts::
|
|
8883
|
-
"declaration": "export interface
|
|
9276
|
+
"src/components/business-forms/utils/business-form-types.ts::BusinessFormClickEvent": {
|
|
9277
|
+
"declaration": "export interface BusinessFormClickEvent {\n data?: any;\n name: BusinessFormClickActions;\n}",
|
|
8884
9278
|
"docstring": "",
|
|
8885
9279
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8886
9280
|
},
|
|
@@ -8894,6 +9288,11 @@
|
|
|
8894
9288
|
"docstring": "",
|
|
8895
9289
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8896
9290
|
},
|
|
9291
|
+
"src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent": {
|
|
9292
|
+
"declaration": "export interface OwnerFormClickEvent {\n data?: any;\n name: OwnerFormClickActions;\n}",
|
|
9293
|
+
"docstring": "",
|
|
9294
|
+
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
9295
|
+
},
|
|
8897
9296
|
"src/components/business-forms/utils/business-form-types.ts::OwnerFormServerErrorEvent": {
|
|
8898
9297
|
"declaration": "export interface OwnerFormServerErrorEvent {\n data?: any;\n message: OwnerFormServerErrors;\n}",
|
|
8899
9298
|
"docstring": "",
|