@tap-payments/auth-jsconnect 2.3.5-test → 2.3.6
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/build/@types/app.d.ts +303 -1
- package/build/@types/app.js +17 -0
- package/build/@types/form.d.ts +10 -7
- package/build/@types/redux.d.ts +4 -0
- package/build/@types/user.d.ts +39 -3
- package/build/api/brand.d.ts +7 -0
- package/build/api/brand.js +10 -1
- package/build/api/data.d.ts +8 -0
- package/build/api/data.js +34 -2
- package/build/api/entity.d.ts +20 -5
- package/build/api/entity.js +26 -1
- package/build/api/index.d.ts +29 -5
- package/build/api/index.js +3 -1
- package/build/api/individual.d.ts +24 -6
- package/build/api/individual.js +9 -1
- package/build/api/init.d.ts +17 -0
- package/build/api/init.js +13 -0
- package/build/api/lead.d.ts +8 -1
- package/build/api/lead.js +9 -1
- package/build/app/settings.d.ts +12 -9
- package/build/app/settings.js +77 -34
- package/build/assets/locales/ar.json +28 -1
- package/build/assets/locales/en.json +28 -1
- package/build/components/AnimationFlow/AnimationFlow.d.ts +4 -2
- package/build/components/AnimationFlow/AnimationFlow.js +4 -4
- package/build/components/AnimationFlow/BottomSheet.d.ts +4 -1
- package/build/components/AnimationFlow/BottomSheet.js +43 -19
- package/build/components/AnimationFlow/Dialog.d.ts +4 -2
- package/build/components/AnimationFlow/Dialog.js +30 -7
- package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +5 -2
- package/build/components/ArabicDatePicker/ArabicDatePicker.js +45 -23
- package/build/components/ArabicDatePicker/arabicAr.d.ts +8 -0
- package/build/components/ArabicDatePicker/arabicAr.js +32 -0
- package/build/components/ArabicDatePicker/arabicEn.d.ts +8 -0
- package/build/components/ArabicDatePicker/arabicEn.js +32 -0
- package/build/components/ArabicDatePicker/style.css +45 -5
- package/build/components/DatePicker/DatePicker.d.ts +4 -1
- package/build/components/DatePicker/DatePicker.js +27 -17
- package/build/components/LogoBadge/LogoBadge.js +3 -0
- package/build/components/RadioGroup/RadioGroup.d.ts +5 -2
- package/build/components/RadioGroup/RadioGroup.js +5 -9
- package/build/components/RadioGroup/index.d.ts +1 -1
- package/build/components/SimpleList/SimpleList.d.ts +5 -2
- package/build/components/SimpleList/SimpleList.js +31 -11
- package/build/components/Slide/Slide.d.ts +1 -1
- package/build/constants/api.d.ts +7 -0
- package/build/constants/api.js +14 -1
- package/build/constants/app.d.ts +45 -0
- package/build/constants/app.js +101 -52
- package/build/constants/assets.d.ts +9 -0
- package/build/constants/assets.js +9 -0
- package/build/constants/validation.d.ts +3 -2
- package/build/constants/validation.js +3 -2
- package/build/features/app/bank/bankStore.d.ts +7 -3
- package/build/features/app/bank/bankStore.js +155 -115
- package/build/features/app/brand/brandStore.d.ts +32 -12
- package/build/features/app/brand/brandStore.js +384 -203
- package/build/features/app/business/businessStore.d.ts +16 -13
- package/build/features/app/business/businessStore.js +364 -295
- package/build/features/app/connect/connectStore.d.ts +15 -1
- package/build/features/app/connect/connectStore.js +292 -95
- package/build/features/app/connectExpress/connectExpressStore.d.ts +17 -3
- package/build/features/app/connectExpress/connectExpressStore.js +232 -100
- package/build/features/app/entity/entityStore.d.ts +15 -17
- package/build/features/app/entity/entityStore.js +279 -248
- package/build/features/app/individual/individualStore.d.ts +22 -10
- package/build/features/app/individual/individualStore.js +531 -418
- package/build/features/app/password/passwordStore.d.ts +4 -0
- package/build/features/app/password/passwordStore.js +99 -43
- package/build/features/app/tax/taxStore.d.ts +6 -2
- package/build/features/app/tax/taxStore.js +143 -101
- package/build/features/bank/Bank.js +10 -6
- package/build/features/bank/screens/BankDetails/BankDetails.js +43 -17
- package/build/features/bank/screens/BankDetails/BankName.d.ts +5 -1
- package/build/features/bank/screens/BankDetails/BankName.js +9 -9
- package/build/features/bank/screens/BankDetails/BankStatement.d.ts +5 -1
- package/build/features/bank/screens/BankDetails/BankStatement.js +7 -10
- package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +3 -1
- package/build/features/bank/screens/BankDetails/Beneficiary.js +6 -7
- package/build/features/bank/screens/BankDetails/ConfirmPolicy.d.ts +4 -1
- package/build/features/bank/screens/BankDetails/ConfirmPolicy.js +12 -13
- package/build/features/bank/screens/BankDetails/IBAN.d.ts +3 -1
- package/build/features/bank/screens/BankDetails/IBAN.js +3 -5
- package/build/features/bank/screens/BankDetails/validation.d.ts +8 -8
- package/build/features/bank/screens/BankDetails/validation.js +6 -17
- package/build/features/bank/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/bank/screens/Verify/OTPInput.js +5 -3
- package/build/features/bank/screens/Verify/Verify.js +1 -5
- package/build/features/brand/Brand.js +10 -6
- package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +10 -27
- package/build/features/brand/screens/BrandActivities/ActivitiesList.js +45 -28
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +41 -9
- package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +11 -38
- package/build/features/brand/screens/BrandActivities/CustomerBase.js +22 -31
- package/build/features/brand/screens/BrandActivities/ExpectedCustomers.d.ts +3 -1
- package/build/features/brand/screens/BrandActivities/ExpectedCustomers.js +24 -20
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.d.ts +3 -1
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +31 -19
- package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +13 -6
- package/build/features/brand/screens/BrandActivities/RefundPolicy.js +23 -12
- package/build/features/brand/screens/BrandActivities/TAC.d.ts +14 -2
- package/build/features/brand/screens/BrandActivities/TAC.js +21 -12
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.d.ts +4 -1
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +18 -4
- package/build/features/brand/screens/BrandActivities/validation.d.ts +43 -43
- package/build/features/brand/screens/BrandActivities/validation.js +11 -25
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +40 -33
- package/build/features/brand/screens/BrandInfo/BrandLogo.d.ts +9 -0
- package/build/features/brand/screens/BrandInfo/BrandLogo.js +41 -0
- package/build/features/brand/screens/BrandInfo/BrandName.d.ts +3 -2
- package/build/features/brand/screens/BrandInfo/BrandName.js +4 -7
- package/build/features/brand/screens/BrandInfo/SalesChannels.d.ts +2 -1
- package/build/features/brand/screens/BrandInfo/SalesChannels.js +19 -25
- package/build/features/brand/screens/BrandInfo/validation.d.ts +7 -13
- package/build/features/brand/screens/BrandInfo/validation.js +43 -53
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.d.ts +5 -0
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +102 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.js +69 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.js +69 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.js +69 -0
- package/build/features/{connect/screens/Merchant → brand/screens/BrandSegmentInfo}/TeamSize.d.ts +3 -1
- package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.js +20 -25
- package/build/features/brand/screens/BrandSegmentInfo/index.d.ts +2 -0
- package/build/features/brand/screens/BrandSegmentInfo/index.js +2 -0
- package/build/features/brand/screens/BrandSegmentInfo/validation.d.ts +17 -0
- package/build/features/brand/screens/BrandSegmentInfo/validation.js +9 -0
- package/build/features/brand/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/brand/screens/Verify/OTPInput.js +5 -3
- package/build/features/brand/screens/Verify/Verify.js +7 -20
- package/build/features/business/Business.js +7 -5
- package/build/features/business/screens/Activities/ActivitiesList.d.ts +15 -68
- package/build/features/business/screens/Activities/ActivitiesList.js +226 -98
- package/build/features/business/screens/Activities/OperationStartDate.d.ts +2 -2
- package/build/features/business/screens/Activities/OperationStartDate.js +3 -3
- package/build/features/business/screens/Activities/validation.d.ts +165 -30
- package/build/features/business/screens/Activities/validation.js +5 -2
- package/build/features/business/screens/BrandDetails/BrandDetails.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/BrandDetails.js +39 -0
- package/build/features/business/screens/BrandDetails/BrandName.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/BrandName.js +36 -0
- package/build/features/business/screens/BrandDetails/Header.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/Header.js +49 -0
- package/build/features/business/screens/BrandDetails/LicenseInfo.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/LicenseInfo.js +38 -0
- package/build/features/{brand/screens/BrandActivities/OperationStartDate.d.ts → business/screens/BrandDetails/SalesChannel.d.ts} +5 -7
- package/build/features/business/screens/BrandDetails/SalesChannel.js +48 -0
- package/build/features/business/screens/BrandDetails/index.d.ts +3 -0
- package/build/features/business/screens/BrandDetails/index.js +2 -0
- package/build/features/business/screens/BusinessType/Article.d.ts +3 -1
- package/build/features/business/screens/BusinessType/Article.js +19 -54
- package/build/features/business/screens/BusinessType/BusinessType.js +35 -11
- package/build/features/business/screens/BusinessType/EntityLicenseList.d.ts +9 -0
- package/build/features/business/screens/BusinessType/EntityLicenseList.js +129 -0
- package/build/features/business/screens/BusinessType/EntityName.js +6 -7
- package/build/features/business/screens/BusinessType/LicenseCertificate.js +2 -1
- package/build/features/business/screens/BusinessType/LicenseList.d.ts +1 -0
- package/build/features/business/screens/BusinessType/LicenseList.js +7 -22
- package/build/features/business/screens/BusinessType/LicenseNumber.d.ts +1 -2
- package/build/features/business/screens/BusinessType/LicenseNumber.js +7 -5
- package/build/features/business/screens/BusinessType/LicenseType.d.ts +2 -2
- package/build/features/business/screens/BusinessType/validation.js +2 -2
- package/build/features/business/screens/CivilID/IDNumber.js +2 -3
- package/build/features/business/screens/Customers/CustomerLocations.d.ts +44 -37
- package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
- package/build/features/business/screens/Customers/Customers.js +27 -16
- package/build/features/business/screens/Customers/ExpectedCustomers.js +12 -4
- package/build/features/business/screens/Customers/ExpectedSalesRange.js +14 -6
- package/build/features/business/screens/Customers/RefundPolicy.d.ts +5 -5
- package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
- package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
- package/build/features/business/screens/IDBOD/DOB.js +3 -3
- package/build/features/business/screens/IDBOD/ID.js +2 -3
- package/build/features/business/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/business/screens/Verify/OTPInput.js +5 -3
- package/build/features/connect/Connect.d.ts +2 -0
- package/build/features/connect/Connect.js +86 -11
- package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
- package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
- package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
- package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentLocations.js} +17 -25
- package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
- package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentProfits.js} +18 -26
- package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
- package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
- package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -20
- package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
- package/build/features/connect/screens/BrandSegment/index.js +2 -0
- package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
- package/build/features/connect/screens/BrandSegment/validation.js +9 -0
- package/build/features/connect/screens/CivilID/CivilID.js +5 -13
- package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
- package/build/features/connect/screens/Individual/Email.js +17 -27
- package/build/features/connect/screens/Individual/Individual.js +8 -1
- package/build/features/connect/screens/Individual/MobileNumber.js +16 -15
- package/build/features/connect/screens/Individual/Name.js +11 -15
- package/build/features/connect/screens/Merchant/BrandList.js +4 -22
- package/build/features/connect/screens/Merchant/BrandName.js +4 -7
- package/build/features/connect/screens/Merchant/Merchant.js +13 -15
- package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
- package/build/features/connect/screens/Merchant/validation.d.ts +3 -6
- package/build/features/connect/screens/Merchant/validation.js +14 -17
- package/build/features/connect/screens/Mobile/Mobile.js +13 -16
- package/build/features/connect/screens/Mobile/MobileNumber.js +14 -10
- package/build/features/connect/screens/NID/DOB.js +3 -3
- package/build/features/connect/screens/NID/IDNumber.js +6 -7
- package/build/features/connect/screens/NID/NID.js +6 -0
- package/build/features/connect/screens/OTP/OTP.js +13 -15
- package/build/features/connect/screens/OTP/OTPInput.js +10 -0
- package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
- package/build/features/connectExpress/ConnectExpress.d.ts +1 -0
- package/build/features/connectExpress/ConnectExpress.js +72 -12
- package/build/features/connectExpress/screens/Brand/Brand.js +1 -1
- package/build/features/connectExpress/screens/CivilID/IDNumber.js +6 -7
- package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -7
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +7 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +9 -14
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.d.ts +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +4 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -3
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +4 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +14 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.js +9 -10
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +4 -4
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +11 -6
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +6 -14
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +6 -2
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +3 -4
- package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +2 -2
- package/build/features/connectExpress/screens/Mobile/Mobile.js +4 -3
- package/build/features/connectExpress/screens/Mobile/MobileNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/Mobile/MobileNumber.js +6 -2
- package/build/features/connectExpress/screens/Mobile/TAC.d.ts +2 -1
- package/build/features/connectExpress/screens/Mobile/TAC.js +3 -1
- package/build/features/connectExpress/screens/NID/DOB.d.ts +2 -1
- package/build/features/connectExpress/screens/NID/DOB.js +3 -3
- package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/NID/IDNumber.js +3 -4
- package/build/features/connectExpress/screens/NID/NID.js +4 -2
- package/build/features/connectExpress/screens/NID/TAC.d.ts +14 -1
- package/build/features/connectExpress/screens/NID/TAC.js +9 -10
- package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +2 -3
- package/build/features/connectExpress/screens/OTP/OTPInput.js +3 -3
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -1
- package/build/features/entity/Entity.js +10 -6
- package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +16 -68
- package/build/features/entity/screens/EntityCapital/ActivityList.js +221 -106
- package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalPaid.js +14 -15
- package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +10 -11
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +15 -16
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +31 -20
- package/build/features/entity/screens/EntityCapital/validation.d.ts +175 -40
- package/build/features/entity/screens/EntityCapital/validation.js +9 -12
- package/build/features/entity/screens/EntityName/Article.d.ts +5 -1
- package/build/features/entity/screens/EntityName/Article.js +20 -54
- package/build/features/entity/screens/EntityName/EntityName.js +60 -16
- package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +11 -27
- package/build/features/entity/screens/EntityName/EntityTypeList.js +32 -43
- package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +5 -3
- package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -5
- package/build/features/entity/screens/EntityName/IssuingDate.d.ts +5 -3
- package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
- package/build/features/entity/screens/EntityName/LegalName.d.ts +3 -1
- package/build/features/entity/screens/EntityName/LegalName.js +9 -6
- package/build/features/entity/screens/EntityName/LicenseCertificate.d.ts +4 -1
- package/build/features/entity/screens/EntityName/LicenseCertificate.js +13 -7
- package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +3 -1
- package/build/features/entity/screens/EntityName/LicenseNumber.js +13 -11
- package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +3 -1
- package/build/features/entity/screens/EntityName/UnifiedNumber.js +9 -7
- package/build/features/entity/screens/EntityName/validation.d.ts +35 -35
- package/build/features/entity/screens/EntityName/validation.js +68 -93
- package/build/features/entity/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/entity/screens/Verify/OTPInput.js +5 -3
- package/build/features/entity/screens/Verify/Verify.js +7 -20
- package/build/features/featuresScreens.js +13 -1
- package/build/features/individual/Individual.js +10 -6
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +54 -23
- package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +7 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +29 -10
- package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +3 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +17 -12
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +30 -41
- package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +3 -3
- package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +94 -55
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +5 -3
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +17 -12
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +9 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +13 -7
- package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.d.ts +4 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +14 -8
- package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +32 -42
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +8 -8
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -12
- package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
- package/build/features/individual/screens/IndividualList/MobileNumber.js +0 -1
- package/build/features/individual/screens/IndividualList/UserList.js +10 -6
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +14 -20
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +8 -14
- package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +4 -4
- package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +5 -7
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -3
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +5 -2
- package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/ID.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -36
- package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +10 -21
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +14 -16
- package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +10 -21
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.d.ts +1 -0
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +6 -3
- package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +6 -3
- package/build/features/individual/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/individual/screens/Verify/OTPInput.js +5 -3
- package/build/features/individual/screens/Verify/Verify.js +1 -5
- package/build/features/password/Password.js +7 -5
- package/build/features/password/screens/CreatePassword/CreatePassword.js +9 -16
- package/build/features/password/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/password/screens/Verify/OTPInput.js +5 -3
- package/build/features/password/screens/Verify/Verify.js +7 -20
- package/build/features/shared/Address/CountryList.d.ts +7 -7
- package/build/features/shared/Address/CountryList.js +1 -1
- package/build/features/shared/Address/InputSelect.d.ts +7 -7
- package/build/features/shared/Address/InputSelect.js +1 -1
- package/build/features/shared/Button/Button.d.ts +3 -1
- package/build/features/shared/Button/Button.js +2 -2
- package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
- package/build/features/shared/Button/FlowsButtons.js +22 -20
- package/build/features/shared/Button/IndividualActionButtons.d.ts +3 -1
- package/build/features/shared/Button/IndividualActionButtons.js +28 -4
- package/build/features/shared/Calender/Calender.d.ts +13 -0
- package/build/features/shared/Calender/Calender.js +56 -0
- package/build/features/shared/Calender/index.d.ts +2 -0
- package/build/features/shared/Calender/index.js +2 -0
- package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
- package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
- package/build/features/shared/Chip/Chip.d.ts +3 -0
- package/build/features/shared/Chip/Chip.js +21 -0
- package/build/features/shared/Chip/index.d.ts +2 -0
- package/build/features/shared/Chip/index.js +2 -0
- package/build/features/shared/Containers/FeatureContainer.d.ts +4 -1
- package/build/features/shared/Containers/FeatureContainer.js +5 -4
- package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
- package/build/features/shared/Dot/Dot.d.ts +8 -0
- package/build/features/shared/Dot/Dot.js +29 -0
- package/build/features/shared/Dot/index.d.ts +2 -0
- package/build/features/shared/Dot/index.js +2 -0
- package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
- package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
- package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
- package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
- package/build/features/shared/EndAdornment/index.d.ts +3 -0
- package/build/features/shared/EndAdornment/index.js +3 -0
- package/build/features/shared/Footer/Footer.js +8 -0
- package/build/features/shared/Footer/PoweredByFooter.d.ts +9 -0
- package/build/features/shared/Footer/PoweredByFooter.js +36 -0
- package/build/features/shared/Footer/index.d.ts +3 -2
- package/build/features/shared/Footer/index.js +3 -2
- package/build/features/shared/GenericError/GenericError.js +1 -1
- package/build/features/shared/Input/Input.d.ts +5 -6
- package/build/features/shared/Input/Input.js +2 -3
- package/build/features/shared/Input/index.d.ts +2 -1
- package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
- package/build/features/shared/InputSelect/InputSelect.js +33 -0
- package/build/features/shared/InputSelect/index.d.ts +2 -0
- package/build/features/shared/InputSelect/index.js +2 -0
- package/build/features/shared/OTP/OTP.d.ts +2 -1
- package/build/features/shared/OTP/OTP.js +2 -2
- package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +3 -1
- package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +8 -6
- package/build/features/shared/SalesChannels/SalesChannel.d.ts +3 -1
- package/build/features/shared/SalesChannels/SalesChannel.js +9 -4
- package/build/features/shared/Search/Search.d.ts +2 -1
- package/build/features/shared/Search/Search.js +2 -2
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +19 -8
- package/build/features/shared/SuccessScreen/SuccessScreen.d.ts +3 -1
- package/build/features/shared/SuccessScreen/SuccessScreen.js +3 -2
- package/build/features/shared/UploadFile/FileUpload.d.ts +32 -0
- package/build/features/shared/UploadFile/FileUpload.js +267 -0
- package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadFile.js +7 -7
- package/build/features/shared/UploadFile/UploadWrapper.d.ts +36 -0
- package/build/features/shared/UploadFile/UploadWrapper.js +115 -0
- package/build/features/shared/UploadFile/index.d.ts +2 -1
- package/build/features/shared/UploadFile/index.js +2 -1
- package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +8 -27
- package/build/features/shared/UploadMultipleFile/UploadFile.js +70 -56
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +7 -3
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +11 -17
- package/build/features/signIn/SignIn.js +3 -4
- package/build/features/tax/Tax.js +10 -6
- package/build/features/tax/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +4 -1
- package/build/features/tax/screens/TaxDetails/ConfirmPolicy.js +12 -12
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +23 -10
- package/build/features/tax/screens/TaxDetails/TaxDocument.d.ts +4 -1
- package/build/features/tax/screens/TaxDetails/TaxDocument.js +7 -5
- package/build/features/tax/screens/TaxDetails/VATId.d.ts +5 -1
- package/build/features/tax/screens/TaxDetails/VATId.js +6 -10
- package/build/features/tax/screens/TaxDetails/validation.d.ts +4 -4
- package/build/features/tax/screens/TaxDetails/validation.js +2 -5
- package/build/features/tax/screens/Verify/OTPInput.js +5 -3
- package/build/features/tax/screens/Verify/Verify.js +6 -22
- package/build/hooks/index.d.ts +5 -0
- package/build/hooks/index.js +5 -0
- package/build/hooks/useAppConfig.d.ts +4 -2
- package/build/hooks/useAppConfig.js +18 -16
- package/build/hooks/useDataNoneEditable.d.ts +2 -0
- package/build/hooks/useDataNoneEditable.js +19 -0
- package/build/hooks/useDataVerified.d.ts +6 -0
- package/build/hooks/useDataVerified.js +19 -0
- package/build/hooks/useErrorListener.d.ts +2 -1
- package/build/hooks/useErrorListener.js +16 -1
- package/build/hooks/useExcludeReadOnlyFelids.d.ts +11 -0
- package/build/hooks/useExcludeReadOnlyFelids.js +33 -0
- package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +6 -0
- package/build/hooks/useFormErrorAndUpdateReadOnly.js +48 -0
- package/build/hooks/useFormReadOnly.d.ts +6 -0
- package/build/hooks/useFormReadOnly.js +40 -0
- package/build/hooks/useVerifyToken.js +1 -1
- package/build/theme/shadows.js +1 -1
- package/build/utils/array.d.ts +14 -2
- package/build/utils/array.js +196 -4
- package/build/utils/common.d.ts +1 -0
- package/build/utils/common.js +10 -0
- package/build/utils/date.d.ts +1 -0
- package/build/utils/date.js +6 -0
- package/build/utils/error.d.ts +1 -0
- package/build/utils/error.js +3 -0
- package/build/utils/gtm.d.ts +6 -0
- package/build/utils/gtm.js +29 -0
- package/build/utils/index.d.ts +1 -0
- package/build/utils/index.js +1 -0
- package/build/utils/object.d.ts +4 -0
- package/build/utils/object.js +17 -0
- package/build/utils/string.d.ts +5 -2
- package/build/utils/string.js +28 -7
- package/package.json +4 -2
- package/build/features/brand/screens/BrandActivities/OperationStartDate.js +0 -45
- package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -8
- package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
- /package/build/features/{brand/screens/BrandInfo → connect/screens/BrandSegment}/TeamSize.d.ts +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FieldValues, UseFormReturn } from 'react-hook-form';
|
|
2
|
+
declare type ReadOnly<TF, V> = {
|
|
3
|
+
[key in keyof TF]: V;
|
|
4
|
+
};
|
|
5
|
+
export declare const useExcludeReadOnlyFelids: <TF extends FieldValues = FieldValues>({ formState }: UseFormReturn<TF, any>, readOnly: ReadOnly<TF, boolean>) => {
|
|
6
|
+
getFelids: <T extends TF = TF>(data: T) => {
|
|
7
|
+
originalFormData: T;
|
|
8
|
+
formData: T;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { settingsSelector } from '../app/settings';
|
|
13
|
+
import { useAppSelector } from './useAppSelector';
|
|
14
|
+
export var useExcludeReadOnlyFelids = function (_a, readOnly) {
|
|
15
|
+
var formState = _a.formState;
|
|
16
|
+
var settingData = useAppSelector(settingsSelector).data;
|
|
17
|
+
var getFelids = function (data) {
|
|
18
|
+
if (settingData.boardMaturity !== false)
|
|
19
|
+
return { originalFormData: data, formData: data };
|
|
20
|
+
var object = {};
|
|
21
|
+
var objectCopy = __assign({}, data);
|
|
22
|
+
for (var key in data) {
|
|
23
|
+
if (readOnly[key] === true)
|
|
24
|
+
continue;
|
|
25
|
+
object[key] = data[key];
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
originalFormData: objectCopy,
|
|
29
|
+
formData: object
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
return { getFelids: getFelids };
|
|
33
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FieldValues, UseFormReturn } from 'react-hook-form';
|
|
2
|
+
declare type ReadOnly<TF, V> = {
|
|
3
|
+
[key in keyof TF]: V;
|
|
4
|
+
};
|
|
5
|
+
export declare const useFormErrorAndUpdateReadOnly: <TF extends FieldValues = FieldValues>(methods: UseFormReturn<TF, any>, readOnlyData: { [key in keyof TF]: boolean; }, noneEditable?: Record<any, boolean>) => ReadOnly<TF, boolean>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { useCallback, useEffect, useState } from 'react';
|
|
2
|
+
export var useFormErrorAndUpdateReadOnly = function (methods, readOnlyData, noneEditable) {
|
|
3
|
+
if (noneEditable === void 0) { noneEditable = {}; }
|
|
4
|
+
var _a = useState({}), readOnly = _a[0], setReadOnly = _a[1];
|
|
5
|
+
var reValidateReadOnly = useCallback(function () {
|
|
6
|
+
if (Object.keys(readOnlyData).length === 0)
|
|
7
|
+
return;
|
|
8
|
+
var defaultValues = methods.formState.defaultValues;
|
|
9
|
+
for (var key in readOnlyData) {
|
|
10
|
+
var value = readOnlyData === null || readOnlyData === void 0 ? void 0 : readOnlyData[key];
|
|
11
|
+
if (value === true) {
|
|
12
|
+
methods.setValue(key, defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues[key], { shouldValidate: true });
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}, [readOnlyData, methods.setValue, methods.formState.defaultValues]);
|
|
16
|
+
var reValidateNoneEditable = useCallback(function () {
|
|
17
|
+
var hasNoneEditable = Object.values(noneEditable).some(function (value) { return value === true; });
|
|
18
|
+
if (!hasNoneEditable)
|
|
19
|
+
return;
|
|
20
|
+
var defaultValues = methods.formState.defaultValues;
|
|
21
|
+
for (var key in defaultValues) {
|
|
22
|
+
methods.setValue(key, defaultValues[key], { shouldValidate: true });
|
|
23
|
+
}
|
|
24
|
+
}, [noneEditable, methods.formState.defaultValues]);
|
|
25
|
+
var updateReadOnly = useCallback(function () {
|
|
26
|
+
var errors = methods.formState.errors;
|
|
27
|
+
var newReadOnly = {};
|
|
28
|
+
for (var key in readOnlyData) {
|
|
29
|
+
var error = errors === null || errors === void 0 ? void 0 : errors[key];
|
|
30
|
+
var value = readOnlyData === null || readOnlyData === void 0 ? void 0 : readOnlyData[key];
|
|
31
|
+
if (error)
|
|
32
|
+
newReadOnly[key] = false;
|
|
33
|
+
else
|
|
34
|
+
newReadOnly[key] = value;
|
|
35
|
+
}
|
|
36
|
+
setReadOnly(newReadOnly);
|
|
37
|
+
}, [readOnlyData, methods.formState.errors]);
|
|
38
|
+
useEffect(function () {
|
|
39
|
+
reValidateReadOnly();
|
|
40
|
+
}, [reValidateReadOnly]);
|
|
41
|
+
useEffect(function () {
|
|
42
|
+
reValidateNoneEditable();
|
|
43
|
+
}, [reValidateNoneEditable]);
|
|
44
|
+
useEffect(function () {
|
|
45
|
+
updateReadOnly();
|
|
46
|
+
}, [updateReadOnly]);
|
|
47
|
+
return readOnly;
|
|
48
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FieldValues, UseFormReturn } from 'react-hook-form';
|
|
2
|
+
declare type ReadOnly<TF, V> = {
|
|
3
|
+
[key in keyof TF]: V;
|
|
4
|
+
};
|
|
5
|
+
export declare const useFormReadOnly: <TF extends FieldValues = FieldValues>(methods: UseFormReturn<TF, any>, extraData?: { [key in keyof TF]?: any; }) => ReadOnly<TF, boolean>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { useCallback, useEffect, useState } from 'react';
|
|
2
|
+
import { settingsSelector } from '../app/settings';
|
|
3
|
+
import { useAppSelector } from './useAppSelector';
|
|
4
|
+
var isValidData = function (data) {
|
|
5
|
+
if (data === null || data === undefined)
|
|
6
|
+
return false;
|
|
7
|
+
if (typeof data === 'boolean')
|
|
8
|
+
return data === true;
|
|
9
|
+
if (typeof data === 'string' && data.trim() === '')
|
|
10
|
+
return false;
|
|
11
|
+
if (typeof data === 'object' && Object.keys(data).length === 0)
|
|
12
|
+
return false;
|
|
13
|
+
if (Array.isArray(data) && data.length === 0)
|
|
14
|
+
return false;
|
|
15
|
+
return true;
|
|
16
|
+
};
|
|
17
|
+
export var useFormReadOnly = function (methods, extraData) {
|
|
18
|
+
if (extraData === void 0) { extraData = {}; }
|
|
19
|
+
var _a = useState({}), readOnly = _a[0], setReadOnly = _a[1];
|
|
20
|
+
var data = useAppSelector(settingsSelector).data;
|
|
21
|
+
var setReadOnlyValues = useCallback(function () {
|
|
22
|
+
if (data.boardMaturity)
|
|
23
|
+
return;
|
|
24
|
+
var values = methods.formState.defaultValues;
|
|
25
|
+
var readOnlyValues = {};
|
|
26
|
+
for (var key in values) {
|
|
27
|
+
var value = values === null || values === void 0 ? void 0 : values[key];
|
|
28
|
+
readOnlyValues[key] = isValidData(value);
|
|
29
|
+
}
|
|
30
|
+
for (var key in extraData) {
|
|
31
|
+
var value = extraData === null || extraData === void 0 ? void 0 : extraData[key];
|
|
32
|
+
readOnlyValues[key] = isValidData(value);
|
|
33
|
+
}
|
|
34
|
+
setReadOnly(readOnlyValues);
|
|
35
|
+
}, [methods.formState.defaultValues, data.boardMaturity]);
|
|
36
|
+
useEffect(function () {
|
|
37
|
+
setReadOnlyValues();
|
|
38
|
+
}, [setReadOnlyValues]);
|
|
39
|
+
return readOnly;
|
|
40
|
+
};
|
|
@@ -6,7 +6,7 @@ export var useVerifyToken = function (_a) {
|
|
|
6
6
|
var verify = _a.verify, internalToken = _a.internalToken, navigation = _a.navigation, open = _a.open, settingLoading = _a.settingLoading, loadingScreenName = _a.loadingScreenName;
|
|
7
7
|
var dispatch = useAppDispatch();
|
|
8
8
|
var verifyTokenFun = function () {
|
|
9
|
-
var token = getParameterByName('token')
|
|
9
|
+
var token = internalToken ? internalToken : getParameterByName('token');
|
|
10
10
|
var lang = getParameterByName('lang');
|
|
11
11
|
if (lang)
|
|
12
12
|
dispatch(handleLanguage(lang));
|
package/build/theme/shadows.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export var shadows = [
|
|
2
2
|
'none',
|
|
3
3
|
'0 0 0 1px rgb(63 63 68 / 5%), 0 1px 2px 0 rgb(63 63 68 / 15%)',
|
|
4
|
-
'0px
|
|
4
|
+
'0px 0px 2px rgba(0, 0, 0, 0.08)',
|
|
5
5
|
'0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)',
|
|
6
6
|
'0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)',
|
|
7
7
|
'0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)',
|
package/build/utils/array.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Activity, CountryCode, SaleChannel } from '../@types';
|
|
1
|
+
import { ActivitiesIsIc, Activity, ActivityParams, CountryCode, SaleChannel, User } from '../@types';
|
|
2
2
|
export declare const isArray: (value: any) => value is any[];
|
|
3
3
|
export declare const joinArray: (items: Array<any>, joiner?: string) => string;
|
|
4
4
|
export declare const replaceStringArrayItems: (items: Array<string>, include: string, withThis: string) => string[];
|
|
@@ -61,7 +61,19 @@ export declare const fixBrandList: (items: Array<{
|
|
|
61
61
|
channel_services: any[];
|
|
62
62
|
}[];
|
|
63
63
|
export declare const findFirstId: (items: Array<SaleChannel>) => string;
|
|
64
|
-
export declare const sortActivitiesByName: (items: Array<
|
|
64
|
+
export declare const sortActivitiesByName: (items: Array<ActivityParams>, path: string) => ActivityParams[];
|
|
65
65
|
export declare const getFileDetailsFromDocument: (documents: Array<any>, purpose: string) => any;
|
|
66
66
|
export declare const getRecentDocumentBasedOnPurpose: (documents: Array<any>, purpose: string) => any;
|
|
67
67
|
export declare const findInArrayOrSubArray: (items: Array<any>, value: string | number) => null;
|
|
68
|
+
export declare const groupSectionWithSelectedActivitiesAtBeginning: (sections: Array<ActivitiesIsIc>, selectedActivities: Array<Activity>) => ActivitiesIsIc[];
|
|
69
|
+
export declare const filterActivitiesByName: (activityList: Array<ActivitiesIsIc>, value: string) => ActivityParams[];
|
|
70
|
+
export declare const mapUserList: (individuals: any) => any;
|
|
71
|
+
export declare const sortUserList: (list: Array<User>) => User[];
|
|
72
|
+
export declare const getIndividualType: (objects: Array<string>) => {
|
|
73
|
+
isUser: boolean;
|
|
74
|
+
isShareholder: boolean;
|
|
75
|
+
isBoardMember: boolean;
|
|
76
|
+
isBuyer: boolean;
|
|
77
|
+
isCustomer: boolean;
|
|
78
|
+
};
|
|
79
|
+
export declare function retrieveIndividualData(type: string, boardData: any, serviceCallback: () => Promise<any>): Promise<any>;
|
package/build/utils/array.js
CHANGED
|
@@ -9,7 +9,53 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
9
|
};
|
|
10
10
|
return __assign.apply(this, arguments);
|
|
11
11
|
};
|
|
12
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
13
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
14
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
15
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
16
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
17
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
22
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
25
|
+
function step(op) {
|
|
26
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
27
|
+
while (_) try {
|
|
28
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
29
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
30
|
+
switch (op[0]) {
|
|
31
|
+
case 0: case 1: t = op; break;
|
|
32
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
33
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
34
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
35
|
+
default:
|
|
36
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
37
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
38
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
39
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
40
|
+
if (t[2]) _.ops.pop();
|
|
41
|
+
_.trys.pop(); continue;
|
|
42
|
+
}
|
|
43
|
+
op = body.call(thisArg, _);
|
|
44
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
45
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
49
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
50
|
+
if (ar || !(i in from)) {
|
|
51
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
52
|
+
ar[i] = from[i];
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
56
|
+
};
|
|
12
57
|
import get from 'lodash-es/get';
|
|
58
|
+
import { IndividualType } from '../@types';
|
|
13
59
|
export var isArray = function (value) { return Array.isArray(value); };
|
|
14
60
|
export var joinArray = function (items, joiner) {
|
|
15
61
|
if (joiner === void 0) { joiner = '__'; }
|
|
@@ -153,10 +199,17 @@ export var getFileDetailsFromDocument = function (documents, purpose) {
|
|
|
153
199
|
export var getRecentDocumentBasedOnPurpose = function (documents, purpose) {
|
|
154
200
|
if ((documents || []).length === 0)
|
|
155
201
|
return [];
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
202
|
+
var filteredByPurpose = documents.filter(function (doc) {
|
|
203
|
+
return doc.type === purpose;
|
|
204
|
+
});
|
|
205
|
+
if ((filteredByPurpose || []).length > 0) {
|
|
206
|
+
return filteredByPurpose.sort(function (a, b) { return b.created - a.created; })[0];
|
|
207
|
+
}
|
|
208
|
+
else {
|
|
209
|
+
return documents
|
|
210
|
+
.filter(function (doc) { var _a; return !((_a = doc.file_details) === null || _a === void 0 ? void 0 : _a.length) && doc.id; })
|
|
211
|
+
.sort(function (a, b) { return b.created - a.created; })[0];
|
|
212
|
+
}
|
|
160
213
|
};
|
|
161
214
|
export var findInArrayOrSubArray = function (items, value) {
|
|
162
215
|
var found = null;
|
|
@@ -172,3 +225,142 @@ export var findInArrayOrSubArray = function (items, value) {
|
|
|
172
225
|
});
|
|
173
226
|
return found;
|
|
174
227
|
};
|
|
228
|
+
export var groupSectionWithSelectedActivitiesAtBeginning = function (sections, selectedActivities) {
|
|
229
|
+
if ((selectedActivities === null || selectedActivities === void 0 ? void 0 : selectedActivities.length) === 0)
|
|
230
|
+
return sections || [];
|
|
231
|
+
if ((sections === null || sections === void 0 ? void 0 : sections.length) === 0)
|
|
232
|
+
return [];
|
|
233
|
+
var filteredSections = sections.filter(function (section) {
|
|
234
|
+
var _a;
|
|
235
|
+
return (selectedActivities.find(function (_a) {
|
|
236
|
+
var id = _a.id;
|
|
237
|
+
return id === section.id;
|
|
238
|
+
}) ||
|
|
239
|
+
((_a = section.divisions) === null || _a === void 0 ? void 0 : _a.some(function (division) {
|
|
240
|
+
var _a;
|
|
241
|
+
return (selectedActivities.find(function (_a) {
|
|
242
|
+
var id = _a.id;
|
|
243
|
+
return id === division.id;
|
|
244
|
+
}) ||
|
|
245
|
+
((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.some(function (activity) {
|
|
246
|
+
return selectedActivities.find(function (_a) {
|
|
247
|
+
var id = _a.id;
|
|
248
|
+
return id === activity.id;
|
|
249
|
+
});
|
|
250
|
+
})));
|
|
251
|
+
})));
|
|
252
|
+
});
|
|
253
|
+
var mapSelectedDivisionBeginning = filteredSections.map(function (section) {
|
|
254
|
+
var _a, _b;
|
|
255
|
+
var selectedDivision = ((_a = section.divisions) === null || _a === void 0 ? void 0 : _a.filter(function (division) {
|
|
256
|
+
var _a;
|
|
257
|
+
return (selectedActivities.find(function (_a) {
|
|
258
|
+
var id = _a.id;
|
|
259
|
+
return id === division.id;
|
|
260
|
+
}) ||
|
|
261
|
+
((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.some(function (activity) {
|
|
262
|
+
return selectedActivities.find(function (_a) {
|
|
263
|
+
var id = _a.id;
|
|
264
|
+
return id === activity.id;
|
|
265
|
+
});
|
|
266
|
+
})));
|
|
267
|
+
})) || [];
|
|
268
|
+
var remainingDivision = ((_b = section.divisions) === null || _b === void 0 ? void 0 : _b.filter(function (division) { return !selectedDivision.includes(division); })) || [];
|
|
269
|
+
var divisions = __spreadArray(__spreadArray([], selectedDivision, true), remainingDivision, true);
|
|
270
|
+
return __assign(__assign({}, section), { divisions: divisions });
|
|
271
|
+
});
|
|
272
|
+
var mapSelectedActivitiesBeginning = mapSelectedDivisionBeginning.map(function (section) {
|
|
273
|
+
var _a;
|
|
274
|
+
var divisions = (_a = section.divisions) === null || _a === void 0 ? void 0 : _a.map(function (division) {
|
|
275
|
+
var _a, _b;
|
|
276
|
+
var filterSelectedActivities = ((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.filter(function (activity) {
|
|
277
|
+
return selectedActivities.find(function (_a) {
|
|
278
|
+
var id = _a.id;
|
|
279
|
+
return id === activity.id;
|
|
280
|
+
});
|
|
281
|
+
})) || [];
|
|
282
|
+
var remainingActivities = ((_b = division.activities) === null || _b === void 0 ? void 0 : _b.filter(function (activity) { return !filterSelectedActivities.includes(activity); })) || [];
|
|
283
|
+
var activities = __spreadArray(__spreadArray([], filterSelectedActivities, true), remainingActivities, true);
|
|
284
|
+
return __assign(__assign({}, division), { activities: activities });
|
|
285
|
+
});
|
|
286
|
+
return __assign(__assign({}, section), { divisions: divisions });
|
|
287
|
+
});
|
|
288
|
+
var remainingSections = sections.filter(function (section) { return !filteredSections.includes(section); });
|
|
289
|
+
return __spreadArray(__spreadArray([], mapSelectedActivitiesBeginning, true), remainingSections, true);
|
|
290
|
+
};
|
|
291
|
+
export var filterActivitiesByName = function (activityList, value) {
|
|
292
|
+
return (activityList || [])
|
|
293
|
+
.flatMap(function (s) { return s.divisions || []; })
|
|
294
|
+
.flatMap(function (d) { return d.activities || []; })
|
|
295
|
+
.filter(function (a) {
|
|
296
|
+
var _a, _b, _c, _d;
|
|
297
|
+
return ((_b = (_a = a === null || a === void 0 ? void 0 : a.name) === null || _a === void 0 ? void 0 : _a.en) === null || _b === void 0 ? void 0 : _b.toLowerCase().includes(value.toLowerCase())) || ((_d = (_c = a === null || a === void 0 ? void 0 : a.name) === null || _c === void 0 ? void 0 : _c.ar) === null || _d === void 0 ? void 0 : _d.toLowerCase().includes(value.toLowerCase()));
|
|
298
|
+
});
|
|
299
|
+
};
|
|
300
|
+
export var mapUserList = function (individuals) {
|
|
301
|
+
return (individuals || []).map(function (_a) {
|
|
302
|
+
var list = _a.list, data_state = _a.data_state;
|
|
303
|
+
return list.reduce(function (acc, obj) {
|
|
304
|
+
var objects = acc.object ? [acc.object] : [];
|
|
305
|
+
var ids = acc.id ? [acc.id] : [];
|
|
306
|
+
if (obj.object) {
|
|
307
|
+
objects.push(obj.object);
|
|
308
|
+
}
|
|
309
|
+
if (obj.id) {
|
|
310
|
+
ids.push(obj.id);
|
|
311
|
+
}
|
|
312
|
+
return __assign(__assign(__assign({}, acc), obj), { individual_data_state: data_state, objects: objects, ids: ids });
|
|
313
|
+
}, {});
|
|
314
|
+
});
|
|
315
|
+
};
|
|
316
|
+
export var sortUserList = function (list) {
|
|
317
|
+
if (!(list === null || list === void 0 ? void 0 : list.length))
|
|
318
|
+
return [];
|
|
319
|
+
return list.sort(function (a, b) { return a.names.en.first.localeCompare(b.names.en.first); });
|
|
320
|
+
};
|
|
321
|
+
export var getIndividualType = function (objects) {
|
|
322
|
+
var isUser = false, isShareholder = false, isBoardMember = false, isBuyer = false, isCustomer = false;
|
|
323
|
+
objects === null || objects === void 0 ? void 0 : objects.forEach(function (type) {
|
|
324
|
+
if (type === IndividualType.USER)
|
|
325
|
+
isUser = true;
|
|
326
|
+
else if (type === IndividualType.SHARE_HOLDER)
|
|
327
|
+
isShareholder = true;
|
|
328
|
+
else if (type === IndividualType.BOARD_MEMBER)
|
|
329
|
+
isBoardMember = true;
|
|
330
|
+
else if (type === IndividualType.BUYER)
|
|
331
|
+
isBuyer = true;
|
|
332
|
+
else if (type === IndividualType.CUSTOMER)
|
|
333
|
+
isCustomer = true;
|
|
334
|
+
});
|
|
335
|
+
return { isUser: isUser, isShareholder: isShareholder, isBoardMember: isBoardMember, isBuyer: isBuyer, isCustomer: isCustomer };
|
|
336
|
+
};
|
|
337
|
+
export function retrieveIndividualData(type, boardData, serviceCallback) {
|
|
338
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
339
|
+
var _a, isShareholder, isBoardMember, isBuyer, isCustomer, data, individualRes, _b, data_state, is_authorized, boardRes, individuals;
|
|
340
|
+
return __generator(this, function (_c) {
|
|
341
|
+
switch (_c.label) {
|
|
342
|
+
case 0:
|
|
343
|
+
_a = getIndividualType([type]), isShareholder = _a.isShareholder, isBoardMember = _a.isBoardMember, isBuyer = _a.isBuyer, isCustomer = _a.isCustomer;
|
|
344
|
+
return [4, serviceCallback()];
|
|
345
|
+
case 1:
|
|
346
|
+
data = _c.sent();
|
|
347
|
+
individualRes = data === null || data === void 0 ? void 0 : data.user;
|
|
348
|
+
if (isShareholder)
|
|
349
|
+
individualRes = data === null || data === void 0 ? void 0 : data.shareholder;
|
|
350
|
+
else if (isBoardMember)
|
|
351
|
+
individualRes = data === null || data === void 0 ? void 0 : data.board_member;
|
|
352
|
+
else if (isBuyer)
|
|
353
|
+
individualRes = data === null || data === void 0 ? void 0 : data.buyer;
|
|
354
|
+
else if (isCustomer)
|
|
355
|
+
individualRes = data === null || data === void 0 ? void 0 : data.customer;
|
|
356
|
+
_b = individualRes || {}, data_state = _b.data_state, is_authorized = _b.is_authorized;
|
|
357
|
+
boardRes = boardData || {};
|
|
358
|
+
if (!is_authorized) {
|
|
359
|
+
individuals = (boardRes || {}).individuals;
|
|
360
|
+
boardRes = __assign(__assign(__assign({}, boardRes), (!is_authorized && { user: individualRes })), { individuals: __assign(__assign({}, individuals), (!!data_state && { data_state: data_state })) });
|
|
361
|
+
}
|
|
362
|
+
return [2, { boardRes: boardRes, individualRes: individualRes }];
|
|
363
|
+
}
|
|
364
|
+
});
|
|
365
|
+
});
|
|
366
|
+
}
|
package/build/utils/common.d.ts
CHANGED
package/build/utils/common.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { axiosInstance } from '../api';
|
|
2
|
+
import { ENDPOINT_PATHS } from '../constants';
|
|
1
3
|
export var sleep = function (milliseconds) {
|
|
2
4
|
if (milliseconds === void 0) { milliseconds = 1000; }
|
|
3
5
|
return new Promise(function (resolve) { return setTimeout(resolve, milliseconds); });
|
|
@@ -8,3 +10,11 @@ export var dangerousMessage = function (message, callBack) {
|
|
|
8
10
|
}
|
|
9
11
|
callBack === null || callBack === void 0 ? void 0 : callBack({ message: message });
|
|
10
12
|
};
|
|
13
|
+
export var setBaseUrl = function (publicKey) {
|
|
14
|
+
var isProd = publicKey.includes('pk_live');
|
|
15
|
+
if (isProd) {
|
|
16
|
+
axiosInstance.defaults.baseURL = ENDPOINT_PATHS.PRODUCTION_BASE_URL;
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
axiosInstance.defaults.baseURL = ENDPOINT_PATHS.SANDBOX_BASE_URL;
|
|
20
|
+
};
|
package/build/utils/date.d.ts
CHANGED
package/build/utils/date.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import moment from 'moment';
|
|
2
|
+
import { convertNumbers2English } from './string';
|
|
2
3
|
export var dateFormat = function (date, fmt) {
|
|
3
4
|
if (fmt === void 0) { fmt = 'YYYY-MM-DD'; }
|
|
4
5
|
return moment(date).format(fmt);
|
|
@@ -9,3 +10,8 @@ export var getFutureDate = function (years) {
|
|
|
9
10
|
maxDate.setFullYear(maxDate.getFullYear() + futureY);
|
|
10
11
|
return maxDate;
|
|
11
12
|
};
|
|
13
|
+
export var convertToEnglishDateFormat = function (d) {
|
|
14
|
+
var date = new Date(d);
|
|
15
|
+
var formattedDate = dateFormat(date, 'YYYY-MM-DD');
|
|
16
|
+
return convertNumbers2English(formattedDate);
|
|
17
|
+
};
|
package/build/utils/error.d.ts
CHANGED
package/build/utils/error.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export var isNetworkError = function (error) {
|
|
2
2
|
return ['network error', 'network request failed'].includes((error || '').trim().toLowerCase());
|
|
3
3
|
};
|
|
4
|
+
export var isTokenExpired = function (error) {
|
|
5
|
+
return ['token expired'].includes((error || '').trim().toLowerCase());
|
|
6
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CountryTrackingData, DataLayer, LeadIdentificationData, PageTrackingData, EventPageTrackingData } from '../@types';
|
|
2
|
+
export declare const pushToDataLayer: (data: DataLayer | CountryTrackingData | LeadIdentificationData | EventPageTrackingData) => void;
|
|
3
|
+
export declare const initializeGTM: () => void;
|
|
4
|
+
export declare const sendCustomEventToGTM: (data: DataLayer) => void;
|
|
5
|
+
export declare const sendCustomDimension: (data: CountryTrackingData | LeadIdentificationData | EventPageTrackingData) => void;
|
|
6
|
+
export declare const sendPageView: (data: PageTrackingData) => void;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import TagManager from 'react-gtm-module';
|
|
13
|
+
export var pushToDataLayer = function (data) {
|
|
14
|
+
if (window.dataLayer) {
|
|
15
|
+
window.dataLayer.push(data);
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export var initializeGTM = function () {
|
|
19
|
+
TagManager.initialize({ gtmId: 'GTM-5RR5CKD' });
|
|
20
|
+
};
|
|
21
|
+
export var sendCustomEventToGTM = function (data) {
|
|
22
|
+
pushToDataLayer(__assign({ event_value: 0, event_noninteraction: 0, event_label: '' }, data));
|
|
23
|
+
};
|
|
24
|
+
export var sendCustomDimension = function (data) {
|
|
25
|
+
pushToDataLayer(data);
|
|
26
|
+
};
|
|
27
|
+
export var sendPageView = function (data) {
|
|
28
|
+
sendCustomDimension(__assign({ event: 'PageView' }, data));
|
|
29
|
+
};
|
package/build/utils/index.d.ts
CHANGED
package/build/utils/index.js
CHANGED
package/build/utils/object.d.ts
CHANGED
|
@@ -3,3 +3,7 @@ export declare const encodeObjectBase64: (obj: any) => string;
|
|
|
3
3
|
export declare const decodeObjectBase64: (str: string) => any;
|
|
4
4
|
export declare const hasKey: (obj: any, key: string) => boolean;
|
|
5
5
|
export declare const concatenateObjectValues: (data: Record<string, any>, keys: Array<string>) => string;
|
|
6
|
+
export declare const hasKeyValue: (obj: any, path: string, value: string | number | boolean) => boolean;
|
|
7
|
+
export declare const hasNoneEditableValue: (obj: any, path: string) => boolean;
|
|
8
|
+
export declare const hasEditableValue: (obj: any, path: string) => boolean;
|
|
9
|
+
export declare const hasVerifiedValue: (obj: any, path: string) => boolean;
|
package/build/utils/object.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { get } from 'lodash-es';
|
|
2
|
+
import { FieldType, VerificationStatus } from '../@types';
|
|
1
3
|
export var compareTwoObjects = function (obj1, obj2) {
|
|
2
4
|
if (obj1 === obj2)
|
|
3
5
|
return true;
|
|
@@ -33,3 +35,18 @@ export var concatenateObjectValues = function (data, keys) {
|
|
|
33
35
|
}
|
|
34
36
|
return result.trim();
|
|
35
37
|
};
|
|
38
|
+
export var hasKeyValue = function (obj, path, value) {
|
|
39
|
+
return get(obj, path) === value;
|
|
40
|
+
};
|
|
41
|
+
export var hasNoneEditableValue = function (obj, path) {
|
|
42
|
+
var value = FieldType.NON_EDITABLE;
|
|
43
|
+
return hasKeyValue(obj, path, value);
|
|
44
|
+
};
|
|
45
|
+
export var hasEditableValue = function (obj, path) {
|
|
46
|
+
var value = FieldType.EDITABLE;
|
|
47
|
+
return hasKeyValue(obj, path, value);
|
|
48
|
+
};
|
|
49
|
+
export var hasVerifiedValue = function (obj, path) {
|
|
50
|
+
var value = VerificationStatus.VERIFIED;
|
|
51
|
+
return hasKeyValue(obj, path, value);
|
|
52
|
+
};
|
package/build/utils/string.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DeviceInfo, User } from '../@types';
|
|
1
|
+
import { DeviceInfo, License, User } from '../@types';
|
|
2
2
|
export declare const maskPhone: (str?: string) => string;
|
|
3
3
|
export declare const shortenString: (str: string, length: number) => string;
|
|
4
4
|
export declare const maskID: (str: string) => string;
|
|
@@ -42,7 +42,7 @@ export declare const getRequestHeaders: (deviceInfo: DeviceInfo) => {
|
|
|
42
42
|
};
|
|
43
43
|
export declare const removeRequestHeaders: () => void;
|
|
44
44
|
export declare const getBaseUrl: () => string;
|
|
45
|
-
export declare const getScreenNameBasedOnFlow: (flow: string, isAuthorizedUser?: boolean) => "CONNECT_NID_STEP" | "" | "BUSINESS_BUSINESS_TYPE_STEP" | "INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP" | "INDIVIDUAL_LIST_STEP" | "BANK_BANK_DETAILS_STEP" | "TAX_TAX_DETAILS_STEP";
|
|
45
|
+
export declare const getScreenNameBasedOnFlow: (flow: string, isAuthorizedUser?: boolean) => "CONNECT_NID_STEP" | "" | "BUSINESS_BUSINESS_TYPE_STEP" | "INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP" | "INDIVIDUAL_LIST_STEP" | "BANK_BANK_DETAILS_STEP" | "TAX_TAX_DETAILS_STEP" | "ENTITY_NAME_STEP" | "BRAND_INFO_STEP";
|
|
46
46
|
export declare const getEighteenYearsAgo: () => string;
|
|
47
47
|
export declare const isKW: (flag: string) => boolean;
|
|
48
48
|
export declare const isSA: (flag: string) => boolean;
|
|
@@ -69,3 +69,6 @@ export declare const getUserNameObject: (name: string) => {
|
|
|
69
69
|
last: string;
|
|
70
70
|
};
|
|
71
71
|
export declare const getFileType: (type: string) => "" | "image/jpeg" | "image/png" | "image/jpg" | "application/pdf";
|
|
72
|
+
export declare const isStringHasOneAsterisk: (value: string) => boolean;
|
|
73
|
+
export declare const isOtherLicense: (item?: License) => boolean;
|
|
74
|
+
export declare const formatNumberAsCurrency: (number: string) => string;
|
package/build/utils/string.js
CHANGED
|
@@ -29,13 +29,13 @@ export var maskEmail = function (str) {
|
|
|
29
29
|
return '';
|
|
30
30
|
};
|
|
31
31
|
export var shortenBrand = function (str) {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return
|
|
32
|
+
var trimmedStr = str === null || str === void 0 ? void 0 : str.trim();
|
|
33
|
+
if (!trimmedStr)
|
|
34
|
+
return '';
|
|
35
|
+
var name = trimmedStr.split(' ');
|
|
36
|
+
if (name.length > 1)
|
|
37
|
+
return name[0][0].toUpperCase() + name[name.length - 1][0].toUpperCase();
|
|
38
|
+
return name[0][0].toUpperCase();
|
|
39
39
|
};
|
|
40
40
|
export var showLastFour = function (str) {
|
|
41
41
|
if (str && str.length >= 4) {
|
|
@@ -188,6 +188,12 @@ export var getScreenNameBasedOnFlow = function (flow, isAuthorizedUser) {
|
|
|
188
188
|
if (flow === FlowsTypes.TAX) {
|
|
189
189
|
return 'TAX_TAX_DETAILS_STEP';
|
|
190
190
|
}
|
|
191
|
+
if (flow === FlowsTypes.BRAND) {
|
|
192
|
+
return 'BRAND_INFO_STEP';
|
|
193
|
+
}
|
|
194
|
+
if (flow === FlowsTypes.ENTITY) {
|
|
195
|
+
return 'ENTITY_NAME_STEP';
|
|
196
|
+
}
|
|
191
197
|
return '';
|
|
192
198
|
};
|
|
193
199
|
export var getEighteenYearsAgo = function () {
|
|
@@ -292,3 +298,18 @@ export var getFileType = function (type) {
|
|
|
292
298
|
return '';
|
|
293
299
|
}
|
|
294
300
|
};
|
|
301
|
+
export var isStringHasOneAsterisk = function (value) {
|
|
302
|
+
if (!value)
|
|
303
|
+
return false;
|
|
304
|
+
return value.includes('*') ? true : false;
|
|
305
|
+
};
|
|
306
|
+
export var isOtherLicense = function (item) {
|
|
307
|
+
var _a;
|
|
308
|
+
var number = (_a = item === null || item === void 0 ? void 0 : item.license) === null || _a === void 0 ? void 0 : _a.number;
|
|
309
|
+
return number === 'other_fl' || number === 'other_cr' || number === 'other_entity';
|
|
310
|
+
};
|
|
311
|
+
export var formatNumberAsCurrency = function (number) {
|
|
312
|
+
if (!number)
|
|
313
|
+
return '';
|
|
314
|
+
return parseInt(number).toLocaleString();
|
|
315
|
+
};
|