@redneckz/wildless-cms-uni-blocks 0.14.294 → 0.14.296
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/bin/migration-scripts/0.14.257.js +21 -0
- package/bin/migration-scripts/0.14.295.js +37 -0
- package/bundle/blocks.schema.json +1 -1
- package/bundle/bundle.umd.js +115 -83
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/bundle/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/bundle/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/bundle/components/ApplicationForm/getField.d.ts +8 -0
- package/bundle/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/bundle/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/bundle/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/bundle/components/ApplicationForm/renderAgreementSubmit.d.ts +5 -0
- package/bundle/components/ApplicationForm/renderSubmitButton.d.ts +3 -0
- package/bundle/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/bundle/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/bundle/components/Tabs/TabsContent.d.ts +1 -1
- package/bundle/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/bundle/components/TabsLayout/renderTabsLayout.d.ts +11 -0
- package/bundle/hooks/useAspects/handleAspects.d.ts +1 -1
- package/bundle/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/bundle/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/bundle/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/bundle/ui-kit/TabsControl/renderTabItemInner.d.ts +11 -0
- package/dist/components/ApplicationForm/AcquiringField.js.map +1 -0
- package/dist/components/ApplicationForm/AddressBranchField.js.map +1 -0
- package/dist/components/ApplicationForm/AmountField.js.map +1 -0
- package/dist/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/dist/components/ApplicationForm/ApplicationForm.js +62 -0
- package/dist/components/ApplicationForm/ApplicationForm.js.map +1 -0
- package/dist/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/dist/components/ApplicationForm/ApplicationFormContent.js +3 -0
- package/dist/components/ApplicationForm/ApplicationFormContent.js.map +1 -0
- package/dist/components/ApplicationForm/CommentField.js.map +1 -0
- package/dist/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/dist/components/ApplicationForm/CustomFieldProps.js.map +1 -0
- package/dist/components/ApplicationForm/FeedbackMethodField.js.map +1 -0
- package/dist/components/ApplicationForm/FeedbackTypeField.js.map +1 -0
- package/dist/components/ApplicationForm/Footnote.js.map +1 -0
- package/dist/components/ApplicationForm/IsClientField.js.map +1 -0
- package/dist/components/ApplicationForm/OnlineCheckoutField.js.map +1 -0
- package/dist/components/ApplicationForm/PartnerCommentsField.js.map +1 -0
- package/dist/components/ApplicationForm/PosTerminalField.js.map +1 -0
- package/dist/components/ApplicationForm/RegionField.js.map +1 -0
- package/dist/components/ApplicationForm/RegionPremiumField.js.map +1 -0
- package/dist/components/ApplicationForm/ServiceDirectionField.js.map +1 -0
- package/dist/components/ApplicationForm/TermField.js.map +1 -0
- package/dist/components/ApplicationForm/UltraPremiumField.js.map +1 -0
- package/dist/components/ApplicationForm/VedField.js.map +1 -0
- package/dist/components/ApplicationForm/contants.js.map +1 -0
- package/dist/components/ApplicationForm/getField.d.ts +8 -0
- package/dist/components/ApplicationForm/getField.js.map +1 -0
- package/dist/components/ApplicationForm/getFormatData.js.map +1 -0
- package/dist/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/dist/components/ApplicationForm/getInitialFormState.js.map +1 -0
- package/dist/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/dist/components/ApplicationForm/getNamesFromInput.js.map +1 -0
- package/dist/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/dist/components/ApplicationForm/getObjectValidator.js.map +1 -0
- package/dist/components/ApplicationForm/getPartnerComments.js.map +1 -0
- package/dist/components/ApplicationForm/getValidation.js.map +1 -0
- package/dist/components/ApplicationForm/renderAgreementSubmit.d.ts +5 -0
- package/dist/components/ApplicationForm/renderAgreementSubmit.js.map +1 -0
- package/dist/components/ApplicationForm/renderContacts.js.map +1 -0
- package/dist/components/ApplicationForm/renderSubmitButton.d.ts +3 -0
- package/dist/components/ApplicationForm/renderSubmitButton.js.map +1 -0
- package/dist/components/ApplicationForm/validators.js.map +1 -0
- package/dist/components/Blocks.js +4 -4
- package/dist/components/Blocks.js.map +1 -1
- package/dist/components/Blocks.mobile.js +2 -2
- package/dist/components/Blocks.mobile.js.map +1 -1
- package/dist/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/dist/components/GrantSupport/GrantSupport.js +23 -0
- package/dist/components/GrantSupport/GrantSupport.js.map +1 -0
- package/dist/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/dist/components/GrantSupport/GrantSupportContent.js +2 -0
- package/dist/components/GrantSupport/GrantSupportContent.js.map +1 -0
- package/dist/components/Tabs/TabsContent.d.ts +1 -1
- package/dist/components/Tabs/renderTabs.js +0 -2
- package/dist/components/Tabs/renderTabs.js.map +1 -1
- package/dist/components/TabsLayout/TabsLayout.js +39 -16
- package/dist/components/TabsLayout/TabsLayout.js.map +1 -1
- package/dist/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/dist/components/TabsLayout/renderTabsLayout.d.ts +11 -0
- package/dist/components/TabsLayout/renderTabsLayout.js +19 -0
- package/dist/components/TabsLayout/renderTabsLayout.js.map +1 -0
- package/dist/hooks/useAspects/handleAspects.d.ts +1 -1
- package/dist/ui-kit/TabsControl/ScrollableTabsControl.js +15 -3
- package/dist/ui-kit/TabsControl/ScrollableTabsControl.js.map +1 -1
- package/dist/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/dist/ui-kit/TabsControl/TabItem.js.map +1 -1
- package/dist/ui-kit/TabsControl/TabItemInner.js +14 -8
- package/dist/ui-kit/TabsControl/TabItemInner.js.map +1 -1
- package/dist/ui-kit/TabsControl/TabsControl.js +1 -1
- package/dist/ui-kit/TabsControl/TabsControl.js.map +1 -1
- package/dist/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/dist/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/dist/ui-kit/TabsControl/renderTab.js.map +1 -1
- package/dist/ui-kit/TabsControl/renderTabItemInner.d.ts +11 -0
- package/dist/ui-kit/TabsControl/renderTabItemInner.js +23 -0
- package/dist/ui-kit/TabsControl/renderTabItemInner.js.map +1 -0
- package/lib/common.css +1 -1
- package/lib/components/ApplicationForm/AcquiringField.js.map +1 -0
- package/lib/components/ApplicationForm/AddressBranchField.js.map +1 -0
- package/lib/components/ApplicationForm/AmountField.js.map +1 -0
- package/lib/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/lib/components/ApplicationForm/ApplicationForm.fixture.mobile.d.ts +21 -0
- package/lib/components/ApplicationForm/ApplicationForm.js +60 -0
- package/lib/components/ApplicationForm/ApplicationForm.js.map +1 -0
- package/lib/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/lib/components/ApplicationForm/ApplicationFormContent.js +3 -0
- package/lib/components/ApplicationForm/ApplicationFormContent.js.map +1 -0
- package/lib/components/ApplicationForm/CommentField.js.map +1 -0
- package/lib/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/lib/components/ApplicationForm/CustomFieldProps.js.map +1 -0
- package/lib/components/ApplicationForm/FeedbackMethodField.js.map +1 -0
- package/lib/components/ApplicationForm/FeedbackTypeField.js.map +1 -0
- package/lib/components/ApplicationForm/Footnote.js.map +1 -0
- package/lib/components/ApplicationForm/IsClientField.js.map +1 -0
- package/lib/components/ApplicationForm/OnlineCheckoutField.js.map +1 -0
- package/lib/components/ApplicationForm/PartnerCommentsField.js.map +1 -0
- package/lib/components/ApplicationForm/PosTerminalField.js.map +1 -0
- package/lib/components/ApplicationForm/RegionField.js.map +1 -0
- package/lib/components/ApplicationForm/RegionPremiumField.js.map +1 -0
- package/lib/components/ApplicationForm/ServiceDirectionField.js.map +1 -0
- package/lib/components/ApplicationForm/TermField.js.map +1 -0
- package/lib/components/ApplicationForm/UltraPremiumField.js.map +1 -0
- package/lib/components/ApplicationForm/VedField.js.map +1 -0
- package/lib/components/ApplicationForm/contants.js.map +1 -0
- package/lib/components/ApplicationForm/getField.d.ts +7 -0
- package/lib/components/ApplicationForm/getField.js.map +1 -0
- package/lib/components/ApplicationForm/getFormatData.js.map +1 -0
- package/lib/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/lib/components/ApplicationForm/getInitialFormState.js.map +1 -0
- package/lib/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/lib/components/ApplicationForm/getNamesFromInput.js.map +1 -0
- package/lib/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/lib/components/ApplicationForm/getObjectValidator.js.map +1 -0
- package/lib/components/ApplicationForm/getPartnerComments.js.map +1 -0
- package/lib/components/ApplicationForm/getValidation.js.map +1 -0
- package/lib/components/ApplicationForm/renderAgreementSubmit.d.ts +4 -0
- package/lib/components/ApplicationForm/renderAgreementSubmit.js.map +1 -0
- package/lib/components/ApplicationForm/renderContacts.js.map +1 -0
- package/lib/components/ApplicationForm/renderSubmitButton.d.ts +2 -0
- package/lib/components/ApplicationForm/renderSubmitButton.js.map +1 -0
- package/lib/components/ApplicationForm/validators.js.map +1 -0
- package/lib/components/Blocks.js +4 -4
- package/lib/components/Blocks.js.map +1 -1
- package/lib/components/Blocks.mobile.js +2 -2
- package/lib/components/Blocks.mobile.js.map +1 -1
- package/lib/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/lib/components/GrantSupport/GrantSupport.fixture.mobile.d.ts +5 -0
- package/lib/components/GrantSupport/GrantSupport.js +21 -0
- package/lib/components/GrantSupport/GrantSupport.js.map +1 -0
- package/lib/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/lib/components/GrantSupport/GrantSupportContent.js +2 -0
- package/lib/components/GrantSupport/GrantSupportContent.js.map +1 -0
- package/lib/components/Tabs/Tabs.fixture.d.ts +0 -1
- package/lib/components/Tabs/Tabs.fixture.mobile.d.ts +0 -1
- package/lib/components/Tabs/TabsContent.d.ts +1 -1
- package/lib/components/Tabs/renderTabs.js +0 -2
- package/lib/components/Tabs/renderTabs.js.map +1 -1
- package/lib/components/TabsLayout/TabsLayout.fixture.d.ts +2 -0
- package/lib/components/TabsLayout/TabsLayout.fixture.mobile.d.ts +2 -0
- package/lib/components/TabsLayout/TabsLayout.js +40 -17
- package/lib/components/TabsLayout/TabsLayout.js.map +1 -1
- package/lib/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/lib/components/TabsLayout/renderTabsLayout.d.ts +10 -0
- package/lib/components/TabsLayout/renderTabsLayout.js +16 -0
- package/lib/components/TabsLayout/renderTabsLayout.js.map +1 -0
- package/lib/hooks/useAspects/handleAspects.d.ts +1 -1
- package/lib/ui-kit/TabsControl/ScrollableTabsControl.js +15 -3
- package/lib/ui-kit/TabsControl/ScrollableTabsControl.js.map +1 -1
- package/lib/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/lib/ui-kit/TabsControl/TabItem.js.map +1 -1
- package/lib/ui-kit/TabsControl/TabItemInner.js +14 -8
- package/lib/ui-kit/TabsControl/TabItemInner.js.map +1 -1
- package/lib/ui-kit/TabsControl/TabsControl.fixture.d.ts +1 -1
- package/lib/ui-kit/TabsControl/TabsControl.js +1 -1
- package/lib/ui-kit/TabsControl/TabsControl.js.map +1 -1
- package/lib/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/lib/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/lib/ui-kit/TabsControl/renderTab.js.map +1 -1
- package/lib/ui-kit/TabsControl/renderTabItemInner.d.ts +10 -0
- package/lib/ui-kit/TabsControl/renderTabItemInner.js +20 -0
- package/lib/ui-kit/TabsControl/renderTabItemInner.js.map +1 -0
- package/mobile/bundle/bundle.umd.js +111 -79
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/mobile/bundle/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/mobile/bundle/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/mobile/bundle/components/ApplicationForm/getField.d.ts +8 -0
- package/mobile/bundle/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/mobile/bundle/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/mobile/bundle/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/mobile/bundle/components/ApplicationForm/renderAgreementSubmit.d.ts +5 -0
- package/mobile/bundle/components/ApplicationForm/renderSubmitButton.d.ts +3 -0
- package/mobile/bundle/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/mobile/bundle/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/mobile/bundle/components/Tabs/TabsContent.d.ts +1 -1
- package/mobile/bundle/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/mobile/bundle/components/TabsLayout/renderTabsLayout.d.ts +11 -0
- package/mobile/bundle/hooks/useAspects/handleAspects.d.ts +1 -1
- package/mobile/bundle/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/mobile/bundle/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/mobile/bundle/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/mobile/bundle/ui-kit/TabsControl/renderTabItemInner.d.ts +11 -0
- package/mobile/dist/components/ApplicationForm/AcquiringField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/AddressBranchField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/AmountField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/mobile/dist/components/ApplicationForm/ApplicationForm.js +62 -0
- package/mobile/dist/components/ApplicationForm/ApplicationForm.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/mobile/dist/components/ApplicationForm/ApplicationFormContent.js +3 -0
- package/mobile/dist/components/ApplicationForm/ApplicationFormContent.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/CommentField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/mobile/dist/components/ApplicationForm/CustomFieldProps.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/FeedbackMethodField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/FeedbackTypeField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/Footnote.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/IsClientField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/OnlineCheckoutField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/PartnerCommentsField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/PosTerminalField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/RegionField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/RegionPremiumField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/ServiceDirectionField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/TermField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/UltraPremiumField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/VedField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/contants.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getField.d.ts +8 -0
- package/mobile/dist/components/ApplicationForm/getField.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getFormatData.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/mobile/dist/components/ApplicationForm/getInitialFormState.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/mobile/dist/components/ApplicationForm/getNamesFromInput.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/mobile/dist/components/ApplicationForm/getObjectValidator.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getPartnerComments.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/getValidation.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/renderAgreementSubmit.d.ts +5 -0
- package/mobile/dist/components/ApplicationForm/renderAgreementSubmit.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/renderContacts.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/renderSubmitButton.d.ts +3 -0
- package/mobile/dist/components/ApplicationForm/renderSubmitButton.js.map +1 -0
- package/mobile/dist/components/ApplicationForm/validators.js.map +1 -0
- package/mobile/dist/components/Blocks.js +2 -2
- package/mobile/dist/components/Blocks.js.map +1 -1
- package/mobile/dist/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/mobile/dist/components/GrantSupport/GrantSupport.js +23 -0
- package/mobile/dist/components/GrantSupport/GrantSupport.js.map +1 -0
- package/mobile/dist/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/mobile/dist/components/GrantSupport/GrantSupportContent.js +2 -0
- package/mobile/dist/components/GrantSupport/GrantSupportContent.js.map +1 -0
- package/mobile/dist/components/Tabs/TabsContent.d.ts +1 -1
- package/mobile/dist/components/Tabs/renderTabs.js +0 -2
- package/mobile/dist/components/Tabs/renderTabs.js.map +1 -1
- package/mobile/dist/components/TabsLayout/TabsLayout.js +39 -16
- package/mobile/dist/components/TabsLayout/TabsLayout.js.map +1 -1
- package/mobile/dist/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/mobile/dist/components/TabsLayout/renderTabsLayout.d.ts +11 -0
- package/mobile/dist/components/TabsLayout/renderTabsLayout.js +19 -0
- package/mobile/dist/components/TabsLayout/renderTabsLayout.js.map +1 -0
- package/mobile/dist/hooks/useAspects/handleAspects.d.ts +1 -1
- package/mobile/dist/ui-kit/TabsControl/ScrollableTabsControl.js +15 -3
- package/mobile/dist/ui-kit/TabsControl/ScrollableTabsControl.js.map +1 -1
- package/mobile/dist/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/mobile/dist/ui-kit/TabsControl/TabItem.js.map +1 -1
- package/mobile/dist/ui-kit/TabsControl/TabItemInner.js +14 -8
- package/mobile/dist/ui-kit/TabsControl/TabItemInner.js.map +1 -1
- package/mobile/dist/ui-kit/TabsControl/TabsControl.js +1 -1
- package/mobile/dist/ui-kit/TabsControl/TabsControl.js.map +1 -1
- package/mobile/dist/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/mobile/dist/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/mobile/dist/ui-kit/TabsControl/renderTab.js.map +1 -1
- package/mobile/dist/ui-kit/TabsControl/renderTabItemInner.d.ts +11 -0
- package/mobile/dist/ui-kit/TabsControl/renderTabItemInner.js +23 -0
- package/mobile/dist/ui-kit/TabsControl/renderTabItemInner.js.map +1 -0
- package/mobile/lib/common.css +1 -1
- package/mobile/lib/components/ApplicationForm/AcquiringField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/AddressBranchField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/AmountField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/ApplicationForm.d.ts +6 -0
- package/mobile/lib/components/ApplicationForm/ApplicationForm.js +60 -0
- package/mobile/lib/components/ApplicationForm/ApplicationForm.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/ApplicationFormContent.d.ts +99 -0
- package/mobile/lib/components/ApplicationForm/ApplicationFormContent.js +3 -0
- package/mobile/lib/components/ApplicationForm/ApplicationFormContent.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/CommentField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/CustomFieldProps.d.ts +6 -0
- package/mobile/lib/components/ApplicationForm/CustomFieldProps.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/FeedbackMethodField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/FeedbackTypeField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/Footnote.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/IsClientField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/OnlineCheckoutField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/PartnerCommentsField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/PosTerminalField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/RegionField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/RegionPremiumField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/ServiceDirectionField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/TermField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/UltraPremiumField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/VedField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/contants.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getField.d.ts +8 -0
- package/mobile/lib/components/ApplicationForm/getField.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getFormatData.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getInitialFormState.d.ts +24 -0
- package/mobile/lib/components/ApplicationForm/getInitialFormState.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getNamesFromInput.d.ts +2 -0
- package/mobile/lib/components/ApplicationForm/getNamesFromInput.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getObjectValidator.d.ts +4 -0
- package/mobile/lib/components/ApplicationForm/getObjectValidator.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getPartnerComments.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/getValidation.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/renderAgreementSubmit.d.ts +5 -0
- package/mobile/lib/components/ApplicationForm/renderAgreementSubmit.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/renderContacts.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/renderSubmitButton.d.ts +3 -0
- package/mobile/lib/components/ApplicationForm/renderSubmitButton.js.map +1 -0
- package/mobile/lib/components/ApplicationForm/validators.js.map +1 -0
- package/mobile/lib/components/Blocks.js +2 -2
- package/mobile/lib/components/Blocks.js.map +1 -1
- package/mobile/lib/components/GrantSupport/GrantSupport.d.ts +6 -0
- package/mobile/lib/components/GrantSupport/GrantSupport.js +21 -0
- package/mobile/lib/components/GrantSupport/GrantSupport.js.map +1 -0
- package/mobile/lib/components/GrantSupport/GrantSupportContent.d.ts +20 -0
- package/mobile/lib/components/GrantSupport/GrantSupportContent.js +2 -0
- package/mobile/lib/components/GrantSupport/GrantSupportContent.js.map +1 -0
- package/mobile/lib/components/Tabs/TabsContent.d.ts +1 -1
- package/mobile/lib/components/Tabs/renderTabs.js +0 -2
- package/mobile/lib/components/Tabs/renderTabs.js.map +1 -1
- package/mobile/lib/components/TabsLayout/TabsLayout.js +40 -17
- package/mobile/lib/components/TabsLayout/TabsLayout.js.map +1 -1
- package/mobile/lib/components/TabsLayout/TabsLayoutContent.d.ts +31 -6
- package/mobile/lib/components/TabsLayout/renderTabsLayout.d.ts +11 -0
- package/mobile/lib/components/TabsLayout/renderTabsLayout.js +16 -0
- package/mobile/lib/components/TabsLayout/renderTabsLayout.js.map +1 -0
- package/mobile/lib/hooks/useAspects/handleAspects.d.ts +1 -1
- package/mobile/lib/ui-kit/TabsControl/ScrollableTabsControl.js +15 -3
- package/mobile/lib/ui-kit/TabsControl/ScrollableTabsControl.js.map +1 -1
- package/mobile/lib/ui-kit/TabsControl/TabItem.d.ts +5 -4
- package/mobile/lib/ui-kit/TabsControl/TabItem.js.map +1 -1
- package/mobile/lib/ui-kit/TabsControl/TabItemInner.js +14 -8
- package/mobile/lib/ui-kit/TabsControl/TabItemInner.js.map +1 -1
- package/mobile/lib/ui-kit/TabsControl/TabsControl.js +1 -1
- package/mobile/lib/ui-kit/TabsControl/TabsControl.js.map +1 -1
- package/mobile/lib/ui-kit/TabsControl/TabsControlProps.d.ts +11 -2
- package/mobile/lib/ui-kit/TabsControl/renderTab.d.ts +3 -3
- package/mobile/lib/ui-kit/TabsControl/renderTab.js.map +1 -1
- package/mobile/lib/ui-kit/TabsControl/renderTabItemInner.d.ts +11 -0
- package/mobile/lib/ui-kit/TabsControl/renderTabItemInner.js +20 -0
- package/mobile/lib/ui-kit/TabsControl/renderTabItemInner.js.map +1 -0
- package/mobile/src/components/ApplicationForm/ApplicationForm.tsx +132 -0
- package/mobile/src/components/ApplicationForm/ApplicationFormContent.ts +164 -0
- package/mobile/src/components/ApplicationForm/CustomFieldProps.ts +7 -0
- package/mobile/src/components/ApplicationForm/getField.tsx +154 -0
- package/mobile/src/components/ApplicationForm/getInitialFormState.tsx +70 -0
- package/mobile/src/components/ApplicationForm/getNamesFromInput.tsx +4 -0
- package/mobile/src/components/ApplicationForm/getObjectValidator.tsx +43 -0
- package/mobile/src/components/ApplicationForm/renderAgreementSubmit.tsx +31 -0
- package/mobile/src/components/ApplicationForm/renderSubmitButton.tsx +9 -0
- package/mobile/src/components/Blocks.ts +2 -2
- package/mobile/src/components/GrantSupport/GrantSupport.tsx +56 -0
- package/mobile/src/components/GrantSupport/GrantSupportContent.ts +19 -0
- package/mobile/src/components/Tabs/TabsContent.ts +1 -1
- package/mobile/src/components/Tabs/renderTabs.tsx +0 -10
- package/mobile/src/components/TabsLayout/TabsLayout.example.json +4 -3
- package/mobile/src/components/TabsLayout/TabsLayout.tsx +56 -57
- package/mobile/src/components/TabsLayout/TabsLayoutContent.ts +36 -8
- package/mobile/src/components/TabsLayout/renderTabsLayout.tsx +32 -0
- package/mobile/src/hooks/useAspects/handleAspects.ts +1 -1
- package/mobile/src/ui-kit/TabsControl/ScrollableTabsControl.tsx +28 -5
- package/mobile/src/ui-kit/TabsControl/TabItem.tsx +5 -5
- package/mobile/src/ui-kit/TabsControl/TabItemInner.tsx +21 -15
- package/mobile/src/ui-kit/TabsControl/TabsControl.tsx +4 -1
- package/mobile/src/ui-kit/TabsControl/TabsControlProps.ts +12 -2
- package/mobile/src/ui-kit/TabsControl/renderTab.tsx +3 -3
- package/mobile/src/ui-kit/TabsControl/renderTabItemInner.tsx +63 -0
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +625 -0
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +625 -0
- package/src/components/ApplicationForm/ApplicationForm.tsx +132 -0
- package/src/components/ApplicationForm/ApplicationFormContent.ts +164 -0
- package/src/components/ApplicationForm/CustomFieldProps.ts +7 -0
- package/src/components/ApplicationForm/getField.tsx +154 -0
- package/src/components/ApplicationForm/getInitialFormState.tsx +70 -0
- package/src/components/ApplicationForm/getNamesFromInput.tsx +4 -0
- package/src/components/ApplicationForm/getObjectValidator.tsx +43 -0
- package/src/components/ApplicationForm/renderAgreementSubmit.tsx +31 -0
- package/src/components/ApplicationForm/renderSubmitButton.tsx +9 -0
- package/src/components/Blocks.mobile.ts +2 -2
- package/src/components/Blocks.ts +4 -4
- package/src/components/GrantSupport/GrantSupport.fixture.mobile.tsx +28 -0
- package/src/components/GrantSupport/GrantSupport.fixture.tsx +28 -0
- package/src/components/GrantSupport/GrantSupport.tsx +56 -0
- package/src/components/GrantSupport/GrantSupportContent.ts +19 -0
- package/src/components/Tabs/Tabs.fixture.mobile.tsx +0 -16
- package/src/components/Tabs/Tabs.fixture.tsx +0 -19
- package/src/components/Tabs/TabsContent.ts +1 -1
- package/src/components/Tabs/renderTabs.tsx +0 -10
- package/src/components/TabsLayout/TabsLayout.example.json +4 -3
- package/src/components/TabsLayout/TabsLayout.fixture.mobile.tsx +51 -30
- package/src/components/TabsLayout/TabsLayout.fixture.tsx +61 -30
- package/src/components/TabsLayout/TabsLayout.tsx +56 -57
- package/src/components/TabsLayout/TabsLayoutContent.ts +36 -8
- package/src/components/TabsLayout/renderTabsLayout.tsx +32 -0
- package/src/hooks/useAspects/handleAspects.ts +1 -1
- package/src/ui-kit/TabsControl/ScrollableTabsControl.tsx +28 -5
- package/src/ui-kit/TabsControl/TabItem.tsx +5 -5
- package/src/ui-kit/TabsControl/TabItemInner.tsx +21 -15
- package/src/ui-kit/TabsControl/TabsControl.fixture.tsx +7 -20
- package/src/ui-kit/TabsControl/TabsControl.tsx +4 -1
- package/src/ui-kit/TabsControl/TabsControlProps.ts +12 -2
- package/src/ui-kit/TabsControl/renderTab.tsx +3 -3
- package/src/ui-kit/TabsControl/renderTabItemInner.tsx +63 -0
- package/bundle/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/bundle/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/bundle/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/bundle/components/ApplicationFormCustom/getField.d.ts +0 -8
- package/bundle/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/bundle/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/bundle/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/bundle/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -5
- package/bundle/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -3
- package/bundle/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/bundle/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/bundle/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/bundle/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/bundle/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/bundle/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/dist/components/ApplicationFormCustom/AcquiringField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/AddressBranchField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/AmountField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/dist/components/ApplicationFormCustom/ApplicationFormCustom.js +0 -62
- package/dist/components/ApplicationFormCustom/ApplicationFormCustom.js.map +0 -1
- package/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.js +0 -3
- package/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.js.map +0 -1
- package/dist/components/ApplicationFormCustom/CommentField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/dist/components/ApplicationFormCustom/CustomFieldProps.js.map +0 -1
- package/dist/components/ApplicationFormCustom/FeedbackMethodField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/FeedbackTypeField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/Footnote.js.map +0 -1
- package/dist/components/ApplicationFormCustom/IsClientField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/OnlineCheckoutField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/PartnerCommentsField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/PosTerminalField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/RegionField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/RegionPremiumField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/ServiceDirectionField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/TermField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/UltraPremiumField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/VedField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/contants.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getField.d.ts +0 -8
- package/dist/components/ApplicationFormCustom/getField.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getFormatData.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/dist/components/ApplicationFormCustom/getInitialFormState.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/dist/components/ApplicationFormCustom/getNamesFromInput.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/dist/components/ApplicationFormCustom/getObjectValidator.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getPartnerComments.js.map +0 -1
- package/dist/components/ApplicationFormCustom/getValidation.js.map +0 -1
- package/dist/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -5
- package/dist/components/ApplicationFormCustom/renderAgreementSubmit.js.map +0 -1
- package/dist/components/ApplicationFormCustom/renderContacts.js.map +0 -1
- package/dist/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -3
- package/dist/components/ApplicationFormCustom/renderSubmitButton.js.map +0 -1
- package/dist/components/ApplicationFormCustom/validators.js.map +0 -1
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js +0 -23
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js.map +0 -1
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js +0 -2
- package/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js.map +0 -1
- package/dist/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/dist/components/TabsLayout/TabsLayoutButton.js +0 -24
- package/dist/components/TabsLayout/TabsLayoutButton.js.map +0 -1
- package/dist/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/dist/components/TabsLayout/TabsLayoutRedirectSection.js +0 -27
- package/dist/components/TabsLayout/TabsLayoutRedirectSection.js.map +0 -1
- package/dist/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/dist/components/TabsLayout/alignTabStyle.js +0 -8
- package/dist/components/TabsLayout/alignTabStyle.js.map +0 -1
- package/dist/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/dist/components/TabsLayout/useScrollToTab.js +0 -17
- package/dist/components/TabsLayout/useScrollToTab.js.map +0 -1
- package/lib/components/ApplicationFormCustom/AcquiringField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/AddressBranchField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/AmountField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/lib/components/ApplicationFormCustom/ApplicationFormCustom.js +0 -60
- package/lib/components/ApplicationFormCustom/ApplicationFormCustom.js.map +0 -1
- package/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.js +0 -3
- package/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.js.map +0 -1
- package/lib/components/ApplicationFormCustom/CommentField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/lib/components/ApplicationFormCustom/CustomFieldProps.js.map +0 -1
- package/lib/components/ApplicationFormCustom/FeedbackMethodField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/FeedbackTypeField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/Footnote.js.map +0 -1
- package/lib/components/ApplicationFormCustom/IsClientField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/OnlineCheckoutField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/PartnerCommentsField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/PosTerminalField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/RegionField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/RegionPremiumField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/ServiceDirectionField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/TermField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/UltraPremiumField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/VedField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/contants.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getField.d.ts +0 -7
- package/lib/components/ApplicationFormCustom/getField.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getFormatData.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/lib/components/ApplicationFormCustom/getInitialFormState.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/lib/components/ApplicationFormCustom/getNamesFromInput.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/lib/components/ApplicationFormCustom/getObjectValidator.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getPartnerComments.js.map +0 -1
- package/lib/components/ApplicationFormCustom/getValidation.js.map +0 -1
- package/lib/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -4
- package/lib/components/ApplicationFormCustom/renderAgreementSubmit.js.map +0 -1
- package/lib/components/ApplicationFormCustom/renderContacts.js.map +0 -1
- package/lib/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -2
- package/lib/components/ApplicationFormCustom/renderSubmitButton.js.map +0 -1
- package/lib/components/ApplicationFormCustom/validators.js.map +0 -1
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js +0 -21
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js.map +0 -1
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js +0 -2
- package/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js.map +0 -1
- package/lib/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/lib/components/TabsLayout/TabsLayoutButton.js +0 -22
- package/lib/components/TabsLayout/TabsLayoutButton.js.map +0 -1
- package/lib/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/lib/components/TabsLayout/TabsLayoutRedirectSection.js +0 -25
- package/lib/components/TabsLayout/TabsLayoutRedirectSection.js.map +0 -1
- package/lib/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/lib/components/TabsLayout/alignTabStyle.js +0 -6
- package/lib/components/TabsLayout/alignTabStyle.js.map +0 -1
- package/lib/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/lib/components/TabsLayout/useScrollToTab.js +0 -14
- package/lib/components/TabsLayout/useScrollToTab.js.map +0 -1
- package/mobile/bundle/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/mobile/bundle/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/mobile/bundle/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/mobile/bundle/components/ApplicationFormCustom/getField.d.ts +0 -8
- package/mobile/bundle/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/mobile/bundle/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/mobile/bundle/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/mobile/bundle/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -5
- package/mobile/bundle/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -3
- package/mobile/bundle/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/mobile/bundle/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/mobile/bundle/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/mobile/bundle/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/mobile/bundle/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/mobile/bundle/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/mobile/dist/components/ApplicationFormCustom/AcquiringField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/AddressBranchField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/AmountField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustom.js +0 -62
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustom.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.js +0 -3
- package/mobile/dist/components/ApplicationFormCustom/ApplicationFormCustomContent.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/CommentField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/mobile/dist/components/ApplicationFormCustom/CustomFieldProps.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/FeedbackMethodField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/FeedbackTypeField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/Footnote.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/IsClientField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/OnlineCheckoutField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/PartnerCommentsField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/PosTerminalField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/RegionField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/RegionPremiumField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/ServiceDirectionField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/TermField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/UltraPremiumField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/VedField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/contants.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getField.d.ts +0 -8
- package/mobile/dist/components/ApplicationFormCustom/getField.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getFormatData.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/mobile/dist/components/ApplicationFormCustom/getInitialFormState.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/mobile/dist/components/ApplicationFormCustom/getNamesFromInput.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/mobile/dist/components/ApplicationFormCustom/getObjectValidator.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getPartnerComments.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/getValidation.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -5
- package/mobile/dist/components/ApplicationFormCustom/renderAgreementSubmit.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/renderContacts.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -3
- package/mobile/dist/components/ApplicationFormCustom/renderSubmitButton.js.map +0 -1
- package/mobile/dist/components/ApplicationFormCustom/validators.js.map +0 -1
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js +0 -23
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js.map +0 -1
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js +0 -2
- package/mobile/dist/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js.map +0 -1
- package/mobile/dist/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/mobile/dist/components/TabsLayout/TabsLayoutButton.js +0 -24
- package/mobile/dist/components/TabsLayout/TabsLayoutButton.js.map +0 -1
- package/mobile/dist/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/mobile/dist/components/TabsLayout/TabsLayoutRedirectSection.js +0 -27
- package/mobile/dist/components/TabsLayout/TabsLayoutRedirectSection.js.map +0 -1
- package/mobile/dist/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/mobile/dist/components/TabsLayout/alignTabStyle.js +0 -8
- package/mobile/dist/components/TabsLayout/alignTabStyle.js.map +0 -1
- package/mobile/dist/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/mobile/dist/components/TabsLayout/useScrollToTab.js +0 -17
- package/mobile/dist/components/TabsLayout/useScrollToTab.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/AcquiringField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/AddressBranchField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/AmountField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustom.d.ts +0 -6
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustom.js +0 -60
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustom.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.d.ts +0 -99
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.js +0 -3
- package/mobile/lib/components/ApplicationFormCustom/ApplicationFormCustomContent.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/CommentField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/CustomFieldProps.d.ts +0 -6
- package/mobile/lib/components/ApplicationFormCustom/CustomFieldProps.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/FeedbackMethodField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/FeedbackTypeField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/Footnote.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/IsClientField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/OnlineCheckoutField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/PartnerCommentsField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/PosTerminalField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/RegionField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/RegionPremiumField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/ServiceDirectionField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/TermField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/UltraPremiumField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/VedField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/contants.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getField.d.ts +0 -8
- package/mobile/lib/components/ApplicationFormCustom/getField.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getFormatData.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getInitialFormState.d.ts +0 -24
- package/mobile/lib/components/ApplicationFormCustom/getInitialFormState.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getNamesFromInput.d.ts +0 -2
- package/mobile/lib/components/ApplicationFormCustom/getNamesFromInput.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getObjectValidator.d.ts +0 -4
- package/mobile/lib/components/ApplicationFormCustom/getObjectValidator.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getPartnerComments.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/getValidation.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/renderAgreementSubmit.d.ts +0 -5
- package/mobile/lib/components/ApplicationFormCustom/renderAgreementSubmit.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/renderContacts.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/renderSubmitButton.d.ts +0 -3
- package/mobile/lib/components/ApplicationFormCustom/renderSubmitButton.js.map +0 -1
- package/mobile/lib/components/ApplicationFormCustom/validators.js.map +0 -1
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.d.ts +0 -6
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js +0 -21
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.js.map +0 -1
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.d.ts +0 -20
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js +0 -2
- package/mobile/lib/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.js.map +0 -1
- package/mobile/lib/components/TabsLayout/TabsLayoutButton.d.ts +0 -10
- package/mobile/lib/components/TabsLayout/TabsLayoutButton.js +0 -22
- package/mobile/lib/components/TabsLayout/TabsLayoutButton.js.map +0 -1
- package/mobile/lib/components/TabsLayout/TabsLayoutRedirectSection.d.ts +0 -6
- package/mobile/lib/components/TabsLayout/TabsLayoutRedirectSection.js +0 -25
- package/mobile/lib/components/TabsLayout/TabsLayoutRedirectSection.js.map +0 -1
- package/mobile/lib/components/TabsLayout/alignTabStyle.d.ts +0 -2
- package/mobile/lib/components/TabsLayout/alignTabStyle.js +0 -6
- package/mobile/lib/components/TabsLayout/alignTabStyle.js.map +0 -1
- package/mobile/lib/components/TabsLayout/useScrollToTab.d.ts +0 -2
- package/mobile/lib/components/TabsLayout/useScrollToTab.js +0 -14
- package/mobile/lib/components/TabsLayout/useScrollToTab.js.map +0 -1
- package/mobile/src/components/ApplicationFormCustom/ApplicationFormCustom.tsx +0 -132
- package/mobile/src/components/ApplicationFormCustom/ApplicationFormCustomContent.ts +0 -164
- package/mobile/src/components/ApplicationFormCustom/CustomFieldProps.ts +0 -7
- package/mobile/src/components/ApplicationFormCustom/getField.tsx +0 -154
- package/mobile/src/components/ApplicationFormCustom/getInitialFormState.tsx +0 -70
- package/mobile/src/components/ApplicationFormCustom/getNamesFromInput.tsx +0 -4
- package/mobile/src/components/ApplicationFormCustom/getObjectValidator.tsx +0 -43
- package/mobile/src/components/ApplicationFormCustom/renderAgreementSubmit.tsx +0 -31
- package/mobile/src/components/ApplicationFormCustom/renderSubmitButton.tsx +0 -9
- package/mobile/src/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.tsx +0 -58
- package/mobile/src/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.ts +0 -19
- package/mobile/src/components/TabsLayout/TabsLayoutButton.tsx +0 -63
- package/mobile/src/components/TabsLayout/TabsLayoutRedirectSection.tsx +0 -32
- package/mobile/src/components/TabsLayout/alignTabStyle.ts +0 -7
- package/mobile/src/components/TabsLayout/useScrollToTab.ts +0 -16
- package/src/components/ApplicationFormCustom/ApplicationFormCustom.fixture.tsx +0 -625
- package/src/components/ApplicationFormCustom/ApplicationFormCustom.tsx +0 -132
- package/src/components/ApplicationFormCustom/ApplicationFormCustomContent.ts +0 -164
- package/src/components/ApplicationFormCustom/CustomFieldProps.ts +0 -7
- package/src/components/ApplicationFormCustom/getField.tsx +0 -154
- package/src/components/ApplicationFormCustom/getInitialFormState.tsx +0 -70
- package/src/components/ApplicationFormCustom/getNamesFromInput.tsx +0 -4
- package/src/components/ApplicationFormCustom/getObjectValidator.tsx +0 -43
- package/src/components/ApplicationFormCustom/renderAgreementSubmit.tsx +0 -31
- package/src/components/ApplicationFormCustom/renderSubmitButton.tsx +0 -9
- package/src/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.fixture.tsx +0 -28
- package/src/components/ApplicationFormGrantSupport/ApplicationFormGrantSupport.tsx +0 -58
- package/src/components/ApplicationFormGrantSupport/ApplicationFormGrantSupportContent.ts +0 -19
- package/src/components/TabsLayout/TabsLayoutButton.tsx +0 -63
- package/src/components/TabsLayout/TabsLayoutRedirectSection.tsx +0 -32
- package/src/components/TabsLayout/alignTabStyle.ts +0 -7
- package/src/components/TabsLayout/useScrollToTab.ts +0 -16
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/bundle/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/AmountField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/CommentField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/CustomFieldProps.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/Footnote.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/TermField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/VedField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/contants.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getField.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getInitialFormState.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getNamesFromInput.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getObjectValidator.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/getValidation.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/renderAgreementSubmit.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/renderSubmitButton.js +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/dist/components/{ApplicationFormCustom → ApplicationForm}/validators.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/AmountField.js +0 -0
- /package/lib/components/{ApplicationFormCustom/ApplicationFormCustom.fixture.d.ts → ApplicationForm/ApplicationForm.fixture.d.ts} +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/CommentField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/CustomFieldProps.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/Footnote.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/TermField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/VedField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/contants.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getField.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getInitialFormState.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getNamesFromInput.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getObjectValidator.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/getValidation.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/renderAgreementSubmit.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/renderSubmitButton.js +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/lib/components/{ApplicationFormCustom → ApplicationForm}/validators.js +0 -0
- /package/lib/components/{ApplicationFormGrantSupport/ApplicationFormGrantSupport.fixture.d.ts → GrantSupport/GrantSupport.fixture.d.ts} +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/mobile/bundle/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/AmountField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/CommentField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/CustomFieldProps.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/Footnote.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/TermField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/VedField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/contants.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getField.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getInitialFormState.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getNamesFromInput.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getObjectValidator.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/getValidation.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/renderAgreementSubmit.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/renderSubmitButton.js +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/mobile/dist/components/{ApplicationFormCustom → ApplicationForm}/validators.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AmountField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/AmountField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/CommentField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/CommentField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/CustomFieldProps.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/Footnote.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/Footnote.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/TermField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/TermField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/VedField.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/VedField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/contants.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/contants.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getField.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getInitialFormState.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getNamesFromInput.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getObjectValidator.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getValidation.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/getValidation.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/renderAgreementSubmit.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/renderSubmitButton.js +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/validators.d.ts +0 -0
- /package/mobile/lib/components/{ApplicationFormCustom → ApplicationForm}/validators.js +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/AmountField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom/ApplicationFormCustom.example.json → ApplicationForm/ApplicationForm.example.json} +0 -0
- /package/mobile/src/components/{ApplicationFormCustom/ApplicationFormCustom.ui.json → ApplicationForm/ApplicationForm.ui.json} +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/CommentField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/Footnote.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/RegionField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/TermField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/VedField.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/contants.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/getValidation.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.tsx +0 -0
- /package/mobile/src/components/{ApplicationFormCustom → ApplicationForm}/validators.ts +0 -0
- /package/mobile/src/components/{ApplicationFormGrantSupport/ApplicationFormGrantSupport.example.json → GrantSupport/GrantSupport.example.json} +0 -0
- /package/mobile/src/components/{ApplicationFormGrantSupport/ApplicationFormGrantSupport.ui.json → GrantSupport/GrantSupport.ui.json} +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/AcquiringField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/AddressBranchField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/AmountField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom/ApplicationFormCustom.example.json → ApplicationForm/ApplicationForm.example.json} +0 -0
- /package/src/components/{ApplicationFormCustom/ApplicationFormCustom.ui.json → ApplicationForm/ApplicationForm.ui.json} +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/CommentField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/FeedbackMethodField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/FeedbackTypeField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/Footnote.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/IsClientField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/OnlineCheckoutField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/PartnerCommentsField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/PosTerminalField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/RegionField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/RegionPremiumField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/ServiceDirectionField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/TermField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/UltraPremiumField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/VedField.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/contants.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/getFormatData.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/getPartnerComments.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/getValidation.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/renderContacts.tsx +0 -0
- /package/src/components/{ApplicationFormCustom → ApplicationForm}/validators.ts +0 -0
- /package/src/components/{ApplicationFormGrantSupport/ApplicationFormGrantSupport.example.json → GrantSupport/GrantSupport.example.json} +0 -0
- /package/src/components/{ApplicationFormGrantSupport/ApplicationFormGrantSupport.ui.json → GrantSupport/GrantSupport.ui.json} +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { renameProp, traversePageBlocks } from '../utils.js';
|
|
2
|
+
|
|
3
|
+
export const description = 'v0.14.257';
|
|
4
|
+
|
|
5
|
+
export default traversePageBlocks(adjustTabs);
|
|
6
|
+
|
|
7
|
+
function adjustTabs(block) {
|
|
8
|
+
const content = block?.content;
|
|
9
|
+
if (content && block.type === 'TabsLayout' && content?.tabs && content?.tabs?.length > 0) {
|
|
10
|
+
if (!content.tabsType) {
|
|
11
|
+
content.tabsType = 'animated';
|
|
12
|
+
}
|
|
13
|
+
content.tabs = content.tabs.map((tab) => {
|
|
14
|
+
if (!tab.type) {
|
|
15
|
+
tab.type = 'link';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return renameProp(tab, 'title', 'text');
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { clearImage, deleteEmptyProps, deleteProp, traversePageBlocks } from '../utils.js';
|
|
2
|
+
|
|
3
|
+
export const description = 'v0.14.295';
|
|
4
|
+
|
|
5
|
+
export default traversePageBlocks(
|
|
6
|
+
adjustApplicationFormCustom,
|
|
7
|
+
adjustApplicationFormGrantSupport,
|
|
8
|
+
adjustClearBlock,
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
function adjustApplicationFormGrantSupport(block) {
|
|
12
|
+
if (block.type === 'ApplicationFormGrantSupport') {
|
|
13
|
+
block.type = 'GrantSupport';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function adjustApplicationFormCustom(block) {
|
|
18
|
+
if (block.type === 'ApplicationFormCustom') {
|
|
19
|
+
block.type = 'ApplicationForm';
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function adjustClearBlock(block) {
|
|
24
|
+
const content = block?.content;
|
|
25
|
+
if (!content) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
block.content = deleteEmptyProps(content);
|
|
29
|
+
block.content = clearImage(content);
|
|
30
|
+
|
|
31
|
+
if (content?.__html === '<p><br></p>') {
|
|
32
|
+
deleteProp(content, '__html');
|
|
33
|
+
}
|
|
34
|
+
if (block?.content && !('items' in content)) {
|
|
35
|
+
deleteProp(content, 'isDotted');
|
|
36
|
+
}
|
|
37
|
+
}
|