@tap-payments/os-micro-frontend-shared 0.1.441 → 0.1.442
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/components/AccordionAdapter/AccordionAdapter.js +23 -0
- package/build/components/AccordionAdapter/index.js +2 -1
- package/build/components/AccordionAdapter/style.js +38 -0
- package/build/components/AccountDropdown/Dropdown.js +17 -0
- package/build/components/AccountDropdown/index.js +2 -1
- package/build/components/AccountDropdown/style.js +26 -0
- package/build/components/ActionMenu/ActionMenu.js +101 -0
- package/build/components/ActionMenu/ActionMenuDropDown.js +24 -0
- package/build/components/ActionMenu/ActionMenuItem.js +20 -0
- package/build/components/ActionMenu/index.js +4 -0
- package/build/components/ActionMenu/style.js +179 -0
- package/build/components/ActionMenu/type.js +1 -0
- package/build/components/ActivityAreaChart/ActivityAreaChart.js +43 -0
- package/build/components/ActivityAreaChart/components/ChartTooltip.js +24 -0
- package/build/components/ActivityAreaChart/components/LoadingChart.js +18 -0
- package/build/components/ActivityAreaChart/components/index.js +2 -0
- package/build/components/ActivityAreaChart/index.js +4 -1
- package/build/components/ActivityAreaChart/styles.js +46 -0
- package/build/components/ActivityAreaChart/types.js +1 -0
- package/build/components/ActivityAreaChart/utils.js +27 -0
- package/build/components/Amount/TotalAmount/Loading.js +9 -0
- package/build/components/Amount/TotalAmount/TotalAmount.js +62 -0
- package/build/components/Amount/TotalAmount/index.js +1 -0
- package/build/components/Amount/TotalAmount/style.js +26 -0
- package/build/components/Amount/index.js +1 -1
- package/build/components/AmountConversionFilter/AmountConversionFilter.js +18 -0
- package/build/components/AmountConversionFilter/MultiSelectCurrencyFilter.js +39 -0
- package/build/components/AmountConversionFilter/index.js +1 -1
- package/build/components/AmountConversionFilter/style.js +47 -0
- package/build/components/AmountInput/AmountInput.js +44 -0
- package/build/components/AmountInput/index.js +2 -1
- package/build/components/AmountInput/style.js +30 -0
- package/build/components/AmountStatusChip/AmountStatusChip.js +20 -0
- package/build/components/AmountStatusChip/index.js +2 -1
- package/build/components/AmountStatusChip/style.js +13 -0
- package/build/components/AnimatedSpinnerIcon/AnimatedSpinnerIcon.js +7 -0
- package/build/components/AnimatedSpinnerIcon/index.js +2 -1
- package/build/components/AnimatedSpinnerIcon/style.js +8 -0
- package/build/components/AppServices/AppServices.js +82 -0
- package/build/components/AppServices/ServiceItem.js +36 -0
- package/build/components/AppServices/index.js +2 -1
- package/build/components/AppServices/style.js +33 -0
- package/build/components/AppServicesActionMenu/AppServicesActionMenu.js +44 -0
- package/build/components/AppServicesActionMenu/ServicesSubmenu.js +12 -0
- package/build/components/AppServicesActionMenu/index.js +3 -1
- package/build/components/AppServicesActionMenu/style.js +45 -0
- package/build/components/AppServicesActionMenu/types.js +1 -0
- package/build/components/AppServicesBar/AppServicesBar.js +18 -0
- package/build/components/AppServicesBar/index.js +3 -1
- package/build/components/AppServicesBar/style.js +6 -0
- package/build/components/AppWindowWrapper/AppWindow/AppWindow.js +82 -0
- package/build/components/AppWindowWrapper/AppWindow/constant.js +6 -0
- package/build/components/AppWindowWrapper/AppWindow/index.js +4 -0
- package/build/components/AppWindowWrapper/AppWindow/style.js +77 -0
- package/build/components/AppWindowWrapper/AppWindow/type.js +1 -0
- package/build/components/AppWindowWrapper/AppWindowWrapper.js +22 -0
- package/build/components/AppWindowWrapper/context/Provider.js +71 -0
- package/build/components/AppWindowWrapper/context/context.js +30 -0
- package/build/components/AppWindowWrapper/context/index.js +2 -0
- package/build/components/AppWindowWrapper/context/type.js +1 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/AccountHeader.js +31 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/components/AccountHeaderTitle/AccountHeaderTitle.js +10 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/components/AccountHeaderTitle/index.js +2 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/components/AccountHeaderTitle/type.js +1 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/index.js +3 -0
- package/build/components/AppWindowWrapper/headers/AccountHeader/type.js +1 -0
- package/build/components/AppWindowWrapper/headers/AppWindowHeader/AppWindowHeader.js +23 -0
- package/build/components/AppWindowWrapper/headers/AppWindowHeader/AppWindowHeaderBase.js +20 -0
- package/build/components/AppWindowWrapper/headers/AppWindowHeader/index.js +4 -0
- package/build/components/AppWindowWrapper/headers/AppWindowHeader/type.js +1 -0
- package/build/components/AppWindowWrapper/index.js +7 -1
- package/build/components/AppWindowWrapper/type.js +1 -0
- package/build/components/AuthenticationTypeChip/AuthenticationTypeChip.js +21 -0
- package/build/components/AuthenticationTypeChip/constants.js +13 -0
- package/build/components/AuthenticationTypeChip/index.js +2 -1
- package/build/components/Autocomplete/Autocomplete.js +33 -0
- package/build/components/Autocomplete/index.js +1 -1
- package/build/components/Autocomplete/style.js +47 -0
- package/build/components/BackgroundAnimation/BackgroundAnimation.js +52 -0
- package/build/components/BackgroundAnimation/Blob/Blob.js +34 -0
- package/build/components/BackgroundAnimation/Blob/index.js +2 -0
- package/build/components/BackgroundAnimation/Blob/type.js +1 -0
- package/build/components/BackgroundAnimation/index.js +3 -1
- package/build/components/BetaBanner/BetaBanner.js +5 -0
- package/build/components/BetaBanner/index.js +2 -1
- package/build/components/BetaBanner/style.js +18 -0
- package/build/components/BrandLogo/BrandLogo.js +35 -0
- package/build/components/BrandLogo/Loading.js +3 -0
- package/build/components/BrandLogo/index.js +1 -1
- package/build/components/Button/Button.js +19 -0
- package/build/components/Button/PlusButton/PlusButton.js +21 -0
- package/build/components/Button/PlusButton/index.js +2 -0
- package/build/components/Button/StyledButton/StyledButton.js +20 -0
- package/build/components/Button/StyledButton/index.js +2 -0
- package/build/components/Button/StyledButton/style.js +13 -0
- package/build/components/Button/index.js +4 -1
- package/build/components/Button/style.js +23 -0
- package/build/components/Calender/Calender.js +71 -0
- package/build/components/Calender/index.js +2 -1
- package/build/components/Calender/style.js +171 -0
- package/build/components/CardEmptyState/CardEmptyState.js +20 -0
- package/build/components/CardEmptyState/index.js +2 -1
- package/build/components/CardEmptyState/style.js +35 -0
- package/build/components/CardEmptyState/type.js +1 -0
- package/build/components/CardHeadline/CardHeadline.js +15 -0
- package/build/components/CardHeadline/index.js +2 -1
- package/build/components/Checkbox/Checkbox.js +14 -0
- package/build/components/Checkbox/index.js +2 -1
- package/build/components/Chip/Chip.js +20 -0
- package/build/components/Chip/GroupIconChip.js +17 -0
- package/build/components/Chip/GroupIconChips.js +36 -0
- package/build/components/Chip/index.js +4 -1
- package/build/components/Chip/style.js +76 -0
- package/build/components/Chip/type.js +1 -0
- package/build/components/CircularProgressWithLabel/CircularProgressWithLabel.js +7 -0
- package/build/components/CircularProgressWithLabel/index.js +2 -1
- package/build/components/CircularProgressWithLabel/style.js +31 -0
- package/build/components/Collapse/Collapse.js +17 -0
- package/build/components/Collapse/index.js +2 -1
- package/build/components/ColorPicker/ColorPicker.js +35 -0
- package/build/components/ColorPicker/ColorPickerPanel.js +56 -0
- package/build/components/ColorPicker/ColorSchemeSelect.js +35 -0
- package/build/components/ColorPicker/HexaFields.js +83 -0
- package/build/components/ColorPicker/RGBAFields.js +37 -0
- package/build/components/ColorPicker/index.js +2 -1
- package/build/components/ColorPicker/style.js +157 -0
- package/build/components/ConfirmDialog/ConfirmDialog.js +8 -0
- package/build/components/ConfirmDialog/context/Provider.js +18 -0
- package/build/components/ConfirmDialog/context/context.js +14 -0
- package/build/components/ConfirmDialog/context/index.js +2 -0
- package/build/components/ConfirmDialog/hooks/index.js +1 -0
- package/build/components/ConfirmDialog/hooks/useDialog.js +22 -0
- package/build/components/ConfirmDialog/index.js +4 -1
- package/build/components/ConfirmDialog/styles.js +42 -0
- package/build/components/ConfirmDialog/type.js +1 -0
- package/build/components/ControlPanelContainer/ControlPanelContainer.js +5 -0
- package/build/components/ControlPanelContainer/index.js +2 -1
- package/build/components/ControlPanelContainer/style.js +9 -0
- package/build/components/CopyImage/CopyImage.js +11 -0
- package/build/components/CopyImage/index.js +2 -1
- package/build/components/CountBadge/CountBadge.js +51 -0
- package/build/components/CountBadge/CountBadgeAnimated.js +15 -0
- package/build/components/CountBadge/index.js +5 -1
- package/build/components/CountBadge/style.js +29 -0
- package/build/components/CountBadge/type.js +16 -0
- package/build/components/CountryFilter/CountryFilter.js +71 -0
- package/build/components/CountryFilter/index.js +1 -1
- package/build/components/CountryFilter/style.js +7 -0
- package/build/components/CountryFlag/CountryFlag.js +23 -0
- package/build/components/CountryFlag/index.js +2 -1
- package/build/components/CurrencyFilter/CurrencyFilter.js +27 -0
- package/build/components/CurrencyFilter/index.js +1 -1
- package/build/components/CurrencySymbol/CurrencySymbol.js +17 -0
- package/build/components/CurrencySymbol/index.js +2 -1
- package/build/components/CurrencySymbol/style.js +27 -0
- package/build/components/CustomBackdrop/CustomBackdrop.js +8 -0
- package/build/components/CustomBackdrop/index.js +2 -1
- package/build/components/CustomBackdrop/style.js +9 -0
- package/build/components/Customer/CustomerDropdown/CustomerDropdown.js +39 -0
- package/build/components/Customer/CustomerDropdown/index.js +1 -0
- package/build/components/Customer/CustomerDropdown/style.js +30 -0
- package/build/components/Customer/CustomerForms/CustomerEmailForm.js +76 -0
- package/build/components/Customer/CustomerForms/CustomerFullInfo.js +72 -0
- package/build/components/Customer/CustomerForms/CustomerFullInfoForm.js +74 -0
- package/build/components/Customer/CustomerForms/CustomerPhoneNumberForm.js +71 -0
- package/build/components/Customer/CustomerForms/index.js +9 -0
- package/build/components/Customer/CustomerForms/style.js +71 -0
- package/build/components/Customer/CustomerForms/validation.js +42 -0
- package/build/components/Customer/index.js +2 -1
- package/build/components/DateButton/DateButton.js +9 -0
- package/build/components/DateButton/index.js +2 -1
- package/build/components/DateFilter/DateFilter.js +32 -0
- package/build/components/DateFilter/index.js +1 -1
- package/build/components/DateFilter/style.js +100 -0
- package/build/components/DeviceIcon/DeviceIcon.js +29 -0
- package/build/components/DeviceIcon/constants.js +6 -0
- package/build/components/DeviceIcon/index.js +4 -1
- package/build/components/DeviceIcon/style.js +18 -0
- package/build/components/DeviceIcon/utils.js +4 -0
- package/build/components/Dialog/Dialog.js +9 -0
- package/build/components/Dialog/components/DialogToolbar.js +31 -0
- package/build/components/Dialog/components/index.js +2 -0
- package/build/components/Dialog/constant.js +1 -0
- package/build/components/Dialog/index.js +4 -1
- package/build/components/Dialog/style.js +50 -0
- package/build/components/Discount/DiscountDropdown/DiscountDropdown.js +67 -0
- package/build/components/Discount/DiscountDropdown/index.js +2 -0
- package/build/components/Discount/DiscountDropdown/style.js +40 -0
- package/build/components/Discount/DiscountRateDropdown/DiscountRateDropdown.js +53 -0
- package/build/components/Discount/DiscountRateDropdown/index.js +2 -0
- package/build/components/Discount/DiscountRateDropdown/style.js +33 -0
- package/build/components/Discount/TotalDiscount/TotalDiscount.js +30 -0
- package/build/components/Discount/TotalDiscount/index.js +1 -0
- package/build/components/Discount/TotalDiscount/style.js +5 -0
- package/build/components/Discount/index.js +4 -1
- package/build/components/Discount/utils.js +12 -0
- package/build/components/DisplayAmount/DisplayAmount.js +21 -0
- package/build/components/DisplayAmount/index.js +2 -1
- package/build/components/DisplayAmount/style.js +14 -0
- package/build/components/DockButton/DockButton.js +27 -0
- package/build/components/DockButton/index.js +2 -1
- package/build/components/DockButton/style.js +25 -0
- package/build/components/DockButton/type.js +1 -0
- package/build/components/Dropdown2/Dropdown2.js +29 -0
- package/build/components/Dropdown2/index.js +2 -1
- package/build/components/Dropdown2/style.js +24 -0
- package/build/components/DropdownButton/ChevronIcon.js +16 -0
- package/build/components/DropdownButton/DropdownButton.js +50 -0
- package/build/components/DropdownButton/constants.js +5 -0
- package/build/components/DropdownButton/index.js +3 -1
- package/build/components/DropdownButton/style.js +70 -0
- package/build/components/DropdownButton/type.js +1 -0
- package/build/components/DropdownMenu/DropdownMenu.js +43 -0
- package/build/components/DropdownMenu/index.js +3 -0
- package/build/components/DropdownMenu/styles.js +158 -0
- package/build/components/DropdownMenu/type.js +1 -0
- package/build/components/Error/Error.js +20 -0
- package/build/components/Error/index.js +2 -1
- package/build/components/Error/style.js +13 -0
- package/build/components/ErrorBoundary/AppError.js +16 -0
- package/build/components/ErrorBoundary/ErrorBoundary.js +25 -0
- package/build/components/ErrorBoundary/index.js +2 -1
- package/build/components/ErrorBoundary/style.js +19 -0
- package/build/components/ErrorToast/ErrorToast.js +7 -0
- package/build/components/ErrorToast/index.js +2 -1
- package/build/components/ErrorToast/style.js +33 -0
- package/build/components/ErrorToast/type.js +1 -0
- package/build/components/ExpandableSideBar/ExpandableSideBar.js +35 -0
- package/build/components/ExpandableSideBar/constant.js +1 -0
- package/build/components/ExpandableSideBar/index.js +2 -1
- package/build/components/ExpandableSideBar/style.js +47 -0
- package/build/components/ExpandableSideBar/type.js +1 -0
- package/build/components/FileInputPreview/FileInputPreview.js +51 -0
- package/build/components/FileInputPreview/index.js +1 -1
- package/build/components/FileInputPreview/style.js +20 -0
- package/build/components/FileInputPreview/type.js +1 -0
- package/build/components/FileInputPreview/utils.js +14 -0
- package/build/components/FilePreview/FilePreview.js +18 -0
- package/build/components/FilePreview/index.js +3 -1
- package/build/components/FilePreview/style.js +55 -0
- package/build/components/FilePreview/type.js +1 -0
- package/build/components/FileUpload/FileUpload.js +41 -0
- package/build/components/FileUpload/index.js +2 -1
- package/build/components/FileUpload/style.js +106 -0
- package/build/components/FileUploader/FileUploader.js +13 -0
- package/build/components/FileUploader/index.js +2 -1
- package/build/components/FileUploader/style.js +55 -0
- package/build/components/FileUploader/type.js +1 -0
- package/build/components/FilterDropdown/FilterDropdown.js +58 -0
- package/build/components/FilterDropdown/components/BrandItem/BrandItem.js +39 -0
- package/build/components/FilterDropdown/components/BrandItem/index.js +2 -0
- package/build/components/FilterDropdown/components/BrandItem/style.js +9 -0
- package/build/components/FilterDropdown/components/CountriesItem/CountriesItem.js +54 -0
- package/build/components/FilterDropdown/components/CountriesItem/index.js +1 -0
- package/build/components/FilterDropdown/components/CurrenciesItem/CurrenciesItem.js +59 -0
- package/build/components/FilterDropdown/components/CurrenciesItem/index.js +1 -0
- package/build/components/FilterDropdown/components/FlatMerchantsListMenu/FlatMerchantsListMenu.js +39 -0
- package/build/components/FilterDropdown/components/FlatMerchantsListMenu/index.js +2 -0
- package/build/components/FilterDropdown/components/FlatMerchantsListMenu/style.js +23 -0
- package/build/components/FilterDropdown/components/MerchantItem/MerchantItem.js +60 -0
- package/build/components/FilterDropdown/components/MerchantItem/index.js +2 -0
- package/build/components/FilterDropdown/components/MerchantsFilterItem/MerchantsFilterItem.js +45 -0
- package/build/components/FilterDropdown/components/MerchantsFilterItem/index.js +4 -0
- package/build/components/FilterDropdown/components/MerchantsFilterItem/type.js +7 -0
- package/build/components/FilterDropdown/components/MerchantsFilterItem/utils.js +55 -0
- package/build/components/FilterDropdown/components/RetailersItem/RetailersItem.js +68 -0
- package/build/components/FilterDropdown/components/RetailersItem/index.js +1 -0
- package/build/components/FilterDropdown/components/RetailersItem/style.js +8 -0
- package/build/components/FilterDropdown/components/index.js +6 -0
- package/build/components/FilterDropdown/index.js +3 -1
- package/build/components/FilterDropdown/style.js +73 -0
- package/build/components/FilterDropdown/type.js +1 -0
- package/build/components/FilteredIds/FilteredIds.js +16 -0
- package/build/components/FilteredIds/index.js +2 -1
- package/build/components/FilteredIds/style.js +33 -0
- package/build/components/FilteredIds/type.js +1 -0
- package/build/components/Filters/index.js +1 -1
- package/build/components/Filters/style.js +51 -0
- package/build/components/FlagDetails/FlagDetails.js +31 -0
- package/build/components/FlagDetails/index.js +2 -1
- package/build/components/FlippingCard/FlippingCard.js +7 -0
- package/build/components/FlippingCard/index.js +2 -1
- package/build/components/FlippingCard/style.js +26 -0
- package/build/components/HeatMap/HeatMap.js +20 -0
- package/build/components/HeatMap/constant.js +1 -0
- package/build/components/HeatMap/index.js +3 -1
- package/build/components/HeatMap/style.js +34 -0
- package/build/components/HeatMap/type.js +1 -0
- package/build/components/HeatMap/utils.js +9 -0
- package/build/components/IOSSwitch/IOSSwitch.js +7 -0
- package/build/components/IOSSwitch/index.js +2 -1
- package/build/components/IOSSwitch/styles.js +49 -0
- package/build/components/Icon/Icon.js +12 -0
- package/build/components/Icon/index.js +2 -1
- package/build/components/Icon/type.js +1 -0
- package/build/components/IconGallery/IconGallery.js +13 -0
- package/build/components/IconGallery/index.js +2 -1
- package/build/components/IconGallery/styles.js +21 -0
- package/build/components/IconGallery/type.js +1 -0
- package/build/components/IconWithBadge/IconWithBadge.js +21 -0
- package/build/components/IconWithBadge/index.js +2 -1
- package/build/components/IconWithBadge/style.js +11 -0
- package/build/components/IconWithBadge/type.js +1 -0
- package/build/components/IconWithHoverOverlays/IconWithHoverOverlays.js +19 -0
- package/build/components/IconWithHoverOverlays/index.js +2 -1
- package/build/components/IconWithHoverOverlays/style.js +45 -0
- package/build/components/IconWithLabel/IconWithLabel.js +7 -0
- package/build/components/IconWithLabel/index.js +2 -1
- package/build/components/IconWithLabel/style.js +21 -0
- package/build/components/IconsDropdown/IconsDropdown.js +31 -0
- package/build/components/IconsDropdown/index.js +2 -1
- package/build/components/IconsDropdown/style.js +47 -0
- package/build/components/ImageWrapper/ImageWrapper.js +16 -0
- package/build/components/ImageWrapper/index.js +2 -1
- package/build/components/Input/Input.js +22 -0
- package/build/components/Input/index.js +2 -1
- package/build/components/Input/style.js +18 -0
- package/build/components/InputBase/AmountInputBase/AmountInputBase.js +30 -0
- package/build/components/InputBase/AmountInputBase/CurrencyList/CurrencyList.js +50 -0
- package/build/components/InputBase/AmountInputBase/CurrencyList/index.js +2 -0
- package/build/components/InputBase/AmountInputBase/CurrencyList/style.js +42 -0
- package/build/components/InputBase/AmountInputBase/InputNumber/InputNumber.js +24 -0
- package/build/components/InputBase/AmountInputBase/InputNumber/index.js +3 -0
- package/build/components/InputBase/AmountInputBase/InputNumber/style.js +24 -0
- package/build/components/InputBase/AmountInputBase/InputNumber/type.js +1 -0
- package/build/components/InputBase/AmountInputBase/index.js +4 -0
- package/build/components/InputBase/AmountInputBase/style.js +26 -0
- package/build/components/InputBase/InputBase/InputBase.js +28 -0
- package/build/components/InputBase/InputBase/index.js +2 -0
- package/build/components/InputBase/InputBase/style.js +68 -0
- package/build/components/InputBase/PhoneInputBase/CountriesList/CountriesList.js +65 -0
- package/build/components/InputBase/PhoneInputBase/CountriesList/index.js +2 -0
- package/build/components/InputBase/PhoneInputBase/CountriesList/style.js +49 -0
- package/build/components/InputBase/PhoneInputBase/PhoneInputBase.js +27 -0
- package/build/components/InputBase/PhoneInputBase/index.js +3 -0
- package/build/components/InputBase/PhoneInputBase/style.js +23 -0
- package/build/components/InputBase/SelectBase/SelectBase.js +45 -0
- package/build/components/InputBase/SelectBase/SelectBaseMultiple.js +64 -0
- package/build/components/InputBase/SelectBase/index.js +3 -0
- package/build/components/InputBase/SelectBase/style.js +109 -0
- package/build/components/InputBase/index.js +4 -1
- package/build/components/InputNumber/InputNumber.js +40 -0
- package/build/components/InputNumber/index.js +2 -1
- package/build/components/InputNumber/style.js +20 -0
- package/build/components/Inputs/CountriesDropDown/CountriesDropdown.js +59 -0
- package/build/components/Inputs/CountriesDropDown/index.js +3 -0
- package/build/components/Inputs/CountriesDropDown/style.js +68 -0
- package/build/components/Inputs/FileInput/FileInput.js +13 -0
- package/build/components/Inputs/FileInput/index.js +2 -0
- package/build/components/Inputs/FileInput/style.js +41 -0
- package/build/components/Inputs/FileInput/type.js +1 -0
- package/build/components/Inputs/Input/Input.js +23 -0
- package/build/components/Inputs/Input/index.js +2 -0
- package/build/components/Inputs/Input/style.js +85 -0
- package/build/components/Inputs/Input/type.js +1 -0
- package/build/components/Inputs/SearchInput/SearchInput.js +24 -0
- package/build/components/Inputs/SearchInput/index.js +2 -0
- package/build/components/Inputs/SearchInput/styles.js +17 -0
- package/build/components/Inputs/Select/Select.js +67 -0
- package/build/components/Inputs/Select/index.js +2 -0
- package/build/components/Inputs/Select/style.js +24 -0
- package/build/components/Inputs/Select/type.js +1 -0
- package/build/components/Inputs/index.js +5 -1
- package/build/components/JSONViewer/JSONViewer.js +285 -0
- package/build/components/JSONViewer/JSONViewerList.js +10 -0
- package/build/components/JSONViewer/components/FooterButton/FooterButton.js +44 -0
- package/build/components/JSONViewer/components/FooterButton/index.js +2 -0
- package/build/components/JSONViewer/components/JSONTitleBar/JSONTitleBar.js +9 -0
- package/build/components/JSONViewer/components/JSONTitleBar/index.js +3 -0
- package/build/components/JSONViewer/components/JSONTitleBar/type.js +1 -0
- package/build/components/JSONViewer/components/index.js +2 -0
- package/build/components/JSONViewer/context/Provider.js +44 -0
- package/build/components/JSONViewer/context/context.js +7 -0
- package/build/components/JSONViewer/context/index.js +2 -0
- package/build/components/JSONViewer/hooks/index.js +1 -0
- package/build/components/JSONViewer/hooks/useJsonViewerContext.js +18 -0
- package/build/components/JSONViewer/index.js +7 -1
- package/build/components/JSONViewer/style.js +176 -0
- package/build/components/JSONViewer/type.js +1 -0
- package/build/components/LabeledIconDropdown/LabeledIconDropdown.js +51 -0
- package/build/components/LabeledIconDropdown/index.js +2 -1
- package/build/components/LabeledIconDropdown/style.js +104 -0
- package/build/components/LanguageDropdown/LanguageDropdown.js +24 -0
- package/build/components/LanguageDropdown/index.js +2 -1
- package/build/components/LanguageDropdown/style.js +5 -0
- package/build/components/LazyImage/LazyImage.js +39 -0
- package/build/components/LazyImage/index.js +3 -1
- package/build/components/LeftPeekRightExpandingChip/LeftPeekRightExpandingChip.js +30 -0
- package/build/components/LeftPeekRightExpandingChip/index.js +2 -1
- package/build/components/LeftPeekRightExpandingChip/style.js +65 -0
- package/build/components/LeftPeekRightExpandingChip/type.js +1 -0
- package/build/components/LeftPeekRightExpandingChip/useLeftPeekRightExpandingChip.js +134 -0
- package/build/components/ListColumnFilter/ListColumnFilter.js +36 -0
- package/build/components/ListColumnFilter/index.js +1 -1
- package/build/components/ListColumnFilter/style.js +35 -0
- package/build/components/ListLayout/ListLayout.js +20 -0
- package/build/components/ListLayout/index.js +2 -1
- package/build/components/ListLayout/styles.js +9 -0
- package/build/components/Loader/Loader.js +7 -0
- package/build/components/Loader/index.js +2 -1
- package/build/components/Loader/style.js +15 -0
- package/build/components/Loaders/TapLoader.js +29 -0
- package/build/components/Loaders/index.js +2 -1
- package/build/components/MFWidgetLoader/DefaultMFWidgetLoader.js +12 -0
- package/build/components/MFWidgetLoader/MFWidgetLoader.js +10 -0
- package/build/components/MFWidgetLoader/ReportsMFWidgetLoader.js +8 -0
- package/build/components/MFWidgetLoader/index.js +2 -1
- package/build/components/MUIThemeProvider/MUIThemeProvider.js +9 -0
- package/build/components/MUIThemeProvider/index.js +2 -1
- package/build/components/MainContainer/MainContainer.js +8 -0
- package/build/components/MainContainer/index.js +2 -1
- package/build/components/MaskedText/MaskedText.js +9 -0
- package/build/components/MaskedText/index.js +2 -1
- package/build/components/MaskedText/type.js +1 -0
- package/build/components/Menu/Menu.js +29 -0
- package/build/components/Menu/index.js +2 -1
- package/build/components/Menu/style.js +23 -0
- package/build/components/MenuItem/MenuItem.js +21 -0
- package/build/components/MenuItem/index.js +2 -1
- package/build/components/MenuItem/style.js +30 -0
- package/build/components/MerchantCurrencyDropdown/MerchantCurrencyDropdown.js +38 -0
- package/build/components/MerchantCurrencyDropdown/SelectedCurrency.js +6 -0
- package/build/components/MerchantCurrencyDropdown/index.js +1 -1
- package/build/components/MerchantCurrencyDropdown/style.js +64 -0
- package/build/components/MerchantLogo/MerchantLogo.js +17 -0
- package/build/components/MerchantLogo/index.js +1 -1
- package/build/components/MerchantLogo/style.js +13 -0
- package/build/components/MerchantsDropdown/BrandItem.js +71 -0
- package/build/components/MerchantsDropdown/EntityItem.js +69 -0
- package/build/components/MerchantsDropdown/EntityList.js +7 -0
- package/build/components/MerchantsDropdown/MerchantItem.js +27 -0
- package/build/components/MerchantsDropdown/MerchantsDropdown.js +67 -0
- package/build/components/MerchantsDropdown/MerchantsList.js +18 -0
- package/build/components/MerchantsDropdown/hooks.js +54 -0
- package/build/components/MerchantsDropdown/index.js +1 -1
- package/build/components/MerchantsDropdown/style.js +155 -0
- package/build/components/MerchantsDropdown/type.js +1 -0
- package/build/components/MultiDatakeyDonut/MultiDatakeyDonut.js +19 -0
- package/build/components/MultiDatakeyDonut/index.js +1 -1
- package/build/components/MultiDatakeyDonut/style.js +23 -0
- package/build/components/MultiSelectDropdownButton/MultiSelectDropdownButton.js +32 -0
- package/build/components/MultiSelectDropdownButton/components/StatusButton.js +34 -0
- package/build/components/MultiSelectDropdownButton/index.js +3 -1
- package/build/components/MultiSelectDropdownButton/style.js +8 -0
- package/build/components/MultiSelectDropdownButton/type.js +1 -0
- package/build/components/MultiSelectStatusButton/MultiSelectStatusButton.js +93 -0
- package/build/components/MultiSelectStatusButton/index.js +2 -1
- package/build/components/MultiSelectStatusButton/style.js +77 -0
- package/build/components/MultiSelectStatusButton/type.js +1 -0
- package/build/components/MultiSelectWithSearch/ChildMenuItem.js +45 -0
- package/build/components/MultiSelectWithSearch/MultiSelectWithSearch.js +52 -0
- package/build/components/MultiSelectWithSearch/ParentMenuItem.js +27 -0
- package/build/components/MultiSelectWithSearch/index.js +4 -1
- package/build/components/MultiSelectWithSearch/style.js +88 -0
- package/build/components/MultiSelectWithSearch/type.js +1 -0
- package/build/components/MultiSelectWithSearch/utils.js +12 -0
- package/build/components/NestedDropdown/Dropdown.js +60 -0
- package/build/components/NestedDropdown/NestedDropdown.js +49 -0
- package/build/components/NestedDropdown/NestedMenuItem.js +48 -0
- package/build/components/NestedDropdown/index.js +5 -1
- package/build/components/NestedDropdown/styles.js +100 -0
- package/build/components/NestedDropdown/types.js +1 -0
- package/build/components/NoInternet/NoInternet.js +6 -0
- package/build/components/NoInternet/index.js +2 -1
- package/build/components/NoInternet/style.js +32 -0
- package/build/components/OTPInput/OTPInput.js +36 -0
- package/build/components/OTPInput/index.js +2 -1
- package/build/components/OTPInput/style.js +28 -0
- package/build/components/OpenFileInNewTab/OpenFileInNewTab.js +26 -0
- package/build/components/OpenFileInNewTab/index.js +1 -1
- package/build/components/OpenFileInNewTab/style.js +8 -0
- package/build/components/PartnersFilter/PartnersFilter.js +50 -0
- package/build/components/PartnersFilter/index.js +1 -1
- package/build/components/PaymentSourceFilter/AuthenticationMode.js +59 -0
- package/build/components/PaymentSourceFilter/PaymentIcon.js +9 -0
- package/build/components/PaymentSourceFilter/PaymentInitiated.js +29 -0
- package/build/components/PaymentSourceFilter/PaymentMethod.js +55 -0
- package/build/components/PaymentSourceFilter/PaymentMethods.js +50 -0
- package/build/components/PaymentSourceFilter/PaymentSchemes.js +54 -0
- package/build/components/PaymentSourceFilter/PaymentSourceFilter.js +16 -0
- package/build/components/PaymentSourceFilter/index.js +6 -1
- package/build/components/PaymentSourceFilter/style.js +22 -0
- package/build/components/PaymentSourceFilter/type.js +1 -0
- package/build/components/PhoneFilter/PhoneFilter.js +13 -0
- package/build/components/PhoneFilter/index.js +1 -1
- package/build/components/ProgressBar/ProgressBar.js +6 -0
- package/build/components/ProgressBar/index.js +2 -1
- package/build/components/ProgressBar/style.js +19 -0
- package/build/components/ProgressRing/LoadingSkeleton.js +6 -0
- package/build/components/ProgressRing/ProgressRing.js +17 -0
- package/build/components/ProgressRing/index.js +2 -1
- package/build/components/ProgressRing/style.js +37 -0
- package/build/components/RFH/Forms/DefaultForm.js +7 -0
- package/build/components/RFH/Forms/index.js +1 -0
- package/build/components/RFH/Inputs/AmountInput/AmountInput.js +35 -0
- package/build/components/RFH/Inputs/AmountInput/index.js +3 -0
- package/build/components/RFH/Inputs/AmountInput/type.js +1 -0
- package/build/components/RFH/Inputs/AmountInput/utils.js +3 -0
- package/build/components/RFH/Inputs/FormInput/FormInput.js +32 -0
- package/build/components/RFH/Inputs/FormInput/index.js +2 -0
- package/build/components/RFH/Inputs/FormSelect/FormSelect.js +25 -0
- package/build/components/RFH/Inputs/FormSelect/index.js +2 -0
- package/build/components/RFH/Inputs/FormSelect/type.js +1 -0
- package/build/components/RFH/Inputs/MultiSelect/MultiSelect.js +66 -0
- package/build/components/RFH/Inputs/MultiSelect/index.js +2 -0
- package/build/components/RFH/Inputs/MultiSelect/style.js +56 -0
- package/build/components/RFH/Inputs/PhoneInput/PhoneInput.js +30 -0
- package/build/components/RFH/Inputs/PhoneInput/index.js +2 -0
- package/build/components/RFH/Inputs/SelectWithAccordion/SelectWithAccordion.js +62 -0
- package/build/components/RFH/Inputs/SelectWithAccordion/index.js +2 -0
- package/build/components/RFH/Inputs/SelectWithAccordion/style.js +70 -0
- package/build/components/RFH/Inputs/SelectWithAccordion/type.js +1 -0
- package/build/components/RFH/Inputs/Switch/Switch.js +22 -0
- package/build/components/RFH/Inputs/Switch/index.js +2 -0
- package/build/components/RFH/Inputs/index.js +7 -0
- package/build/components/RFH/hooks/index.js +1 -0
- package/build/components/RFH/hooks/useRFHForm.js +2 -0
- package/build/components/RFH/index.js +3 -1
- package/build/components/RadioButton/RadioButton.js +19 -0
- package/build/components/RadioButton/index.js +1 -1
- package/build/components/RadioButton/style.js +64 -0
- package/build/components/RadioButton/type.js +1 -0
- package/build/components/RadioGroup/RadioGroup.js +38 -0
- package/build/components/RadioGroup/index.js +1 -1
- package/build/components/RadioGroup/style.js +16 -0
- package/build/components/RadioGroup/type.js +1 -0
- package/build/components/RangeCalender/RangeCalender.js +99 -0
- package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.js +40 -0
- package/build/components/RangeCalender/components/CustomTimepicker/index.js +2 -0
- package/build/components/RangeCalender/components/CustomTimepicker/style.js +132 -0
- package/build/components/RangeCalender/components/GroupBy/GroupBy.js +33 -0
- package/build/components/RangeCalender/components/GroupBy/index.js +2 -0
- package/build/components/RangeCalender/components/GroupBy/style.js +39 -0
- package/build/components/RangeCalender/components/Hijri/Hijri.js +13 -0
- package/build/components/RangeCalender/components/Hijri/index.js +2 -0
- package/build/components/RangeCalender/components/Hijri/style.js +25 -0
- package/build/components/RangeCalender/components/QuickFilters/QuickFilters.js +47 -0
- package/build/components/RangeCalender/components/QuickFilters/index.js +2 -0
- package/build/components/RangeCalender/components/QuickFilters/style.js +27 -0
- package/build/components/RangeCalender/components/RangeDatepicker/RangeDatepicker.js +31 -0
- package/build/components/RangeCalender/components/RangeDatepicker/index.js +3 -0
- package/build/components/RangeCalender/components/RangeDatepicker/style.js +9 -0
- package/build/components/RangeCalender/components/RangeDatepicker/type.js +1 -0
- package/build/components/RangeCalender/components/Timezone/Timezone.js +32 -0
- package/build/components/RangeCalender/components/Timezone/components/EntitiesTimezone.js +38 -0
- package/build/components/RangeCalender/components/Timezone/components/UserTimezone.js +14 -0
- package/build/components/RangeCalender/components/Timezone/index.js +2 -0
- package/build/components/RangeCalender/components/Timezone/style.js +61 -0
- package/build/components/RangeCalender/index.js +2 -1
- package/build/components/RangeCalender/style.js +193 -0
- package/build/components/RangeCalender/type.js +1 -0
- package/build/components/RangeCalender/utils.js +26 -0
- package/build/components/ReceiptsViewer/ReceiptViewer.js +16 -0
- package/build/components/ReceiptsViewer/ReceiptsViewer.js +7 -0
- package/build/components/ReceiptsViewer/index.js +1 -1
- package/build/components/ReceiptsViewer/style.js +7 -0
- package/build/components/ReceiptsViewer/type.js +1 -0
- package/build/components/ReferenceTypeFilter/ReferenceTypeFilter.js +36 -0
- package/build/components/ReferenceTypeFilter/index.js +1 -1
- package/build/components/ReferenceTypeFilter/style.js +34 -0
- package/build/components/ResizableHeightInput/ResizableHeightInput.js +24 -0
- package/build/components/ResizableHeightInput/index.js +2 -1
- package/build/components/ResizableHeightInput/style.js +12 -0
- package/build/components/RightLeftExpandingCenterChip/RightLeftExpandingCenterChip.js +113 -0
- package/build/components/RightLeftExpandingCenterChip/index.js +2 -1
- package/build/components/RightLeftExpandingCenterChip/style.js +130 -0
- package/build/components/RightLeftExpandingCenterChip/type.js +1 -0
- package/build/components/RightLeftExpandingCenterChip/useRightLeftExpandingCenterChip.js +233 -0
- package/build/components/Routes/PrivateRoute.js +10 -0
- package/build/components/Routes/PublicRoute.js +6 -0
- package/build/components/Routes/index.js +3 -1
- package/build/components/SalesChannelFilter/SalesChannelFilter.js +56 -0
- package/build/components/SalesChannelFilter/index.js +1 -1
- package/build/components/SalesChannelFilter/style.js +29 -0
- package/build/components/Sandbox/Sandbox.js +10 -0
- package/build/components/Sandbox/index.js +2 -1
- package/build/components/Sandbox/style.js +58 -0
- package/build/components/ScrollLoader/ScrollLoader.js +69 -0
- package/build/components/ScrollLoader/index.js +3 -1
- package/build/components/SearchButton/SearchButton.js +57 -0
- package/build/components/SearchButton/index.js +2 -1
- package/build/components/SearchButton/styles.js +44 -0
- package/build/components/SearchListInput/SearchListInput.js +20 -0
- package/build/components/SearchListInput/index.js +2 -1
- package/build/components/SearchListInput/style.js +15 -0
- package/build/components/SelectDropdown/SelectDropdown.js +18 -0
- package/build/components/SelectDropdown/index.js +2 -1
- package/build/components/SelectDropdown/style.js +18 -0
- package/build/components/SelectWithSearch/SelectWithSearch.js +61 -0
- package/build/components/SelectWithSearch/index.js +3 -1
- package/build/components/SelectWithSearch/style.js +70 -0
- package/build/components/SelectWithSearch/type.js +1 -0
- package/build/components/SimpleDialog/SimpleDialog.js +9 -0
- package/build/components/SimpleDialog/index.js +2 -0
- package/build/components/SimpleDialog/style.js +13 -0
- package/build/components/SimpleDialog/type.js +1 -0
- package/build/components/Skeleton/Skeleton.js +19 -0
- package/build/components/Skeleton/index.js +2 -1
- package/build/components/SplashScreen/SplashScreen.js +17 -0
- package/build/components/SplashScreen/index.js +2 -1
- package/build/components/StatusBar/StatusBar.js +54 -0
- package/build/components/StatusBar/index.js +2 -1
- package/build/components/StatusBar/type.js +1 -0
- package/build/components/StatusButton/ChevronIcon.js +18 -0
- package/build/components/StatusButton/StatusButton.js +94 -0
- package/build/components/StatusButton/constant.js +30 -0
- package/build/components/StatusButton/index.js +3 -1
- package/build/components/StatusButton/style.js +92 -0
- package/build/components/StatusButton/type.js +1 -0
- package/build/components/StatusChip/StatusChip.js +58 -0
- package/build/components/StatusChip/index.js +2 -1
- package/build/components/StatusChip/style.js +37 -0
- package/build/components/StatusChip/type.js +1 -0
- package/build/components/StatusChipWithCopy/StatusChipWithCopy.js +23 -0
- package/build/components/StatusChipWithCopy/index.js +4 -1
- package/build/components/StatusChipWithCopy/utils.js +4 -0
- package/build/components/StatusFilter/StatusFilter.js +88 -0
- package/build/components/StatusFilter/index.js +1 -1
- package/build/components/StatusFilter/utils.js +10 -0
- package/build/components/StatusGroupChips/StatusGroupChips.js +24 -0
- package/build/components/StatusGroupChips/index.js +1 -1
- package/build/components/StatusGroupChips/style.js +17 -0
- package/build/components/StatusGroupChips/type.js +1 -0
- package/build/components/StatusIcons/AgreementIcon/AgreementIcon.js +34 -0
- package/build/components/StatusIcons/AgreementIcon/constant.js +32 -0
- package/build/components/StatusIcons/AgreementIcon/index.js +3 -0
- package/build/components/StatusIcons/AgreementIcon/style.js +37 -0
- package/build/components/StatusIcons/AgreementIcon/type.js +1 -0
- package/build/components/StatusIcons/AuthIcons/AuthIcons.js +45 -0
- package/build/components/StatusIcons/AuthIcons/constants.js +35 -0
- package/build/components/StatusIcons/AuthIcons/index.js +3 -0
- package/build/components/StatusIcons/AuthIcons/style.js +61 -0
- package/build/components/StatusIcons/AuthIcons/type.js +14 -0
- package/build/components/StatusIcons/AuthIcons/utils.js +8 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/CaptureAutoIcon.js +82 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/VoidAutoIcon.js +85 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/constant.js +5 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/index.js +4 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/style.js +58 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/type.js +1 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/utils.js +9 -0
- package/build/components/StatusIcons/AuthorizedIcon/AuthorizedIcon.js +20 -0
- package/build/components/StatusIcons/AuthorizedIcon/index.js +1 -0
- package/build/components/StatusIcons/ChargeStatusIcon/ChargeStatusIcon.js +58 -0
- package/build/components/StatusIcons/ChargeStatusIcon/index.js +1 -0
- package/build/components/StatusIcons/ChargeStatusIcon/style.js +113 -0
- package/build/components/StatusIcons/CustomerInitiated/CustomerInitiatedIcon.js +11 -0
- package/build/components/StatusIcons/CustomerInitiated/index.js +1 -0
- package/build/components/StatusIcons/DestinationIcon/DestinationIcon.js +22 -0
- package/build/components/StatusIcons/DestinationIcon/constant.js +7 -0
- package/build/components/StatusIcons/DestinationIcon/index.js +1 -0
- package/build/components/StatusIcons/DestinationIcon/style.js +20 -0
- package/build/components/StatusIcons/DeviceIcon/DeviceIcon.js +7 -0
- package/build/components/StatusIcons/DeviceIcon/index.js +1 -0
- package/build/components/StatusIcons/DisputeIcon/DisputeIcon.js +9 -0
- package/build/components/StatusIcons/DisputeIcon/index.js +1 -0
- package/build/components/StatusIcons/GeographyIcon/GeographyIcon.js +17 -0
- package/build/components/StatusIcons/GeographyIcon/index.js +1 -0
- package/build/components/StatusIcons/GeographyIcon/style.js +23 -0
- package/build/components/StatusIcons/IssuerIcon/IssuerIcon.js +9 -0
- package/build/components/StatusIcons/IssuerIcon/index.js +3 -0
- package/build/components/StatusIcons/IssuerIcon/style.js +10 -0
- package/build/components/StatusIcons/IssuerIcon/type.js +1 -0
- package/build/components/StatusIcons/PayoutIcon/PayoutIcon.js +17 -0
- package/build/components/StatusIcons/PayoutIcon/index.js +1 -0
- package/build/components/StatusIcons/RefundIcon/RefundIcon.js +59 -0
- package/build/components/StatusIcons/RefundIcon/index.js +2 -0
- package/build/components/StatusIcons/SourceIcons/SourceIcons.js +38 -0
- package/build/components/StatusIcons/SourceIcons/components/SourceIcon.js +13 -0
- package/build/components/StatusIcons/SourceIcons/components/index.js +1 -0
- package/build/components/StatusIcons/SourceIcons/index.js +3 -0
- package/build/components/StatusIcons/SourceIcons/style.js +57 -0
- package/build/components/StatusIcons/SourceIcons/type.js +1 -0
- package/build/components/StatusIcons/SourceIcons/utils.js +8 -0
- package/build/components/StatusIcons/index.js +14 -1
- package/build/components/StatusLabel/StatusLabel.js +10 -0
- package/build/components/StatusLabel/index.js +2 -1
- package/build/components/StatusLabel/style.js +20 -0
- package/build/components/TableCells/CustomCells/ActionCell/ActionCell.js +97 -0
- package/build/components/TableCells/CustomCells/ActionCell/components/ActionIconColumn.js +51 -0
- package/build/components/TableCells/CustomCells/ActionCell/components/ActionIconsVariants.js +21 -0
- package/build/components/TableCells/CustomCells/ActionCell/components/ActionsColumn.js +74 -0
- package/build/components/TableCells/CustomCells/ActionCell/components/index.js +3 -0
- package/build/components/TableCells/CustomCells/ActionCell/constant.js +29 -0
- package/build/components/TableCells/CustomCells/ActionCell/hooks/useActionCell.js +37 -0
- package/build/components/TableCells/CustomCells/ActionCell/index.js +3 -0
- package/build/components/TableCells/CustomCells/ActionCell/style.js +29 -0
- package/build/components/TableCells/CustomCells/ActionCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AgreementCell/AgreementCell.js +51 -0
- package/build/components/TableCells/CustomCells/AgreementCell/constant.js +32 -0
- package/build/components/TableCells/CustomCells/AgreementCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AgreementCell/style.js +59 -0
- package/build/components/TableCells/CustomCells/AgreementCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AmountCell/AmountCell.js +24 -0
- package/build/components/TableCells/CustomCells/AmountCell/AmountCellSheet.js +10 -0
- package/build/components/TableCells/CustomCells/AmountCell/AmountCellText.js +23 -0
- package/build/components/TableCells/CustomCells/AmountCell/components/AmountConversionTooltipLabel.js +15 -0
- package/build/components/TableCells/CustomCells/AmountCell/components/ConversionTypeLabel.js +7 -0
- package/build/components/TableCells/CustomCells/AmountCell/components/CurrencyInfo.js +8 -0
- package/build/components/TableCells/CustomCells/AmountCell/components/index.js +3 -0
- package/build/components/TableCells/CustomCells/AmountCell/index.js +5 -0
- package/build/components/TableCells/CustomCells/AmountCell/style.js +37 -0
- package/build/components/TableCells/CustomCells/AmountCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/ApplicationStatusCell.js +57 -0
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.js +51 -0
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AppsCell/AppsCell.js +25 -0
- package/build/components/TableCells/CustomCells/AppsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AppsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AuthCell/AuthCell.js +30 -0
- package/build/components/TableCells/CustomCells/AuthCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AuthCell/style.js +15 -0
- package/build/components/TableCells/CustomCells/AuthCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/AuthenticationCell.js +66 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/constant.js +50 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/style.js +65 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/AuthenticationStatusCell.js +31 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/constant.js +20 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.js +57 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/AuthenticationTypeCell.js +24 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/constant.js +9 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.js +57 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/AvatarCell/AvatarCell.js +36 -0
- package/build/components/TableCells/CustomCells/AvatarCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/AvatarCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/BalanceCell/BalanceCell.js +60 -0
- package/build/components/TableCells/CustomCells/BalanceCell/BalanceCellSheet.js +10 -0
- package/build/components/TableCells/CustomCells/BalanceCell/index.js +3 -0
- package/build/components/TableCells/CustomCells/BalanceCell/style.js +39 -0
- package/build/components/TableCells/CustomCells/BalanceCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/BalanceCell/utils.js +9 -0
- package/build/components/TableCells/CustomCells/BankCell/BankCell.js +26 -0
- package/build/components/TableCells/CustomCells/BankCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/BankCell/style.js +37 -0
- package/build/components/TableCells/CustomCells/BankCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/BankReferenceCell/BankReferenceCell.js +10 -0
- package/build/components/TableCells/CustomCells/BankReferenceCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/BankReferenceCell/style.js +14 -0
- package/build/components/TableCells/CustomCells/BrandCell/BrandCell.js +28 -0
- package/build/components/TableCells/CustomCells/BrandCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/BrandCell/style.js +20 -0
- package/build/components/TableCells/CustomCells/BrandCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/BrandsCell/BrandsCell.js +21 -0
- package/build/components/TableCells/CustomCells/BrandsCell/constants.js +7 -0
- package/build/components/TableCells/CustomCells/BrandsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/BrandsCell/style.js +31 -0
- package/build/components/TableCells/CustomCells/BrandsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/BusinessStatusCell/BusinessStatusCell.js +39 -0
- package/build/components/TableCells/CustomCells/BusinessStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/BusinessStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/ChannelsCell.js +55 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/constant.js +6 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/style.js +36 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/CheckoutStatusCell.js +32 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/constant.js +5 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.js +20 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/CurrencyCell/CurrencyCell.js +6 -0
- package/build/components/TableCells/CustomCells/CurrencyCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/CurrencyCell/style.js +12 -0
- package/build/components/TableCells/CustomCells/CustomerCell/CustomerCell.js +46 -0
- package/build/components/TableCells/CustomCells/CustomerCell/CustomerCellSheet.js +8 -0
- package/build/components/TableCells/CustomCells/CustomerCell/index.js +3 -0
- package/build/components/TableCells/CustomCells/CustomerCell/style.js +24 -0
- package/build/components/TableCells/CustomCells/CustomerCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/DateCell/DateCell.js +26 -0
- package/build/components/TableCells/CustomCells/DateCell/DateViewer.js +29 -0
- package/build/components/TableCells/CustomCells/DateCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/DateCell/style.js +7 -0
- package/build/components/TableCells/CustomCells/DestinationCell/DestinationCell.js +27 -0
- package/build/components/TableCells/CustomCells/DestinationCell/DestinationCellSheet.js +31 -0
- package/build/components/TableCells/CustomCells/DestinationCell/DestinationCellText.js +35 -0
- package/build/components/TableCells/CustomCells/DestinationCell/index.js +4 -0
- package/build/components/TableCells/CustomCells/DestinationCell/styled.js +68 -0
- package/build/components/TableCells/CustomCells/DestinationCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/DestinationCell/utils.js +12 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/DestinationStatusCell.js +25 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/constant.js +7 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/style.js +57 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/DeviceCell/DeviceCell.js +21 -0
- package/build/components/TableCells/CustomCells/DeviceCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/DeviceCell/style.js +7 -0
- package/build/components/TableCells/CustomCells/DueDateCell/DueDateCell.js +29 -0
- package/build/components/TableCells/CustomCells/DueDateCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/DueDateCell/style.js +43 -0
- package/build/components/TableCells/CustomCells/DueDateCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/DueDateCell/utils.js +53 -0
- package/build/components/TableCells/CustomCells/EntityCell/EntityCell.js +23 -0
- package/build/components/TableCells/CustomCells/EntityCell/constants.js +7 -0
- package/build/components/TableCells/CustomCells/EntityCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/EntityCell/style.js +28 -0
- package/build/components/TableCells/CustomCells/EntityCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/IDButton/IDButton.js +44 -0
- package/build/components/TableCells/CustomCells/IDButton/index.js +1 -0
- package/build/components/TableCells/CustomCells/IDButton/style.js +15 -0
- package/build/components/TableCells/CustomCells/IndividualsCell/IndividualsCell.js +21 -0
- package/build/components/TableCells/CustomCells/IndividualsCell/constants.js +7 -0
- package/build/components/TableCells/CustomCells/IndividualsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/IndividualsCell/style.js +51 -0
- package/build/components/TableCells/CustomCells/IndividualsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/IntentsStatusCell.js +33 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/constant.js +7 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/style.js +20 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/ChargeStatusIcon.js +18 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/InvoiceStatusCell.js +69 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/constant.js +17 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.js +50 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/utils.js +40 -0
- package/build/components/TableCells/CustomCells/LeadStatusCell/LeadStatusCell.js +25 -0
- package/build/components/TableCells/CustomCells/LeadStatusCell/constant.js +9 -0
- package/build/components/TableCells/CustomCells/LeadStatusCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/LeadStatusCell/style.js +12 -0
- package/build/components/TableCells/CustomCells/LeadStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/LinkCell/LinkCell.js +23 -0
- package/build/components/TableCells/CustomCells/LinkCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/LinkCell/style.js +12 -0
- package/build/components/TableCells/CustomCells/MarketPlaceCell/MarketPlaceCell.js +28 -0
- package/build/components/TableCells/CustomCells/MarketPlaceCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/MarketPlaceCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/MetadataCell/MetadataCell.js +18 -0
- package/build/components/TableCells/CustomCells/MetadataCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/OrderCell/OrderCell.js +27 -0
- package/build/components/TableCells/CustomCells/OrderCell/OrderCellSheet.js +20 -0
- package/build/components/TableCells/CustomCells/OrderCell/constant.js +1 -0
- package/build/components/TableCells/CustomCells/OrderCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/OrdersCell/OrdersCellSheet.js +32 -0
- package/build/components/TableCells/CustomCells/OrdersCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/PaymentAgreementCell/PaymentAgreementCellSheet.js +21 -0
- package/build/components/TableCells/CustomCells/PaymentAgreementCell/constant.js +6 -0
- package/build/components/TableCells/CustomCells/PaymentAgreementCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/PaymentAgreementCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/PayoutDateCell/PayoutDateCell.js +35 -0
- package/build/components/TableCells/CustomCells/PayoutDateCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/PayoutReportCell/PayoutReportCell.js +20 -0
- package/build/components/TableCells/CustomCells/PayoutReportCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/PayoutReportCell/style.js +18 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/PayoutStatusCell.js +32 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/constant.js +12 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/style.js +57 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ProductsCell/ProductsCell.js +63 -0
- package/build/components/TableCells/CustomCells/ProductsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/ProductsCell/style.js +58 -0
- package/build/components/TableCells/CustomCells/ProductsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ProviderCell/ProviderCell.js +23 -0
- package/build/components/TableCells/CustomCells/ProviderCell/constants.js +7 -0
- package/build/components/TableCells/CustomCells/ProviderCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/ProviderCell/style.js +19 -0
- package/build/components/TableCells/CustomCells/ProviderCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/PurposeCell/PurposeCell.js +20 -0
- package/build/components/TableCells/CustomCells/PurposeCell/constants.js +21 -0
- package/build/components/TableCells/CustomCells/PurposeCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/PurposeCell/style.js +35 -0
- package/build/components/TableCells/CustomCells/PurposeCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ReceiptCell/ReceiptCell.js +11 -0
- package/build/components/TableCells/CustomCells/ReceiptCell/ReceiptCellSheet.js +5 -0
- package/build/components/TableCells/CustomCells/ReceiptCell/ReceiptCellText.js +5 -0
- package/build/components/TableCells/CustomCells/ReceiptCell/index.js +3 -0
- package/build/components/TableCells/CustomCells/ReceiptCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/ReferenceCell.js +43 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/constant.js +7 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/style.js +60 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/RefundChargeCell.js +96 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/constant.js +14 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/style.js +39 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/utils.js +9 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/RefundStatusCell.js +36 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStateIcon.js +15 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatus.js +60 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatusIcon.js +10 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/components/index.js +3 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/constant.js +20 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/hooks/useRefundStyles.js +54 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/style.js +71 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/SalesChannelCell.js +40 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/SalesChannelCellSheet.js +54 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/index.js +3 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/style.js +60 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/utils.js +69 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/SegmentsCell.js +53 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/constant.js +8 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/style.js +51 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/utils.js +14 -0
- package/build/components/TableCells/CustomCells/SourceCell/SourceCell.js +26 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/AuthenticationMode/AuthenticationMode.js +9 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/AuthenticationMode/index.js +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentCardNumberSource/PaymentCardNumberSource.js +13 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentCardNumberSource/index.js +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentCardNumberSource/style.js +6 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentMethodSource/PaymentMethodSource.js +11 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentMethodSource/index.js +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentSchemeSource/PaymentSchemeSource.js +11 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentSchemeSource/index.js +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentTypeSource/PaymentTypeSource.js +11 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/PaymentTypeSource/index.js +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/components/index.js +5 -0
- package/build/components/TableCells/CustomCells/SourceCell/constant.js +11 -0
- package/build/components/TableCells/CustomCells/SourceCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/SourceCell/style.js +12 -0
- package/build/components/TableCells/CustomCells/SourceCell/type.js +13 -0
- package/build/components/TableCells/CustomCells/StatusCell/StatusCell.js +42 -0
- package/build/components/TableCells/CustomCells/StatusCell/StatusCellSheet.js +21 -0
- package/build/components/TableCells/CustomCells/StatusCell/StatusCellText.js +42 -0
- package/build/components/TableCells/CustomCells/StatusCell/constant.js +93 -0
- package/build/components/TableCells/CustomCells/StatusCell/index.js +4 -0
- package/build/components/TableCells/CustomCells/StatusCell/style.js +69 -0
- package/build/components/TableCells/CustomCells/StatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/StatusCell/useStatusCell.js +8 -0
- package/build/components/TableCells/CustomCells/StatusCell/utils.js +9 -0
- package/build/components/TableCells/CustomCells/TextTableCell/TextTableCell.js +6 -0
- package/build/components/TableCells/CustomCells/TextTableCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/TextTableCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/TextWithBadgeCell/TextWithBadgeCell.js +29 -0
- package/build/components/TableCells/CustomCells/TextWithBadgeCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/TextWithBadgeCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/TextWithChipCell/TextWithChipCell.js +31 -0
- package/build/components/TableCells/CustomCells/TextWithChipCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/TokenStatusCell.js +33 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/constant.js +9 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/index.js +1 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/style.js +57 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/WalletCell/WalletCell.js +26 -0
- package/build/components/TableCells/CustomCells/WalletCell/index.js +2 -0
- package/build/components/TableCells/CustomCells/WalletCell/style.js +26 -0
- package/build/components/TableCells/CustomCells/WalletCell/type.js +1 -0
- package/build/components/TableCells/CustomCells/index.js +56 -0
- package/build/components/TableCells/CustomCells/style.js +140 -0
- package/build/components/TableCells/CustomCells/type.js +15 -0
- package/build/components/TableCells/TableCell.js +19 -0
- package/build/components/TableCells/index.js +3 -1
- package/build/components/TableCells/style.js +18 -0
- package/build/components/TableCells/type.js +1 -0
- package/build/components/TableHeader/FiltersRow.js +24 -0
- package/build/components/TableHeader/FiltersRowWrapper.js +18 -0
- package/build/components/TableHeader/TableHeader.js +22 -0
- package/build/components/TableHeader/TableHeaderWrapper.js +18 -0
- package/build/components/TableHeader/TableModeButton.js +11 -0
- package/build/components/TableHeader/TableView/ColumnItem.js +29 -0
- package/build/components/TableHeader/TableView/CreateViewDialog.js +91 -0
- package/build/components/TableHeader/TableView/CustomViews.js +21 -0
- package/build/components/TableHeader/TableView/DefaultViews.js +22 -0
- package/build/components/TableHeader/TableView/TableView.js +54 -0
- package/build/components/TableHeader/TableView/ViewsDropdown.js +153 -0
- package/build/components/TableHeader/TableView/ViewsMenu.js +36 -0
- package/build/components/TableHeader/TableView/components/ColumnList.js +73 -0
- package/build/components/TableHeader/TableView/components/ViewsSubmenu.js +71 -0
- package/build/components/TableHeader/TableView/components/index.js +2 -0
- package/build/components/TableHeader/TableView/constants.js +39 -0
- package/build/components/TableHeader/TableView/hooks/index.js +10 -0
- package/build/components/TableHeader/TableView/hooks/useColumnItem.js +29 -0
- package/build/components/TableHeader/TableView/hooks/useCreateViewDialog.js +92 -0
- package/build/components/TableHeader/TableView/hooks/useCustomTableViews.js +105 -0
- package/build/components/TableHeader/TableView/hooks/useDialogPosition.js +16 -0
- package/build/components/TableHeader/TableView/hooks/useNestedSubmenu.js +27 -0
- package/build/components/TableHeader/TableView/hooks/useOriginalColumns.js +18 -0
- package/build/components/TableHeader/TableView/hooks/useSubMenu.js +31 -0
- package/build/components/TableHeader/TableView/hooks/useSubmenuHover.js +42 -0
- package/build/components/TableHeader/TableView/hooks/useViewColumns.js +45 -0
- package/build/components/TableHeader/TableView/hooks/useViewsManager.js +37 -0
- package/build/components/TableHeader/TableView/hooks/useViewsMenu.js +162 -0
- package/build/components/TableHeader/TableView/index.js +10 -0
- package/build/components/TableHeader/TableView/styles.js +427 -0
- package/build/components/TableHeader/TableView/types.js +1 -0
- package/build/components/TableHeader/TableView/utils/columnState.js +187 -0
- package/build/components/TableHeader/TableView/utils/customTableViews.js +30 -0
- package/build/components/TableHeader/TableView/utils/index.js +6 -0
- package/build/components/TableHeader/TableView/utils/layoutTransform.js +71 -0
- package/build/components/TableHeader/TableView/utils/templateState.js +27 -0
- package/build/components/TableHeader/TableView/utils/templateToColumnsView.js +153 -0
- package/build/components/TableHeader/TableView/utils/viewMenu.js +90 -0
- package/build/components/TableHeader/data.js +7 -0
- package/build/components/TableHeader/index.js +9 -1
- package/build/components/TableHeader/style.js +43 -0
- package/build/components/TableHeader/type.js +1 -0
- package/build/components/TableReports/DownloadIconButton.js +20 -0
- package/build/components/TableReports/Downloads.js +24 -0
- package/build/components/TableReports/RecordLoading.js +6 -0
- package/build/components/TableReports/TableReports.js +53 -0
- package/build/components/TableReports/components/DownloadButton/DownloadButton.js +16 -0
- package/build/components/TableReports/components/DownloadButton/index.js +2 -0
- package/build/components/TableReports/components/DownloadButton/style.js +15 -0
- package/build/components/TableReports/hooks/index.js +1 -0
- package/build/components/TableReports/hooks/useDownloadReport.js +59 -0
- package/build/components/TableReports/index.js +7 -1
- package/build/components/TableReports/style.js +163 -0
- package/build/components/TableReports/type.js +1 -0
- package/build/components/TableReports/utils.js +32 -0
- package/build/components/TableView/CustomViews.js +80 -0
- package/build/components/TableView/DefaultViews.js +22 -0
- package/build/components/TableView/TableView.js +56 -0
- package/build/components/TableView/data.js +7 -0
- package/build/components/TableView/index.js +3 -1
- package/build/components/TableView/style.js +102 -0
- package/build/components/TapLogo/TapLogo.js +6 -0
- package/build/components/TapLogo/index.js +2 -1
- package/build/components/Text/Text.js +9 -0
- package/build/components/Text/index.js +2 -1
- package/build/components/Timepicker/Timepicker.js +87 -0
- package/build/components/Timepicker/constant.js +3 -0
- package/build/components/Timepicker/index.js +5 -1
- package/build/components/Timepicker/style.js +45 -0
- package/build/components/Timepicker/utils.js +28 -0
- package/build/components/Toaster/Toaster.js +12 -0
- package/build/components/Toaster/index.js +2 -1
- package/build/components/Toaster/style.js +15 -0
- package/build/components/ToggleButtons/ToggleButtons.js +6 -0
- package/build/components/ToggleButtons/index.js +3 -1
- package/build/components/ToggleButtons/style.js +25 -0
- package/build/components/ToggleButtons/type.js +1 -0
- package/build/components/ToggleView/ToggleView.js +32 -0
- package/build/components/ToggleView/ToggleWrapper.js +8 -0
- package/build/components/ToggleView/index.js +3 -1
- package/build/components/ToggleView/style.js +31 -0
- package/build/components/ToggleView/types.js +6 -0
- package/build/components/Toolbar/Toolbar.js +20 -0
- package/build/components/Toolbar/index.js +4 -1
- package/build/components/Toolbar/style.js +98 -0
- package/build/components/Toolbar/type.js +1 -0
- package/build/components/ToolbarIcon/CloseIcon/CloseIcon.js +6 -0
- package/build/components/ToolbarIcon/CloseIcon/index.js +1 -0
- package/build/components/ToolbarIcon/CloseIcon/style.js +7 -0
- package/build/components/ToolbarIcon/ExpandButton/ExpandButton.js +21 -0
- package/build/components/ToolbarIcon/ExpandButton/index.js +1 -0
- package/build/components/ToolbarIcon/ExpandButton/style.js +31 -0
- package/build/components/ToolbarIcon/MaximizeIcon/MaximizeIcon.js +18 -0
- package/build/components/ToolbarIcon/MaximizeIcon/index.js +1 -0
- package/build/components/ToolbarIcon/MaximizeIcon/style.js +7 -0
- package/build/components/ToolbarIcon/MinimizeIcon/MinimizeIcon.js +6 -0
- package/build/components/ToolbarIcon/MinimizeIcon/index.js +1 -0
- package/build/components/ToolbarIcon/MinimizeIcon/style.js +7 -0
- package/build/components/ToolbarIcon/index.js +4 -1
- package/build/components/ToolbarIcon/style.js +20 -0
- package/build/components/Tooltip/Tooltip.js +21 -0
- package/build/components/Tooltip/index.js +2 -0
- package/build/components/Tooltip/styles.js +34 -0
- package/build/components/TooltipChip/TooltipChip.js +20 -0
- package/build/components/TooltipChip/index.js +1 -1
- package/build/components/TooltipChip/style.js +7 -0
- package/build/components/TreeDropdown/TreeDropdown.js +67 -0
- package/build/components/TreeDropdown/TreeNodeItem/SelectionControl.js +17 -0
- package/build/components/TreeDropdown/TreeNodeItem/TreeNodeItem.js +64 -0
- package/build/components/TreeDropdown/TreeNodeItem/index.js +2 -0
- package/build/components/TreeDropdown/TreeNodeItem/style.js +46 -0
- package/build/components/TreeDropdown/TreeNodeList/List.js +17 -0
- package/build/components/TreeDropdown/TreeNodeList/TreeNodeList.js +36 -0
- package/build/components/TreeDropdown/TreeNodeList/index.js +2 -0
- package/build/components/TreeDropdown/TreeNodeList/style.js +60 -0
- package/build/components/TreeDropdown/context/TreeDropdownProvider.js +13 -0
- package/build/components/TreeDropdown/hooks/useSearch.js +38 -0
- package/build/components/TreeDropdown/hooks/useTreeDropdown.js +10 -0
- package/build/components/TreeDropdown/index.js +4 -1
- package/build/components/TreeDropdown/style.js +43 -0
- package/build/components/TreeDropdown/type.js +6 -0
- package/build/components/TreeDropdown/utils.js +161 -0
- package/build/components/VAT/TotalVAT/TotalVAT.js +33 -0
- package/build/components/VAT/TotalVAT/index.js +1 -0
- package/build/components/VAT/TotalVAT/style.js +5 -0
- package/build/components/VAT/VATDropdown/VATDropdown.js +34 -0
- package/build/components/VAT/VATDropdown/index.js +1 -0
- package/build/components/VAT/VATDropdown/style.js +32 -0
- package/build/components/VAT/VATRateDropdown/VATRateDropdown.js +38 -0
- package/build/components/VAT/VATRateDropdown/index.js +1 -0
- package/build/components/VAT/VATRateDropdown/style.js +30 -0
- package/build/components/VAT/index.js +4 -1
- package/build/components/VAT/utils.js +8 -0
- package/build/components/VerificationIcon/VerificationIcon.js +7 -0
- package/build/components/VerificationIcon/VerificationIconWithBg.js +15 -0
- package/build/components/VerificationIcon/constant.js +18 -0
- package/build/components/VerificationIcon/index.js +3 -1
- package/build/components/VerificationIcon/type.js +1 -0
- package/build/components/ViewColumnRadioFilter/ViewColumnRadioFilter.js +28 -0
- package/build/components/ViewColumnRadioFilter/index.js +1 -1
- package/build/components/ViewColumnRadioFilter/style.js +20 -0
- package/build/components/ViewColumnRadioFilter/type.js +1 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/SheetViewVirtualTable.js +141 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/LoadingMainTable.js +21 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/MainTable.js +19 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/NoDataView.js +13 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/PinnedColumn.js +24 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableHeader.js +12 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableHeaderCell.js +62 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableLoading.js +56 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableNoData.js +32 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/SheetViewTableRowLoading.js +45 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/VirtualTable.js +37 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/index.js +9 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/components/ColumnResize.js +41 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/components/ResizeOverlay.js +10 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/components/index.js +2 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/constants.js +5 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/hooks/index.js +2 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/hooks/useColumnResize.js +152 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/hooks/useColumnResizeWithPinned.js +29 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/index.js +4 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/styles.js +55 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/types/index.js +1 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/utils/index.js +1 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/features/resize/utils/resize.js +127 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/index.js +7 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/usePinnedColumns.js +73 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/usePinnedColumnsWidths.js +15 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSynchronizedScroll.js +30 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useTableData.js +41 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useTableDimensions.js +26 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useTableState.js +65 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useVirtualTableContainer.js +57 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/index.js +5 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/style.js +110 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/types.js +1 -0
- package/build/components/VirtualTables/VirtualTable/VirtualTable.js +113 -0
- package/build/components/VirtualTables/VirtualTableWithCard/VirtualTableWithCard.js +89 -0
- package/build/components/VirtualTables/components/ColumnFilter/ColumnFilter.js +46 -0
- package/build/components/VirtualTables/components/ColumnFilter/Inputs/Inputs.js +51 -0
- package/build/components/VirtualTables/components/ColumnFilter/Inputs/index.js +2 -0
- package/build/components/VirtualTables/components/ColumnFilter/Inputs/style.js +47 -0
- package/build/components/VirtualTables/components/ColumnFilter/List/List.js +61 -0
- package/build/components/VirtualTables/components/ColumnFilter/List/index.js +2 -0
- package/build/components/VirtualTables/components/ColumnFilter/index.js +5 -0
- package/build/components/VirtualTables/components/ColumnFilter/style.js +50 -0
- package/build/components/VirtualTables/components/ColumnFilter/type.js +1 -0
- package/build/components/VirtualTables/components/ColumnSort/ColumnSort.js +41 -0
- package/build/components/VirtualTables/components/ColumnSort/index.js +2 -0
- package/build/components/VirtualTables/components/ColumnSort/style.js +10 -0
- package/build/components/VirtualTables/components/EmptyList/EmptyList.js +23 -0
- package/build/components/VirtualTables/components/EmptyList/index.js +3 -0
- package/build/components/VirtualTables/components/EmptyList/styles.js +39 -0
- package/build/components/VirtualTables/components/ErrorList/ErrorList.js +23 -0
- package/build/components/VirtualTables/components/ErrorList/index.js +2 -0
- package/build/components/VirtualTables/components/ErrorList/styles.js +72 -0
- package/build/components/VirtualTables/components/RowErrorState.js +21 -0
- package/build/components/VirtualTables/components/TableError.js +22 -0
- package/build/components/VirtualTables/components/TableFooter/TableFooter.js +22 -0
- package/build/components/VirtualTables/components/TableFooter/index.js +2 -0
- package/build/components/VirtualTables/components/TableFooter/style.js +53 -0
- package/build/components/VirtualTables/components/TableHeader/TableHeader.js +10 -0
- package/build/components/VirtualTables/components/TableHeader/components/TableCell/TableCell.js +16 -0
- package/build/components/VirtualTables/components/TableHeader/components/TableCell/index.js +2 -0
- package/build/components/VirtualTables/components/TableHeader/components/index.js +1 -0
- package/build/components/VirtualTables/components/TableHeader/constant.js +6 -0
- package/build/components/VirtualTables/components/TableHeader/index.js +3 -0
- package/build/components/VirtualTables/components/TableHeader/style.js +23 -0
- package/build/components/VirtualTables/components/TableHeader/type.js +1 -0
- package/build/components/VirtualTables/components/TableLastItem.js +39 -0
- package/build/components/VirtualTables/components/TableLoading.js +19 -0
- package/build/components/VirtualTables/components/TableLoadingWithCard.js +19 -0
- package/build/components/VirtualTables/components/TableNoData.js +13 -0
- package/build/components/VirtualTables/components/TableNoDataWithCard.js +29 -0
- package/build/components/VirtualTables/components/TableRow.js +93 -0
- package/build/components/VirtualTables/components/TableRowLoading.js +21 -0
- package/build/components/VirtualTables/components/TableRowLoadingWithCard.js +14 -0
- package/build/components/VirtualTables/components/TableRowWithCard.js +9 -0
- package/build/components/VirtualTables/components/index.js +18 -0
- package/build/components/VirtualTables/components/style.js +180 -0
- package/build/components/VirtualTables/components/virtualScroll/ListItemWrapper.js +112 -0
- package/build/components/VirtualTables/components/virtualScroll/ListItemWrapperWithCard.js +28 -0
- package/build/components/VirtualTables/components/virtualScroll/VirtualScrollInner.js +20 -0
- package/build/components/VirtualTables/components/virtualScroll/VirtualScrollList.js +79 -0
- package/build/components/VirtualTables/components/virtualScroll/VirtualScrollOuter.js +21 -0
- package/build/components/VirtualTables/components/virtualScroll/index.js +5 -0
- package/build/components/VirtualTables/context/Provider.js +3 -0
- package/build/components/VirtualTables/context/context.js +2 -0
- package/build/components/VirtualTables/context/index.js +2 -0
- package/build/components/VirtualTables/hooks/index.js +1 -0
- package/build/components/VirtualTables/hooks/useColumnFilter.js +22 -0
- package/build/components/VirtualTables/hooks/useScrollBackShadow.js +26 -0
- package/build/components/VirtualTables/index.js +7 -1
- package/build/components/Widget/List.js +23 -0
- package/build/components/Widget/ListItem.js +19 -0
- package/build/components/Widget/Widget.js +19 -0
- package/build/components/Widget/WidgetHeader.js +19 -0
- package/build/components/Widget/index.js +6 -1
- package/build/components/Widget/style.js +71 -0
- package/build/components/Widget/useScrollWithShadow.js +14 -0
- package/build/components/Window/Window.js +43 -0
- package/build/components/Window/index.js +2 -1
- package/build/components/Window/style.js +47 -0
- package/build/components/WindowAppIcon/WindowAppIcon.js +17 -0
- package/build/components/WindowAppIcon/index.js +2 -0
- package/build/components/WindowAppIcon/style.js +25 -0
- package/build/components/WindowBackdrop/WindowBackdrop.js +9 -0
- package/build/components/WindowBackdrop/index.js +1 -1
- package/build/components/WindowSideBar/WindowSideBar.js +11 -0
- package/build/components/WindowSideBar/constant.js +1 -0
- package/build/components/WindowSideBar/index.js +4 -1
- package/build/components/WindowSideBar/style.js +33 -0
- package/build/components/WindowSideBar/type.js +1 -0
- package/build/components/index.js +159 -1
- package/build/constants/api.js +57 -0
- package/build/constants/apps.js +495 -0
- package/build/constants/assets.js +621 -0
- package/build/constants/authentication.js +23 -0
- package/build/constants/charge.js +1 -0
- package/build/constants/chips/index.js +1 -0
- package/build/constants/chips/statusChips.js +5 -0
- package/build/constants/country.js +1 -0
- package/build/constants/currency.js +22 -0
- package/build/constants/document.js +5 -0
- package/build/constants/index.js +21 -1
- package/build/constants/payment.js +53 -0
- package/build/constants/rate.js +6 -0
- package/build/constants/reports.js +119 -0
- package/build/constants/segment.js +12 -0
- package/build/constants/server.js +6 -0
- package/build/constants/servicesTags.js +53 -0
- package/build/constants/style.js +3 -0
- package/build/constants/svgIcons.js +3 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.js +132 -0
- package/build/constants/table/cell/authorizationTableCellWidth.js +247 -0
- package/build/constants/table/cell/chargeTableCellWidth.js +297 -0
- package/build/constants/table/cell/destinationsTableCellWidth.js +197 -0
- package/build/constants/table/cell/index.js +20 -0
- package/build/constants/table/cell/intentsTableCellWidth.js +32 -0
- package/build/constants/table/cell/invoicesTableCellWidth.js +107 -0
- package/build/constants/table/cell/leadsTableCellWidth.js +37 -0
- package/build/constants/table/cell/merchantsTableCellWidth.js +152 -0
- package/build/constants/table/cell/ordersTableCellWidth.js +57 -0
- package/build/constants/table/cell/payoutsTableCellWidth.js +57 -0
- package/build/constants/table/cell/protectAuthorizationsTableCellWidth.js +72 -0
- package/build/constants/table/cell/protectChargesTableCellWidth.js +67 -0
- package/build/constants/table/cell/refundTableCellWidth.js +237 -0
- package/build/constants/table/cell/terminalsTableCellWidth.js +72 -0
- package/build/constants/table/cell/tokensTableCellWidth.js +47 -0
- package/build/constants/table/cell/topupsTableCellWidth.js +57 -0
- package/build/constants/table/cell/walletDetailsTableCellWidth.js +32 -0
- package/build/constants/table/cell/walletStatementTableCellWidth.js +62 -0
- package/build/constants/table/cell/walletTableCellWidth.js +32 -0
- package/build/constants/table.js +8 -0
- package/build/constants/timezones.js +47 -0
- package/build/constants/toggleOptions.js +8 -0
- package/build/hooks/index.js +17 -1
- package/build/hooks/useActionMenu.js +45 -0
- package/build/hooks/useAppEventListener.js +13 -0
- package/build/hooks/useAppEventPublisher.js +7 -0
- package/build/hooks/useAppsInfo.js +21 -0
- package/build/hooks/useBadgesCount.js +15 -0
- package/build/hooks/useCheckUserLoggedIn.js +11 -0
- package/build/hooks/useCountdown.js +50 -0
- package/build/hooks/useDelayToSetValue.js +19 -0
- package/build/hooks/useIsParameterSelected.js +13 -0
- package/build/hooks/useMouseState.js +25 -0
- package/build/hooks/useNetworkState.js +112 -0
- package/build/hooks/useScrolledTo.js +45 -0
- package/build/hooks/useSelectedMerchantDetails.js +15 -0
- package/build/hooks/useStickyHeaderShadow.js +20 -0
- package/build/hooks/useThemeMode.js +8 -0
- package/build/hooks/useToast.js +29 -0
- package/build/hooks/useWindowDimensions.js +21 -0
- package/build/index.js +6 -1
- package/build/theme/components.js +22 -0
- package/build/theme/index.js +5 -1
- package/build/theme/palette.js +106 -0
- package/build/theme/shadows.js +27 -0
- package/build/theme/theme.js +15 -0
- package/build/theme/typography.js +33 -0
- package/build/types/account.js +8 -0
- package/build/types/analytics.js +11 -0
- package/build/types/api.js +1 -0
- package/build/types/appConfig.js +1 -0
- package/build/types/appEvents.js +16 -0
- package/build/types/apps.js +1 -0
- package/build/types/authentication.js +1 -0
- package/build/types/brand.js +13 -0
- package/build/types/cell.js +1 -0
- package/build/types/charge.js +1 -0
- package/build/types/column.js +1 -0
- package/build/types/common.js +1 -0
- package/build/types/currency.js +13 -0
- package/build/types/day.js +1 -0
- package/build/types/destination.js +1 -0
- package/build/types/discount.js +6 -0
- package/build/types/document.js +1 -0
- package/build/types/entity.js +1 -0
- package/build/types/error.js +1 -0
- package/build/types/file.js +1 -0
- package/build/types/filter.js +6 -0
- package/build/types/flag.js +1 -0
- package/build/types/index.js +38 -1
- package/build/types/invoice.js +13 -0
- package/build/types/merchant.js +1 -0
- package/build/types/receipt.js +1 -0
- package/build/types/redux.js +1 -0
- package/build/types/refund.js +1 -0
- package/build/types/reports.js +7 -0
- package/build/types/segment.js +16 -0
- package/build/types/sort.js +1 -0
- package/build/types/table.js +1 -0
- package/build/types/theme.js +10 -0
- package/build/types/toast.js +1 -0
- package/build/types/toggleOptions.js +1 -0
- package/build/types/tsUtils.js +1 -0
- package/build/types/user.js +1 -0
- package/build/types/utilities.js +1 -0
- package/build/types/window.js +1 -0
- package/build/utils/api.js +96 -0
- package/build/utils/app.js +7 -0
- package/build/utils/array.js +20 -0
- package/build/utils/billing.js +33 -0
- package/build/utils/boolean.js +7 -0
- package/build/utils/browser.js +25 -0
- package/build/utils/card.js +15 -0
- package/build/utils/chargeError.js +10 -0
- package/build/utils/color.js +65 -0
- package/build/utils/columnResizeStorage.js +96 -0
- package/build/utils/columns.js +81 -0
- package/build/utils/conversion.js +27 -0
- package/build/utils/country.js +14 -0
- package/build/utils/currency.js +91 -0
- package/build/utils/date.js +287 -0
- package/build/utils/day.js +9 -0
- package/build/utils/download.js +24 -0
- package/build/utils/encrypt.js +46 -0
- package/build/utils/entity.js +13 -0
- package/build/utils/error.js +71 -0
- package/build/utils/extractIdsFromRowData.js +22 -0
- package/build/utils/file.js +16 -0
- package/build/utils/flag.js +13 -0
- package/build/utils/freshdesk.js +56 -0
- package/build/utils/geography.js +10 -0
- package/build/utils/index.js +48 -1
- package/build/utils/language.js +14 -0
- package/build/utils/localStorage.js +213 -0
- package/build/utils/merchant.js +24 -0
- package/build/utils/merchantSource.js +36 -0
- package/build/utils/navigation.js +11 -0
- package/build/utils/number.js +38 -0
- package/build/utils/object.js +15 -0
- package/build/utils/payout.js +172 -0
- package/build/utils/phone.js +8 -0
- package/build/utils/reports.js +3 -0
- package/build/utils/segment.js +63 -0
- package/build/utils/skeletonColumns.js +55 -0
- package/build/utils/source.js +9 -0
- package/build/utils/string.js +73 -0
- package/build/utils/style.js +95 -0
- package/build/utils/table.js +230 -0
- package/build/utils/timezone.js +3 -0
- package/build/utils/toggleOptions.js +10 -0
- package/build/utils/url.js +20 -0
- package/build/utils/user.js +7 -0
- package/build/utils/validation.js +3 -0
- package/package.json +18 -15
- package/build/chunk-23C4BLEJ.js +0 -1
- package/build/chunk-24UTRGGG.js +0 -2
- package/build/chunk-24XGEJR2.js +0 -1
- package/build/chunk-2FDPAJY4.js +0 -1
- package/build/chunk-2LMLVUW4.js +0 -1
- package/build/chunk-2Q6H6K3P.js +0 -1
- package/build/chunk-2T2Z5RPJ.js +0 -1
- package/build/chunk-34II3WB7.js +0 -1
- package/build/chunk-3A4B5D6T.js +0 -1
- package/build/chunk-3ABTBVXY.js +0 -1
- package/build/chunk-3EU4NGZ7.js +0 -1
- package/build/chunk-4A6Z3DYW.js +0 -1
- package/build/chunk-4O4EFXIC.js +0 -1
- package/build/chunk-544TDVOA.js +0 -1
- package/build/chunk-5AIEKGEA.js +0 -1
- package/build/chunk-5QGYWOQI.js +0 -1
- package/build/chunk-5ZTIXOFI.js +0 -1
- package/build/chunk-62CGUEB4.js +0 -1
- package/build/chunk-66JBLKME.js +0 -1
- package/build/chunk-6DLPM4RB.js +0 -1
- package/build/chunk-6ZPCHYOF.js +0 -1
- package/build/chunk-7A7PBYFB.js +0 -1
- package/build/chunk-7IW25XZP.js +0 -1
- package/build/chunk-7NYF2UBV.js +0 -1
- package/build/chunk-A5FGRP2T.js +0 -1
- package/build/chunk-ABDRIOU6.js +0 -2
- package/build/chunk-AMMCJJFH.js +0 -1
- package/build/chunk-ARHJB5QJ.js +0 -1
- package/build/chunk-AUM6AR3E.js +0 -1
- package/build/chunk-B4QKXIT7.js +0 -1
- package/build/chunk-BFGMD3VQ.js +0 -1
- package/build/chunk-BNUBHZV7.js +0 -1
- package/build/chunk-BTANFCN2.js +0 -1
- package/build/chunk-BV5VAMBI.js +0 -1
- package/build/chunk-CQT4MCPB.js +0 -1
- package/build/chunk-CTBYQDKG.js +0 -1
- package/build/chunk-D4S6DH7W.js +0 -1
- package/build/chunk-D5EB3ZRT.js +0 -1
- package/build/chunk-DJYRLVOD.js +0 -1
- package/build/chunk-DQ76BKNS.js +0 -1
- package/build/chunk-DQLGJFLX.js +0 -2
- package/build/chunk-DYWKQE3E.js +0 -1
- package/build/chunk-E6XVMA37.js +0 -1
- package/build/chunk-EAUWAY4T.js +0 -1
- package/build/chunk-EDMW226P.js +0 -1
- package/build/chunk-F4KVGV4T.js +0 -1
- package/build/chunk-FAYAV46R.js +0 -1
- package/build/chunk-FL7ZDVP7.js +0 -1
- package/build/chunk-FQXBL3YF.js +0 -1
- package/build/chunk-G6N4V3PP.js +0 -1
- package/build/chunk-GF7D4WGP.js +0 -1
- package/build/chunk-GI3U6XGW.js +0 -1
- package/build/chunk-GMRNI4U5.js +0 -1
- package/build/chunk-GPFU7WD4.js +0 -1
- package/build/chunk-HBY2XKKF.js +0 -1
- package/build/chunk-HRHKLBHG.js +0 -1
- package/build/chunk-IBPFWRCW.js +0 -1
- package/build/chunk-IXQ7Y6Y5.js +0 -1
- package/build/chunk-J72TLM2F.js +0 -1
- package/build/chunk-JQYBCTVW.js +0 -1
- package/build/chunk-JT54SXJ7.js +0 -1
- package/build/chunk-JWC3XDE4.js +0 -1
- package/build/chunk-JYJ3D2X6.js +0 -1
- package/build/chunk-KGQT7R3W.js +0 -1
- package/build/chunk-KM4UT2GM.js +0 -1
- package/build/chunk-L3M6OM4B.js +0 -1
- package/build/chunk-LDIEOZVR.js +0 -1
- package/build/chunk-LDZG7EXA.js +0 -1
- package/build/chunk-LLPG2AC6.js +0 -3
- package/build/chunk-LMKY6Q27.js +0 -1
- package/build/chunk-LOJTJZSX.js +0 -1
- package/build/chunk-LONKQ3XM.js +0 -1
- package/build/chunk-M7YGOEQF.js +0 -1
- package/build/chunk-MTJECG6U.js +0 -1
- package/build/chunk-MYFLXP7G.js +0 -1
- package/build/chunk-NLAQMZT4.js +0 -1
- package/build/chunk-NLEKLEHC.js +0 -2
- package/build/chunk-NLOKMDQY.js +0 -1
- package/build/chunk-NLPYBEGY.js +0 -1
- package/build/chunk-NQVCWKMH.js +0 -1
- package/build/chunk-OFBKWUDT.js +0 -1
- package/build/chunk-OJJ2Q5XK.js +0 -1
- package/build/chunk-OLPNHTE7.js +0 -1
- package/build/chunk-OYEIM6ED.js +0 -2
- package/build/chunk-P6K4PD7Y.js +0 -1
- package/build/chunk-PX7SYRBV.js +0 -1
- package/build/chunk-QF32XNU6.js +0 -1
- package/build/chunk-QFMHEDCR.js +0 -1
- package/build/chunk-QGXXI4EO.js +0 -1
- package/build/chunk-RQ2V5JZH.js +0 -1
- package/build/chunk-RUU3IQ7Y.js +0 -1
- package/build/chunk-RWXGVZUC.js +0 -1
- package/build/chunk-S2BQCMBY.js +0 -1
- package/build/chunk-SZBR7LB3.js +0 -1
- package/build/chunk-T3BFBXVJ.js +0 -1
- package/build/chunk-TG2IA55S.js +0 -1
- package/build/chunk-TUTEF6YD.js +0 -1
- package/build/chunk-TZAF2TGI.js +0 -1
- package/build/chunk-UB5L7C6S.js +0 -1
- package/build/chunk-UEMTPYYH.js +0 -1
- package/build/chunk-UF4FBI5V.js +0 -1
- package/build/chunk-V44MUKYW.js +0 -1
- package/build/chunk-V5OHALLD.js +0 -1
- package/build/chunk-VJLQXTHX.js +0 -1
- package/build/chunk-VNK7I7AL.js +0 -1
- package/build/chunk-WGCHJPEZ.js +0 -1
- package/build/chunk-WGPV3VEK.js +0 -4
- package/build/chunk-WHWKA4SY.js +0 -1
- package/build/chunk-WX7HFBCU.js +0 -1
- package/build/chunk-X5KEG2KP.js +0 -1
- package/build/chunk-XQVSYDRO.js +0 -1
- package/build/chunk-XRTET45W.js +0 -1
- package/build/chunk-XUDGW7IY.js +0 -1
- package/build/chunk-XXZJ5D5P.js +0 -1
- package/build/chunk-XY57JRPE.js +0 -1
- package/build/chunk-XZORYOIS.js +0 -16
- package/build/chunk-YLE4Q6WH.js +0 -1
- package/build/chunk-YTBVTQNQ.js +0 -1
- package/build/chunk-YVHYNRRL.js +0 -1
- package/build/chunk-ZCSUNBRA.js +0 -1
- package/build/chunk-ZLWJCX4K.js +0 -1
- package/build/chunk-ZMTLSAZW.js +0 -1
- package/build/chunk-ZN4NGPK4.js +0 -2
- package/build/chunk-ZTHZGDV6.js +0 -1
- package/build/chunk-ZUBHIDDI.js +0 -1
- package/build/chunk-ZWJTEKFP.js +0 -1
package/build/index.js
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
export{V as ActionCell,X as ActionIconColumn,T as ActionIconsVariants,c as ActionMenu,a as ActionMenuDropDown,b as ActionMenuItem,W as ActionsColumn,Ba as AgreementCell,Y as AgreementIcon,N as AmountCell,E as AmountCellContainer,P as AmountCellSheet,O as AmountCellText,Uc as AmountConversionFilter,K as AmountConversionTooltipLabel,Wb as AmountInput,Ub as AppServices,Xb as AppServicesBar,jb as ApplicationStatusCell,qb as AppsCell,Ca as AuthCell,_ as AuthIcons,Z as AuthSourceAnimation,Wa as AuthenticationCell,Rc as AuthenticationMode,Aa as AuthenticationModeBadge,Ma as AuthenticationStatusCell,Na as AuthenticationTypeCell,aa as AuthorizationAutoIcons,ba as AuthorizedIcon,p as AvatarStyled,k as BadgeWrapper,ta as BalanceCell,ua as BalanceCellSheet,Ha as BankCell,Ua as BankReferenceCell,cb as BrandCell,Yb as BrandLogo,nb as BrandsCell,r as CaptureTextLabel,Oa as ChannelsCell,ab as ChargeStatus,ca as ChargeStatusIcon,Xa as CheckoutStatusCell,F as ConversionBadge,I as ConversionTooltip,J as ConversionTooltipRow,L as ConversionTypeLabel,yb as CopyImage,mc as CountriesItem,uc as CountryFilter,nc as CurrenciesItem,Sa as CurrencyCell,Tc as CurrencyFilter,M as CurrencyInfo,G as CurrencySpan,C as CustomerCell,D as CustomerCellSheet,vc as CustomerDropdown,wc as CustomerEmailForm,xc as CustomerFullInfoForm,da as CustomerInitiatedIcon,yc as CustomerPhoneNumberForm,z as DateCell,Sc as DateFilter,y as DateViewer,H as DecimalSpan,pa as DestinationCell,qa as DestinationCellSheet,ra as DestinationCellText,na as DestinationIcon,Ka as DestinationStatusCell,oa as DeviceCell,fa as DeviceIconChip,gc as DiscountDropdown,fc as DiscountRateDropdown,ga as DisputeIcon,Lc as DownloadButton,Kc as DownloadIconButton,Pa as DueDateCell,ib as EntityCell,Ac as FileInputPreview,Hc as FilterCancelButton,jc as FilterDropdown,Fc as FilterFooter,Gc as FilterOkayButton,Ec as FilterTitle,Pb as FiltersRow,Fb as FiltersRowContainer,Gb as FiltersRowWrapper,zb as FlagDetails,i as GeographyBox,ea as GeographyIcon,U as IDButton,pc as ID_SEPERATOR,o as IdButtonContainer,mb as IndividualsCell,Ya as IntentsStatusCell,_a as InvoiceStatusCell,ha as IssuerIcon,Vb as LanguageDropdown,rb as LeadStatusCell,vb as LinkCell,Yc as ListColumnFilter,lb as MarketPlaceCell,zc as MerchantCurrencyDropdown,kc as MerchantItem,ic as MerchantLogo,Cc as MerchantsDropdown,sc as MerchantsFilterItem,db as MetadataCell,A as OrderCell,B as OrderCellSheet,xb as OrdersCellSheet,Vc as PartnersFilter,sb as PaymentAgreementCellSheet,wa as PaymentCardNumberSource,Pc as PaymentInitiated,xa as PaymentMethodSource,Nc as PaymentMethods,za as PaymentSchemeSource,Oc as PaymentSchemes,Qc as PaymentSourceFilter,ya as PaymentTypeSource,Ta as PayoutDateCell,ia as PayoutIcon,eb as PayoutReportCell,Ia as PayoutStatusCell,tc as PhoneFilter,x as PiePercentage,Qa as ProductsCell,tb as ProviderCell,ub as PurposeCell,Tb as RangeCalender,fb as ReceiptCell,gb as ReceiptCellSheet,hb as ReceiptCellText,Bc as ReceiptsViewer,Va as ReferenceCell,Xc as ReferenceTypeFilter,Za as RefundChargeCell,ja as RefundIcon,Ea as RefundStateIcon,Fa as RefundStatusCell,Da as RefundStatusIcon,Ja as RefundTooltipView,lc as RetailersItem,ob as SalesChannelCell,pb as SalesChannelCellSheet,Wc as SalesChannelFilter,kb as SegmentsCell,bd as SelectedState,va as SourceCell,la as SourceIcon,ma as SourceIcons,m as StarBadgeWrapper,Eb as StatusButtonsContainer,Q as StatusCell,u as StatusCellContainer,R as StatusCellSheet,S as StatusCellText,Ic as StatusFilter,w as StatusIcon,v as StatusIconWrapper,t as StyledTextTableCell,d as TITLE_BAR_HEIGHT,h as TableCell,Sb as TableHeader,Bb as TableHeaderContainer,Db as TableHeaderRow,Cb as TableHeaderTitle,Rb as TableHeaderWrapper,Mc as TableReports,q as TextLabel,Ra as TextTableCell,$a as TextWithBadgeCell,wb as TextWithChipCell,l as TimeZone,Ab as TitleContainer,bb as TokenStatusCell,Zb as TotalAmount,hc as TotalDiscount,cc as TotalVAT,j as TransparentButton,dd as TreeDropdown,oc as TreeLevel,cd as TreeManager,bc as VATDropdown,ac as VATRateDropdown,$c as VerificationIcon,ad as VerificationIconWithBg,Dc as ViewColumnRadioFilter,$ as VoidAutoIcon,s as VoidTextLabel,Ga as WalletCell,g as WindowSideBar,La as authenticationStatusIcons,Mb as convertTemplateToColumnsView,Nb as convertTemplatesToColumnsView,rc as createTreeDefinitions,sa as generateDestinationTooltip,qc as generateIdFromParts,Jb as getColumnOrder,dc as getDiscountValue,ec as getItemDiscount,$b as getItemVat,ka as getPaymentMethodKey,Ib as getSubmenuFromTemplateLayout,_b as getVatValue,Kb as handleTemplateUpdate,Hb as mapColumnsToLayoutSection,Zc as statusIcon,_c as statusIconBG,Lb as templateToViewMenuItem,Ob as useCustomTableViews,Jc as useDownloadReport}from'./chunk-WGPV3VEK.js';export{c as ColumnFilter,b as Inputs,s as LastRowContent,z as ListItemWrapperWithCard,p as RowErrorState,_ as SheetViewVirtualTable,g as StyledCell,t as StyledItemWrapper,n as TableError,j as TableLastItem,l as TableLoading,w as TableLoadingWithCard,o as TableNoData,x as TableNoDataWithCard,q as TableRow,k as TableRowLoading,v as TableRowLoadingWithCard,y as TableRowWithCard,d as VirtualScrollInner,f as VirtualScrollList,e as VirtualScrollOuter,u as VirtualTable,i as VirtualTableHeader,A as VirtualTableWithCard}from'./chunk-5ZTIXOFI.js';export{c as ListItem,d as Widget,a as WidgetHeader,b as WidgetList}from'./chunk-RUU3IQ7Y.js';export{a as Window}from'./chunk-3EU4NGZ7.js';export{a as WindowBackdrop}from'./chunk-WX7HFBCU.js';export{b as ToggleView,a as ToggleViews}from'./chunk-KM4UT2GM.js';export{a as TooltipChip}from'./chunk-ZTHZGDV6.js';export{a as Toaster}from'./chunk-FQXBL3YF.js';export{a as ToggleButtons}from'./chunk-CTBYQDKG.js';export{a as StatusGroupChips}from'./chunk-JQYBCTVW.js';export{h as StatusLabel}from'./chunk-7NYF2UBV.js';export{a as ScrollLoader}from'./chunk-ARHJB5QJ.js';export{a as SearchButton}from'./chunk-XY57JRPE.js';export{a as SearchListInput}from'./chunk-BV5VAMBI.js';export{j as SelectWithSearch}from'./chunk-LONKQ3XM.js';export{a as SplashScreen}from'./chunk-66JBLKME.js';export{a as TapLogo}from'./chunk-24UTRGGG.js';export{a as StatusBar}from'./chunk-VNK7I7AL.js';export{a as ResizableHeightInput}from'./chunk-CQT4MCPB.js';export{a as RightLeftExpandingCenterChip}from'./chunk-GPFU7WD4.js';export{a as PrivateRoute,b as PublicRoute}from'./chunk-DYWKQE3E.js';export{a as Sandbox}from'./chunk-WGCHJPEZ.js';export{a as ProgressBar}from'./chunk-JT54SXJ7.js';export{a as ProgressRing}from'./chunk-ZWJTEKFP.js';export{a as DefaultForm,b as FormInput,e as FormSelect,h as MultiSelect,c as PhoneInput,g as SelectWithAccordion,f as Switch,i as useRFHForm}from'./chunk-2FDPAJY4.js';export{a as SelectDropdown}from'./chunk-544TDVOA.js';export{a as RadioGroup}from'./chunk-4O4EFXIC.js';export{a as RadioButton}from'./chunk-X5KEG2KP.js';export{a as MultiDatakeyDonut}from'./chunk-IXQ7Y6Y5.js';export{a as MultiSelectDropdownButton}from'./chunk-F4KVGV4T.js';export{e as List}from'./chunk-ZUBHIDDI.js';export{a as MultiSelectStatusButton}from'./chunk-FAYAV46R.js';export{a as ChildMenuItem,c as MultiSelectWithSearch,b as ParentMenuItem}from'./chunk-6DLPM4RB.js';export{b as Dropdown,c as NestedDropdown,a as NestedMenuItem}from'./chunk-XQVSYDRO.js';export{a as NoInternet}from'./chunk-ZN4NGPK4.js';export{a as OTPInput}from'./chunk-V44MUKYW.js';export{a as OpenFileInNewTab}from'./chunk-ZMTLSAZW.js';export{a as MUIThemeProvider}from'./chunk-TG2IA55S.js';export{a as MainContainer}from'./chunk-ZLWJCX4K.js';export{a as MaskedText}from'./chunk-T3BFBXVJ.js';export{a as LazyImage}from'./chunk-TZAF2TGI.js';export{a as LeftPeekRightExpandingChip}from'./chunk-AMMCJJFH.js';export{a as ListLayout}from'./chunk-D4S6DH7W.js';export{a as Loader}from'./chunk-MTJECG6U.js';export{a as Loaders,a as TapLoader}from'./chunk-QF32XNU6.js';export{a as MFWidgetLoader}from'./chunk-V5OHALLD.js';export{a as Input}from'./chunk-LDIEOZVR.js';export{f as AmountInputBase,d as CountriesList,a as InputBase,e as PhoneInputBase,c as SelectBase,b as SelectBaseMultiple}from'./chunk-NLOKMDQY.js';export{d as CountriesDropdown,a as FileInput,c as InputNumberStyled,b as MobileWrapper,f as SearchInput,g as Select}from'./chunk-OLPNHTE7.js';export{a as FooterButton,b as JSONTitleBar,g as JSONViewer,d as JSONViewerList,c as JsonViewerDialogContext,e as JsonViewerDialogContextProvider,f as useJsonViewerContext}from'./chunk-UF4FBI5V.js';export{c as TableFooter}from'./chunk-OJJ2Q5XK.js';export{a as FlippingCard}from'./chunk-RQ2V5JZH.js';export{b as HeatMap}from'./chunk-QFMHEDCR.js';export{a as Skeleton}from'./chunk-34II3WB7.js';export{a as IOSSwitch}from'./chunk-2Q6H6K3P.js';export{a as IconGallery}from'./chunk-XZORYOIS.js';import'./chunk-BTANFCN2.js';import'./chunk-YTBVTQNQ.js';import'./chunk-LLPG2AC6.js';export{g as CloseIconWrapper,c as Content,f as FileIconWrapper,a as FileItem,h as FilePreview,b as FileWrapper,e as TextWrapper,d as Upload}from'./chunk-LMKY6Q27.js';export{a as FileUpload}from'./chunk-OFBKWUDT.js';export{a as FileUploader}from'./chunk-NQVCWKMH.js';export{a as FilteredIds}from'./chunk-YVHYNRRL.js';export{a as DisplayAmount}from'./chunk-LOJTJZSX.js';export{a as DockButton}from'./chunk-DQ76BKNS.js';export{a as Dropdown2}from'./chunk-XRTET45W.js';export{a as MenuItem}from'./chunk-LDZG7EXA.js';export{b as DropdownButton,a as DropdownChevronIcon}from'./chunk-NLEKLEHC.js';export{a as Error}from'./chunk-B4QKXIT7.js';export{a as AppError,b as ErrorBoundary}from'./chunk-IBPFWRCW.js';export{a as ErrorToast}from'./chunk-FL7ZDVP7.js';export{a as ExpandableSideBar}from'./chunk-23C4BLEJ.js';export{a as CurrencySymbol}from'./chunk-7A7PBYFB.js';export{a as DateButton}from'./chunk-J72TLM2F.js';export{a as StatusButton}from'./chunk-HRHKLBHG.js';export{a as ChevronIcon}from'./chunk-ABDRIOU6.js';import'./chunk-YLE4Q6WH.js';export{f as DropdownMenu,e as StyledIconForDropDown,d as StyledMenuTitle,b as StyledOption,a as StyledSelect,c as StyledSelectComponent}from'./chunk-D5EB3ZRT.js';export{a as DEVICE_ICON,c as DeviceIcon,b as isDeviceIconShown}from'./chunk-BNUBHZV7.js';export{e as Dialog,d as DialogToolbar}from'./chunk-3ABTBVXY.js';export{a as ColorPicker}from'./chunk-AUM6AR3E.js';export{e as ConfirmDialog,b as ConfirmDialogContext,c as ConfirmDialogProvider,a as SimpleDialog,d as useConfirmDialog}from'./chunk-4A6Z3DYW.js';import'./chunk-TUTEF6YD.js';export{a as ControlPanelContainer}from'./chunk-PX7SYRBV.js';export{a as BadgeVariants,d as CountAnimatedBadge,e as CountBadge,c as paymentSourceAnimation}from'./chunk-2T2Z5RPJ.js';export{b as Button,a as PlusButton}from'./chunk-SZBR7LB3.js';export{a as StyledButton}from'./chunk-NLAQMZT4.js';export{a as Tooltip}from'./chunk-E6XVMA37.js';export{a as Calender}from'./chunk-JWC3XDE4.js';export{j as Timepicker}from'./chunk-UB5L7C6S.js';export{a as InputNumber}from'./chunk-JYJ3D2X6.js';export{a as Menu}from'./chunk-ZCSUNBRA.js';import'./chunk-A5FGRP2T.js';export{a as CardEmptyState}from'./chunk-62CGUEB4.js';export{a as CardHeadline}from'./chunk-DJYRLVOD.js';export{a as Checkbox}from'./chunk-GMRNI4U5.js';export{a as Chip,b as GroupIconChip,c as GroupIconChips}from'./chunk-VJLQXTHX.js';export{a as ImageWrapper}from'./chunk-L3M6OM4B.js';export{a as CircularProgressWithLabel}from'./chunk-S2BQCMBY.js';export{a as Collapse}from'./chunk-QGXXI4EO.js';export{b as AppServicesActionMenu,a as ServicesSubmenu}from'./chunk-NLPYBEGY.js';export{a as CustomBackdrop}from'./chunk-M7YGOEQF.js';export{i as AccountHeaderTitle,o as AppWindow,a as AppWindowContext,b as AppWindowContextProvider,q as AppWindowHeader,r as AppWindowWrapper,d as LEFT_SIDEBAR,e as RIGHT_SIDEBAR,m as StyledFooter,n as StyledHideButton,j as StyledMenuLink,k as StyledSubmitButton,l as SubmitButtonWrapper,g as VIEWER_HEIGHT,f as VIEWER_WIDTH,c as animationDuration}from'./chunk-GF7D4WGP.js';export{a as StyledHeaderWrapper,c as StyledHeaderWrapperStyled,e as Toolbar,d as WindowAppIcon}from'./chunk-6ZPCHYOF.js';export{a as CloseIcon,d as ExpandButton,c as MaximizeIcon,b as MinimizeIcon}from'./chunk-GI3U6XGW.js';export{a as AuthenticationTypeChip}from'./chunk-3A4B5D6T.js';export{a as Autocomplete}from'./chunk-24XGEJR2.js';export{b as BackgroundAnimation}from'./chunk-UEMTPYYH.js';export{a as BetaBanner}from'./chunk-BFGMD3VQ.js';export{a as AccountDropdown}from'./chunk-EAUWAY4T.js';export{a as Text}from'./chunk-5AIEKGEA.js';export{c as ActivityAreaChart,a as ChartTooltip,b as LoadingChart}from'./chunk-MYFLXP7G.js';export{a as CountryFlag}from'./chunk-G6N4V3PP.js';export{a as AmountStatusChip}from'./chunk-P6K4PD7Y.js';export{b as StatusChipWithCopy}from'./chunk-XUDGW7IY.js';export{a as StatusChip}from'./chunk-2LMLVUW4.js';export{a as AnimatedSpinnerIcon}from'./chunk-KGQT7R3W.js';export{d as useActionMenu,m as useAppEventListener,l as useAppEventPublisher,k as useAppsInfo,e as useBadgesCount,f as useCheckUserLoggedIn,j as useCountdown,c as useDelayToSetValue,b as useMouseState,q as useNetworkState,p as useScrolledTo,n as useSelectedMerchantDetails,h as useStickyHeaderShadow,g as useTableViews,i as useThemeMode,o as useToast,a as useWindowDimensions}from'./chunk-XXZJ5D5P.js';export{Qc as DEFAULT_SKELETON_WIDTHS,Ec as SELECTION_COLORS,Ja as api,cc as backendErrorHandler,nb as calculateMaxAllowedRows,Ab as capitalizeFirstLetter,Eb as capitalizeString,F as changeDateTimezone,Ia as clearTapOsLocalStorage,Ua as conversionTypesLabels,D as convertCalendarDateToUTC,db as convertToNumber,E as convertUTCtoLocalDate,zb as copyText,Va as currencyConfig,Cc as encryptDataWithPublicKey,Qb as extractIdsFromRowData,Rb as filterShownColumns,$a as formatAmount,ab as formatAmountWithCurrency,J as formatCellDate,_a as formatCurrencyWithInput,K as formatDate,hb as formatFlagDate,p as formatNumber,o as formatOrdinal,gb as formatPayoutDate,ib as formatRefundPayoutDate,R as formatRelativeTimeWithinHour,z as formatUTCOffset,h as generateArray,Ib as generateChargeErrors,G as generateDayList,H as generateMonthList,O as generatePastYearList,xb as generateRandomString,sc as generateReportLocalStorageKey,Rc as generateSkeletonColumns,yb as generateUniqueUUID,I as generateYearList,yc as geographyMap,v as getAmountPlaceholder,dc as getApp,Mb as getAppIconUrl,Nb as getAppToolbarIconUrl,Oa as getBrowserName,Y as getBusinessSegmentConfig,wa as getCalenderTimezone,xa as getCalenderTimezoneHistory,Fb as getCardNumber,mb as getCellWidth,Kc as getColumnWidth,lb as getColumnWidthPercentage,cb as getConversion,eb as getCountryNameByISO,mc as getCustomerNameByLang,U as getDateLabel,x as getDatePickerFormat,A as getDefaultDateRange,W as getDefaultEntityCountry,zc as getDefaultInvoiceInfo,wb as getFirstChar,Bc as getFlagDetails,xc as getGeographyBoxColor,Ba as getGlobalTableModeStorage,w as getGreetingMessageId,La as getHeaders,pc as getIdentificationTypeList,Ac as getLocalizedUnitLabel,na as getLoggedInUserActiveSegment,la as getLoggedInUserData,ha as getLoggedInUserJwtToken,ma as getLoggedInUserSegment,Hb as getMaskedCard,hc as getMerchantCurrencies,gc as getMerchantIds,kc as getNameText,ea as getNavigationData,_ as getNonBusinessSegmentConfig,Dc as getOrderedWeekDays,Gb as getPaymentMethodWithId,vc as getPaymentTypeKey,jb as getPayoutDetails,Wb as getPhoneDetails,sb as getPossibleActionNavigationView,Ga as getPreviewStorage,Sc as getProcessedColumns,Qa as getRandomColor,Ra as getRandomGradientColor,kb as getRefundDetails,N as getRelativeTime,ra as getReportRecord,u as getRoundedAmount,Gc as getRowSelectionBorderStyles,aa as getSecretKey,X as getSegmentData,Fc as getSelectionStyles,ec as getService,Ic as getSheetViewColumns,Ea as getSheetViewColumnsStorage,bb as getSupportedCurrencies,jc as getTextByLang,C as getTimestampByTimezone,Mc as getTimezoneByCountryCode,Nc as getTimezoneByTimezone,y as getUTCOffset,B as getUTCTimestamp,m as getUniqueListBy,lc as getUsername,M as getValueOfEndOfDay,L as getValueOfStartOfDay,i as groupBy,Xb as handleFileDownload,Zb as handleTableRowsDownload,Yb as handleURLDownload,$b as hasError,Za as hasOnlyOneDigitAfterDecimal,Sa as hexa2Rgba,Wa as intlCurrency,ic as isArabic,Ya as isDecimalWithOneDigit,Kb as isEmptyValue,rc as isFile,ob as isHeightNotFullyFilledByRows,Ob as isInsightService,Xa as isIntegerAmount,oa as isJwtTokenExpired,t as isNegative,_b as isNetworkError,bc as isNotFoundError,Sb as isParameterSelected,Pa as isSafariBrowser,wc as isSamePaymentSource,fb as isSaudiArabia,Z as isSegmentActLikeBusinessSegment,pb as isTableDefaultMode,qb as isTableSheetMode,rb as isTableTextMode,ac as isTimeoutError,S as isTodayDate,pa as isUserLoggedInAndJwtTokenExistsAndNotExpired,V as isValidDate,Q as isWithinTimeAgo,T as isYesterdayDate,Tb as mapDataToViews,Ub as mapViewsToData,Cb as maskValue,vb as matchOccurrence,r as numberToString,oc as openFreshDeskChat,fc as openNewAppAttrs,tc as openNewTab,uc as openUrl,s as pad,Bb as percentageToNumber,qc as readableFileSize,Pb as removeAllCharsFromNumber,ta as removeAppVersion,ya as removeCalenderTimezone,za as removeCalenderTimezoneHistory,ca as removeConnectMetaData,Ca as removeGlobalTableModeStorage,ja as removeLoggedInUserData,ia as removeLoggedInUserJwtToken,fa as removeNavigationData,ub as removePrefixFromString,Ha as removePreviewStorage,sa as removeReportRecord,ba as removeSecretKey,l as removeUndefinedArrayElements,Lb as removeUndefinedArrayValues,Jb as removeUndefinedValues,Na as resumeNetworkRequests,Ta as rgba2Hexa,P as secondsToTimeString,Ka as setApiToken,ua as setCalenderTimezone,va as setCalenderTimezoneHistory,Lc as setColumnWidth,nc as setFreshDeskProperties,Aa as setGlobalTableModeStorage,ka as setLoggedInUserData,ga as setLoggedInUserJwtToken,da as setNavigationData,Fa as setPreviewStorage,qa as setReportRecord,$ as setSecretKey,Jc as setSheetViewColumns,Da as setSheetViewColumnsStorage,k as sortByString,j as sortList,Ma as stopeNetworkRequests,Hc as stringToBoolean,q as stringToNumber,Oc as transformPaymentMethodsData,Pc as transformPaymentSchemesData,Db as transformStringToProperCase,Vb as updateColumnSelection}from'./chunk-DQLGJFLX.js';import'./chunk-EDMW226P.js';export{f as appTheme,a as components,c as darkPalette,b as lightPalette,d as shadows,e as typography}from'./chunk-5QGYWOQI.js';export{i as ACCOUNT_SECTION,j as AppEvent,h as ChargeBreakDownType,f as CurrencyCodes,k as DISCOUNT_TYPE,b as LanguageMode,c as RECURRENCE_TYPE,m as ReportStatusEnum,g as SEGMENT_CODE,d as SEND_INVOICE,e as SalesChannelTypes,l as StatusValue,a as ThemeMode}from'./chunk-7IW25XZP.js';export{a as AccordionAdapter}from'./chunk-WHWKA4SY.js';export{a as Icon}from'./chunk-HBY2XKKF.js';export{cl as ACCEPTANCE_TIMEZONE,Oa as AIOverviewIcon,Ik as API_BASE_LIMIT,Jk as API_LIST_CONSTANTS,Dk as API_URL,yk as APP_CODES,zk as APP_DIMENSIONS,Ak as APP_ICONS,tk as APP_WINDOW_Z_INDEX,Gl as AUTHENTICATION_LABEL,Fl as AuthenticationModeType,Ck as BASE_URL,Hl as BUSINESS_COUNTRIES,Cl as BUSINESS_DOCUMENT_TYPE_MAP,xk as BUSINESS_FUNCTIONS,gl as CATEGORIZED_CURRENCY_CODES,Il as CHECKED_ICON,dl as COUNTRIES_TIMEZONES,X as ChallengeIcon,pl as DATA_KEY,ql as DATA_KEY_LABEL,o as DirhamIconImage,Ek as ENV,vk as FOOTER_HEIGHT,W as FrictionlessIcon,uk as HEADER_HEIGHT,Bd as HSBCBankIcon,Ef as MPGSProviderIcon,Ff as NETCETERAProviderIcon,tl as PAYMENT_INITIATED_CUSTOMER_KEY,ul as PAYMENT_INITIATED_MERCHANT_KEY,vl as PAYMENT_INITIATED_OPTIONS,sl as PAYMENT_TYPES,rl as PAYMENT_TYPES_ICONS,yl as RATES,Bl as REPORTS_APPS,zl as REPORT_FILTER_TYPES,yb as RadioButtonCheckedIcon,zb as RadioButtonUncheckedIcon,n as SARIconImage,wl as SEGMENT_TYPE_FILTERS_MAP,wk as SERVICE_COMMON_FUNCTIONS,ml as SHEET_VIEW_TABLE_LIST_OVER_SCAN,ol as SHEET_VIEW_TABLE_ROW_HEIGHT,nl as SHEET_VIEW_TABLE_THRESHOLD,fl as SUPPORTED_CURRENCY_CODES,el as SUPPORTED_CURRENCY_DETAILS,yc as SandboxDefault,xc as SandboxHovered,Wc as SandboxHoveredLightIcon,il as TABLE_CONTENT_ROW_HEIGHT,ll as TABLE_LIST_OVER_SCAN,hl as TABLE_LOADING_ROW_HEIGHT,jl as TABLE_ROW_HEIGHT,kl as TABLE_THRESHOLD,Gf as TAP3DSPROVIDERIcon,Fk as TEST_SECRET_KEY,bl as TIMEZONES,Jl as UNCHECKED_ICON,p as abandonedIcon,Vf as abandonedNoBGIcon,Ye as abandonedTableIcon,q as abandonedYellowIcon,ic as acceptanceAppDisabledIcon,ec as acceptanceAppIcon,gc as acceptanceBlueIcon,nc as acceptanceDisabledRoundedIcon,fc as acceptanceEnabledIcon,Kg as acceptanceWindowIcon,Ua as acceptedFlag,uc as accountAppIcon,Rg as accountWindowIcon,bb as acquirerIcon,fb as acquirerOrangeIcon,db as acquirerRedIcon,Wb as actionFailIcon,Xb as actionSuccessIcon,$g as actionsIcon,yh as activeActionIcon,Wj as activeGreenIcon,oe as activeLeadStatusIcon,fj as addIconWhite,ah as addItem,Gh as addItemIcon,xb as addidasIcon,Dg as agreementInstallmentIcon,Cg as agreementOrderIcon,Eg as agreementSavedCardIcon,Fg as agreementSubscriptionIcon,El as allAuthenticationStatuses,Hi as androidAppIcon,He as androidIcon,b as appBaseUrl,mk as appPlatformSubSegmentIcon,Q as applePayIcon,zg as appsGridIcon,Te as arcIcon,uj as archievedOutlined,Ph as archivedVerifyIcon,bh as attachIcon,Eh as attachIcon2,pd as attentionIcon,lf as authenticatedIcon,Bf as authenticatedSuccessIcon,oc as authenticationAppIcon,bg as authenticationAppTypeIcon,qf as authenticationAttemptedIcon,cg as authenticationBiometricIcon,sf as authenticationDeclinedIcon,dg as authenticationDeviceIcon,uf as authenticationExemptedWithTransactionIcon,tf as authenticationExemptedWithoutTransactionIcon,vf as authenticationFailedIcon,kf as authenticationFailedTableIcon,qk as authenticationGatewaySubSegmentIcon,wf as authenticationInitiatedIcon,eg as authenticationIssuerIcon,rf as authenticationNoAuthIcon,Cf as authenticationPendingIcon,fg as authenticationSchemeIcon,xf as authenticationUnavailableIcon,yf as authenticationUndeterminedIcon,ag as authenticationWalletIcon,Tg as authenticationWindowIcon,Af as authenticationWithTransactionIcon,zf as authenticationWithoutTransactionIcon,Kk as authenticationsTableCellWidth,jj as authorizationServiceIcon,Lk as authorizationTableCellWidth,Ei as authorizedIcon,ji as autoCapturedIcon,ki as autoVoidIcon,Zi as babyBlueCheckIcon,Ed as backButtonLeftIcon,L as bahrainIcon,Qb as bankIcon,$i as bankNoteIcon,bc as billingAppIcon,pk as billingPlatformSubSegmentIcon,Mg as billingWindowIcon,Uh as biometricIcon,bj as blackBrushIcon,Ic as blackHeadingDownArrow,Cj as blackLinkIcon,Lj as blackMobileBatteryIcon,Mj as blackMobileSignalIcon,jb as blackRightArrowIcon,Dj as blackSettingsIcon,_j as blackSettingsVariant2Icon,Qj as blackUnLinkIcon,Ej as blackWallet,ve as blueAppsIcon,xg as blueArrowUpIcon,Cc as blueCheckIcon,Hh as blueCircleCheckIcon,yg as blueCircleLoaderIcon,sk as blueCircleWithWhiteCheckIcon,Bj as blueCopyIcon,Kc as blueDropdownArrowIcon,Fj as blueGradientBrushIcon,Jc as blueHeadingDropdownArrow,Zj as bluePlusIcon,Jh as blueVerifyIcon,Bb as blueZigzagCheckIcon,Gg as brandPlaceholderIcon,ij as brandServiceIcon,Se as braveIcon,Mc as businessSegmentIcon,tc as businessesAppIcon,Sg as businessesWindowIcon,U as buyNowPayLaterIcon,ii as calenderIcon,li as cancelledIcon,sa as cancelledInvoiceIcon,Ia as cancelledNoBgIcon,fe as cancelledStatusIcon,Ze as cancelledTableIcon,gb as capturedAuthorizeIcon,ba as capturedDropdownIcon,mi as capturedIcon,_e as capturedTableIcon,N as cardIcon,vg as cardViewButtonIcon,R as cashIcon,aa as chargeBackIcon,$ as chargeBackRequestedIcon,af as chargeBackRequestedTableIcon,$e as chargeBackTableIcon,Pj as chargeBackWhiteIcon,Mk as chargeTableCellWidth,kj as chargebacksServiceIcon,lj as chargesServiceIcon,Be as chatDisabledIcon,qb as checkIcon,Yb as checkMarkIcon,tb as checkboxIcon,Nf as checkoutStatusBlueIcon,Mf as checkoutStatusIcon,Of as checkoutWithMarkStatusIcon,r as chevronDownIcon,ld as chevronGrayIcon,kd as chevronWhiteIcon,Oe as chromeIcon,Ue as chromiumIcon,Ob as clearCoinIcon,Va as clearIcon,Ig as clipboardIcon,Md as clockIcon,ab as closeCircle,Fa as closeIcon,vj as closeOutlinedCircle,rb as closeXIcon,ma as closedDisputeIcon,mb as closedFlagIcon,qe as closedLeadStatusIcon,Tj as closedOutlinedYellowCircle,Oh as closedVerifyIcon,ka as codeIcon,Fc as collapseArrowIcon,ch as collapseArrows,ud as collapseArrowsIcon,va as columnIcon,fi as columnResizeIndicatorIcon,ok as commercePlatformSubSegmentIcon,lk as commercialRegulatorSubSegmentIcon,rd as completedAcceptanceIcon,nf as completedBlackIcon,_ as completedIcon,pe as completedLeadStatusIcon,td as completedPayoutsIcon,bf as completedTableIcon,ja as copyIcon,Wh as createChargeIcon,ee as createdStatusIcon,Pd as csvIcon,dh as customerIcon,Ch as customerIcon2,sc as customersAppIcon,Ng as customersWindowIcon,Df as cyberSourceProviderIcon,Kh as darkBlueVerifyIcon,Ec as darkCheckIcon,ei as darkFilterIcon,Me as darkGreyTimezoneIcon,Sb as darkLeftArrowIcon,Tb as darkRightArrowIcon,Ga as dashedCheckIcon,wj as dashedOutlinedCircle,Pa as deMaximizeIcon,xj as deactivatedCircle,Ma as deactivatedIcon,Uj as deactivatedOrangeCircle,ni as declinedIcon,if as declinedNoBgTableIcon,cf as declinedTableIcon,Oj as deemaWithLabel,Sh as defaultCountryIcon,Th as defaultDeviceIcon,ce as deletedStatusIcon,ie as deliveredStatusIcon,oa as desktopIcon,df as destinationReversedTableIcon,t as destinationSolidIcon,jf as destinationSuccessTableIcon,ef as destinationWithoutBackgroundIcon,oi as destinationsIcon,mj as destinationsServiceIcon,Nk as destinationsTableCellWidth,Pc as developmentSegmentIcon,O as deviceIcon,_i as digitalReceiptIcon,Db as dimmedZigzagCheckIcon,we as disabledCardIcon,Dc as disabledCheckIcon,xe as disabledCodeIcon,eh as discountIcon,z as disputeIcon,ca as disputeResolvedIcon,ff as disputeResolvedTableIcon,ae as dollarSignIcon,Td as doneIcon,_d as dottedLine,pb as downArrowIcon,Bh as downArrowIcon3,de as draftStatusIcon,sb as dragIcon,fd as dueDateBlackIcon,bd as dueDateBlueIcon,gd as dueDateGrayIcon,cd as dueDateOrangeIcon,ed as dueDateRedIcon,dd as dueDateYellowIcon,Qe as edgeIcon,Kf as editIcon,E as egyptFlagIcon,ea as ellipsisHorizontalIcon,gh as emailBlackIcon,Xc as emailChannelIcon,fh as emailIcon,_f as emptyIcon,Nj as emptyMobileWifiIcon,xl as emptyStatusChipColors,nj as entityServiceIcon,_h as entityTimezoneIcon,K as europeFlagIcon,Ce as exclamationDarkIcon,Ee as exclamationErrorIcon,ya as exclamationGreyIcon,yj as exclamationOutlinedCircle,Vj as exclamationOutlinedOrangeCircle,De as exclamationWarningIcon,$j as exclamationWhiteIcon,Bk as excludedApps,ih as expandArrows,vd as expandArrowsIcon,id as expiredIcon,ta as expiredInvoiceIcon,re as expiredLeadStatusIcon,Ja as expiredNoBgIcon,ge as expiredStatusIcon,P as expressCheckoutIcon,Fd as eyeHideIcon,Gd as eyeShowIcon,pi as failedIcon,hf as failedNoBgTableIcon,gf as failedTableIcon,jh as feeIcon,bi as fileDownloadBlueIcon,ci as fileDownloadGreyIcon,Oc as financialSegmentIcon,Pe as firefoxIcon,y as flagIcon,c as functionBaseUrl,Gj as gadientLink,eb as gatewayIcon,qi as gatewayOrangeIcon,ri as gatewayRedIcon,_c as genericIcon,cb as genericIconNew,l as getAuthorityIcon,m as getBrowserIcon,h as getCountriesIcon,k as getCurrenciesIcon,e as getLightUrlIcon,g as getPaymentIssuersIcon,f as getPaymentMethodsIcon,i as getServiceFunctionIcon,j as getStatusIcon,Hj as gradientSettings,Ij as gradientWallet,Sc as grayBrandIcon,Bg as grayCloseIcon,ob as grayFlagIcon,zh as grayProductLabel,Hc as grayUpArrowIcon,Lh as grayVerifyIcon,xd as greenArrowLeftIcon,wd as greenArrowRightIcon,yd as greenArrowUpIcon,Aj as greenCheck2ACE00,la as greenCheckIcon,Fe as greenCheckV2Icon,Mh as greenVerifyIcon,Cb as greenZigzagCheckIcon,Je as greyAppleIcon,Ac as greyCheckIcon,Bc as greyCrossIcon,Le as greyDesktopIcon,hj as greyDownArrowIcon,Lc as greyDropdownIcon,Ke as greyLocationIcon,If as greyMinusIcon,Hf as greyPlusIcon,B as greyTimezoneIcon,gj as greyUpArrowIcon,Za as hideIcon,Rb as hijriIcon,gi as homeIcon,Ii as iOSAppIcon,Ra as ibanIcon,ia as idIcon,Xj as inActiveGreyIcon,qd as initialAcceptanceIcon,sd as initialPayoutsIcon,Fi as initiatedIcon,Rf as intentCancelledStatusIcon,Pf as intentExpiredStatusIcon,Qf as intentInitiatedStatusIcon,Sf as intentTransactedStatusIcon,tj as intentsServiceIcon,Ok as intentsTableCellWidth,ra as invoiceIcon,ga as invoiceIdIcon,ua as invoiceNumberIcon,oj as invoiceServiceIcon,Pk as invoicesTableCellWidth,Ge as iosIcon,G as jordanFlagIcon,Uc as jsonBlackIcon,Tc as jsonIcon,I as kuwaitFlagIcon,Fh as lateFeeIcon2,ye as layersIcon,Wd as leadAppIcon,Xd as leadTitleIcon,Ae as leadWhiteIcon,Qk as leadsTableCellWidth,H as lebanonFlagIcon,Rc as lightPlatformSegmentIcon,a as lightUrl,hh as linkTiltedIcon,Rh as listShadowBg,wg as listViewButtonIcon,hi as lockIcon,Zb as logOutIcon,Tf as longWordsIcon,Ab as macIcon,Jj as manyCurrencyCoin,Kj as manyCurrencyCoinGradient,Fb as marketPlaceBlackIcon,Eb as marketPlaceBlueIcon,Gb as marketPlaceDimmedIcon,Da as maximizeIcon,hb as merchantInitiatedIcon,ek as merchantServiceProviderSubSegmentIcon,$k as merchantsTableCellWidth,Lb as messageIcon,di as metaIcon,Ea as minimizeIcon,kh as minusIcon,pa as mobileIcon,Kb as moneyInDimmedIcon,Jb as moneyInIcon,Ib as moneyOutDimmedIcon,Hb as moneyOutIcon,cj as mutedOutlinedCheckIcon,Yi as navigationIcon,ej as navigationPointerBlack,te as newFileIcon,xh as newInvoiceIcon,dc as newReceiptIcon,Xa as newWindowIcon,Jg as noAgreementIcon,Jf as noPreviewIcon,md as notVerifiedIcon,lh as noteIcon,Dh as noteIcon2,V as openBankingIcon,na as openDisputeIcon,lb as openFlagIcon,Re as operaIcon,kb as orangeFlagIcon,Yd as orderAppIcon,Yc as orderIcon,Zd as orderWindowIcon,Rk as ordersTableCellWidth,zj as outlinedCircle,dj as outlinedPlatformIcon,Ha as outstandingIcon,Ka as paidNoBgIcon,of as paidOutFilterIcon,si as paidOutIcon,Wf as paidOutTableIcon,he as paidStatusIcon,S as passThruWalletIcon,$d as passwordDotsIcon,Nb as payStreamIcon,ik as paymentAcquirerSubSegmentIcon,kk as paymentFacilitatorSubSegmentIcon,bk as paymentGatewayProviderSubSegmentIcon,hk as paymentIssuerSubSegmentIcon,jk as paymentMethodSubSegmentIcon,fk as paymentProcessorSubSegmentIcon,gk as paymentSchemeSubSegmentIcon,ak as paymentTechnologySubSegmentIcon,ck as paymentTechnologyV2SubSegmentIcon,dk as paymentTerminalProviderSubSegmentIcon,jc as payoutAppDisabledIcon,mc as payoutDisabledRoundedIcon,kc as payoutEnabledIcon,lc as payoutGreenIcon,Sa as payoutIcon,pj as payoutServiceIcon,Og as payoutWindowIcon,qc as payoutsAppIcon,hc as payoutsGreenIcon,Sk as payoutsTableCellWidth,mh as pdfGrayIcon,Qd as pdfIcon,Qh as penIcon,Qa as pendingFlag,Mb as pendingIcon,ze as pendingOnTapIcon,Yf as pendingPayoutIcon,me as pendingStatusIcon,za as percentage0Icon,Ca as percentage100Icon,Aa as percentage50Icon,Ba as percentage75Icon,Ji as physicalLocationIcon,gg as pinIcon,Qc as platformSegmentIcon,Ah as plusQty,_b as preferencesIcon,kg as previewModeIcon,nh as productLabel,rc as protectAppIcon,Tk as protectAuthorizationsTableCellWidth,Uk as protectChargesTableCellWidth,vb as protectIcon,Pg as protectWindowIcon,Nc as providerSegmentIcon,oh as quantityIcon,_a as quitIcon,se as readyLeadStatusIcon,cc as receiptBillIcon,Yh as receiptIcon,Z as redArrowDownIcon,Nd as redCloseIcon,nb as redFlagIcon,Nh as redVerifyIcon,ui as refundInitiatedIcon,vi as refundSettledIcon,Vk as refundTableCellWidth,ti as refundedIcon,wi as refundedNotSettledIcon,ne as refundedStatusIcon,qj as refundsServiceIcon,La as refunededNoBgIcon,Ta as releasedFlag,be as reloadIcon,jd as remindedRedIcon,ph as removeAllItem,qh as removeItem,Vd as reportAppIcon,Ud as reportAppsIcon,Al as reportFilterTypesMap,Rd as reportIcon,x as reportsIcon,Sd as reportsIconOutlined,Ug as reportsWindowIcon,xi as restrictedIcon,nk as retailPlatformSubSegmentIcon,rk as retailerSubSegmentIcon,$f as reverseActionIcon,da as reversePayoutIcon,Xf as reversePayoutTableIcon,s as reversedIcon,ib as rightArrow,Ni as rightLightArrowIcon,ha as rowIdIcon,Ne as safariIcon,Kd as sandboxDefaultIcon,Jd as sandboxHoveredIcon,Ld as sandboxOrangeIcon,F as saudiArabiaFlagIcon,D as savedCardIcon,ke as savedStatusIcon,$h as savedTimezoneIcon,mf as scheduledFilterIcon,le as scheduledStatusIcon,Mi as searchBlueIcon,u as searchIcon,Qi as segmentDevelopmentHouseIcon,Oi as segmentInstitutionIcon,Pi as segmentTechnologyIcon,Hk as servicesTags,yi as settledIcon,zi as settlementInitiatedIcon,Uf as sheetViewIcon,Cd as shopifyBadgeIcon,We as slaProcessAppIcon,Xe as slaProcessWindowIcon,ai as smallBlueCheckIcon,Li as smallLeftArrowIcon,$c as smsChannelIcon,rh as smsIcon,Ki as socialLinksIcon,Sj as sortAscArrowIcon,wa as sortAzIcon,Rj as sortDescArrowIcon,Vc as sortIcon,xa as sortZaIcon,Vb as spinnerLoadingAnimatedIcon,Ub as spinnerLoadingIcon,$a as starIcon,T as storedValueWalletIcon,C as subscriptionIcon,Xh as successCheckIcon,ig as switcherIcon,sg as tableBackgroundLoader,tg as tableBlueArrowUpIcon,ug as tableBlueCheckMarkShadowedIcon,qg as tableLoadingSpinnerIcon,rg as tableLoadingSpinnerWhiteIcon,qa as tabletIcon,sh as taxIcon,ue as teamWindowIcon,Ri as terminalAppIcon,Wi as terminalBrushIcon,Xi as terminalBrushMuted,Ti as terminalCardPhone,aj as terminalDeviceFrame,Yj as terminalLinkVideo,Vi as terminalTypeIcon,Si as terminalWindowIcon,al as terminalsTableCellWidth,Vh as threeDSIcon,fa as threeDsIcon,Ai as timedOutIcon,hd as timerBlueIcon,A as timezoneIcon,Ui as toastPOSIcon,ac as tokenAppIcon,pg as tokenCardIcon,ng as tokenExpiredStatusIcon,og as tokenPendingStatusIcon,lg as tokenSavedStatusIcon,mg as tokenTransactedStatusIcon,Vg as tokensReportsIcon,Wk as tokensTableCellWidth,Qg as tokensWindowIcon,Na as topUpIcon,Xk as topupsTableCellWidth,th as totalAmountIcon,Zc as transactionIcon,$b as transformIcon,Ih as trashBinIcon,Dl as unAuthenticatedStatuses,v as unAuthorizedIcon,Bi as unAvailableIcon,Wa as unCapturedIcon,Gk as unCapturedStatuses,vc as unCheckedIcon,pf as unauthenticatedIcon,uh as unfocusRemoveItem,wb as unisoIcon,J as unitedArabEmiratesFlagIcon,M as unitedStatesFlagIcon,Ci as unknownIcon,hg as unpinIcon,Id as uploadBlueIcon,Hd as uploadIcon,Ve as userIcon,Zh as userTimezoneIcon,Hg as usersIcon,rj as usersServiceIcon,Dd as verifiedGreenBadgeIcon,nd as verifiedIcon,od as verifyReviewIcon,jg as verticalLineIcon,d as videosUrl,Ya as viewAllIcon,w as viewIcon,Lf as viewInvoiceIcon,je as viewedStatusIcon,Y as visaIcon,Di as voidedIcon,pc as walletAppIcon,Zk as walletDetailsTableCellWidth,Pb as walletIcon,sj as walletServiceIcon,_k as walletStatementTableCellWidth,Yk as walletTableCellWidth,Lg as walletWindowIcon,zc as warningInfoIcon,Gi as websiteBlueIcon,Ie as websiteIcon,ad as whatsappChannelIcon,vh as whatsappIcon,wh as whiteArrow2,Ad as whiteArrowLeftIcon,zd as whiteArrowRightIcon,Zf as whiteCloseIcon,Ag as whiteFilterIcon,ub as whitePlusIcon,wc as wifiOffIcon,Yg as windowBankIcon,Wg as windowBrandIcon,Xg as windowEntityIcon,Zg as windowIndividualIcon,_g as windowPasswordIcon,Gc as worldIcon,Od as xlsIcon}from'./chunk-OYEIM6ED.js';import'./chunk-RWXGVZUC.js';
|
|
1
|
+
export * from './constants';
|
|
2
|
+
export * from './hooks';
|
|
3
|
+
export * from './components';
|
|
4
|
+
export * from './utils';
|
|
5
|
+
export * from './types';
|
|
6
|
+
export * from './theme';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const components = {
|
|
2
|
+
MuiSvgIcon: {
|
|
3
|
+
styleOverrides: {
|
|
4
|
+
root: {
|
|
5
|
+
width: '0.8em',
|
|
6
|
+
height: '0.8em',
|
|
7
|
+
},
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
MuiButtonBase: {
|
|
11
|
+
defaultProps: {
|
|
12
|
+
disableRipple: true,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
MuiPopper: {
|
|
16
|
+
styleOverrides: {
|
|
17
|
+
root: {
|
|
18
|
+
zIndex: 1400,
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
};
|
package/build/theme/index.js
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './theme';
|
|
2
|
+
export * from './components';
|
|
3
|
+
export * from './palette';
|
|
4
|
+
export * from './typography';
|
|
5
|
+
export * from './shadows';
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
export const lightPalette = {
|
|
2
|
+
mode: 'light',
|
|
3
|
+
common: {
|
|
4
|
+
black: '#000',
|
|
5
|
+
white: '#fff',
|
|
6
|
+
blue: '#147DC5',
|
|
7
|
+
green: '#2ACE00',
|
|
8
|
+
purple: '#6D4BCB',
|
|
9
|
+
red: '#ff0000',
|
|
10
|
+
orange: '#DD702C',
|
|
11
|
+
lightOrange: '#FFF7F2',
|
|
12
|
+
lightPurple: '#4E1FD0',
|
|
13
|
+
},
|
|
14
|
+
text: {
|
|
15
|
+
primary: '#20232B',
|
|
16
|
+
textSecondary: '#9F9F9F',
|
|
17
|
+
},
|
|
18
|
+
grey: {
|
|
19
|
+
'50': '#FEFEFE',
|
|
20
|
+
'100': '#F2F2F2',
|
|
21
|
+
'200': '#002945',
|
|
22
|
+
'300': 'rgba(246, 248, 250, 0.8)',
|
|
23
|
+
'400': '#f9f9f9',
|
|
24
|
+
'500': '#8C9196',
|
|
25
|
+
'600': '#5C5C5C',
|
|
26
|
+
'700': '#8D8D94',
|
|
27
|
+
'800': '#E4E6E9',
|
|
28
|
+
'900': '#1D1B20',
|
|
29
|
+
A100: '#8d8d94',
|
|
30
|
+
A200: '#000014',
|
|
31
|
+
A400: '#C1C1C1',
|
|
32
|
+
A700: '#818181',
|
|
33
|
+
A800: '#1F222A',
|
|
34
|
+
},
|
|
35
|
+
primary: {
|
|
36
|
+
light: '#FCFCFC',
|
|
37
|
+
main: '#1D1E21',
|
|
38
|
+
dark: '#1D1E21',
|
|
39
|
+
},
|
|
40
|
+
background: {
|
|
41
|
+
default: '#fff',
|
|
42
|
+
highlight: 'rgba(117, 122, 135, 0.1)',
|
|
43
|
+
gradient: {
|
|
44
|
+
blueGreen: 'linear-gradient(180deg, #b4d9eb 0%, #cae4c5 100%)',
|
|
45
|
+
greenYellow: 'linear-gradient(180deg, #cae4c5 0%, #fffcbb 100%)',
|
|
46
|
+
yellowOrange: 'linear-gradient(180deg, #fffcbb 0%, #ffdbb1 100%)',
|
|
47
|
+
orangeRed: 'linear-gradient(180deg, #ffdbb1 0%, #ffc9c9 100%)',
|
|
48
|
+
redPurple: 'linear-gradient(180deg, #ffc9c9 0%, #ceb9e8 100%)',
|
|
49
|
+
purpleBlue: 'linear-gradient(180deg, #CEB9E8 0%, #B4D9EB 100%)',
|
|
50
|
+
shadedBlue: 'linear-gradient(270deg, #147DC5 0.67%, #3DA6E1 98.91%)',
|
|
51
|
+
darkShadedBlue: 'linear-gradient(256deg, #147DC5 0%, #3DA6E1 100%)',
|
|
52
|
+
darkToLight: 'linear-gradient(254deg, #101010 0.51%, #343740 49.67%, #101010 100%)',
|
|
53
|
+
error: 'linear-gradient(0deg, rgba(255, 0, 0, 0.14) 0%, rgba(255, 0, 0, 0.14) 100%), #FFF',
|
|
54
|
+
},
|
|
55
|
+
transparent: ['rgba(249, 249, 249, 0.80)', 'rgba(32, 35, 43, 0.60)', 'rgba(242, 242, 242, 0.50)'],
|
|
56
|
+
},
|
|
57
|
+
warning: {
|
|
58
|
+
main: '#F4BE4F',
|
|
59
|
+
light: '#E9DB94',
|
|
60
|
+
dark: '#E37B00',
|
|
61
|
+
},
|
|
62
|
+
error: {
|
|
63
|
+
light: '#FF0000',
|
|
64
|
+
main: '#FF3D00',
|
|
65
|
+
dark: '#EA611C',
|
|
66
|
+
},
|
|
67
|
+
success: {
|
|
68
|
+
light: '#BFEBB4',
|
|
69
|
+
main: '#2ACE00',
|
|
70
|
+
dark: '#76BB40',
|
|
71
|
+
},
|
|
72
|
+
divider: '#F2F2F2',
|
|
73
|
+
info: {
|
|
74
|
+
light: '#F4F9FD',
|
|
75
|
+
main: '#29b6f6',
|
|
76
|
+
dark: '#1F88D0',
|
|
77
|
+
},
|
|
78
|
+
action: {
|
|
79
|
+
hover: '#f5f5f5',
|
|
80
|
+
},
|
|
81
|
+
secondary: {
|
|
82
|
+
main: '#6D4BCB',
|
|
83
|
+
light: '#DDDDDD',
|
|
84
|
+
},
|
|
85
|
+
custom: {
|
|
86
|
+
50: '#e7f4fc',
|
|
87
|
+
100: '#FFF0DE',
|
|
88
|
+
200: '#E4F0F8',
|
|
89
|
+
300: '#FFECE5',
|
|
90
|
+
400: '#efefef',
|
|
91
|
+
500: '#FF7A00',
|
|
92
|
+
600: '#FFF5F2',
|
|
93
|
+
700: '#128C7E',
|
|
94
|
+
800: '#0085FF',
|
|
95
|
+
900: '#3BC84F',
|
|
96
|
+
},
|
|
97
|
+
};
|
|
98
|
+
export const darkPalette = {
|
|
99
|
+
mode: 'dark',
|
|
100
|
+
text: {
|
|
101
|
+
primary: '#fff',
|
|
102
|
+
},
|
|
103
|
+
background: {
|
|
104
|
+
default: '#000',
|
|
105
|
+
},
|
|
106
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export const shadows = [
|
|
2
|
+
'none',
|
|
3
|
+
'0px 0px 1.4847px #FFFFFF',
|
|
4
|
+
'0px 0px 28px rgba(0, 0, 0, 0.04)',
|
|
5
|
+
'0px 0px 16px 0px rgba(0, 0, 0, 0.13)}',
|
|
6
|
+
'7px 0px 8px 0px #F2F2F2',
|
|
7
|
+
'0px 0px 28px 0px rgba(0, 0, 0, 0.04)',
|
|
8
|
+
'0px 0px 8px 0px rgba(0, 0, 0, 0.13)',
|
|
9
|
+
'0px 0px 4px 0px rgba(31, 136, 208, 0.50)',
|
|
10
|
+
'0px 0px 12px 0px rgba(0, 0, 0, 0.15)',
|
|
11
|
+
'0px 8px 30px 0px rgba(0, 0, 0, 0.16)',
|
|
12
|
+
'0px 0px 16px 0px rgba(0, 0, 0, 0.15)',
|
|
13
|
+
'0px 0px 16px 0px rgba(0, 0, 0, 0.13)',
|
|
14
|
+
'-4px 0px 16px 0px rgba(0, 0, 0, 0.10)',
|
|
15
|
+
'0px 0px 32px 0px rgba(0, 0, 0, 0.11)',
|
|
16
|
+
'0px 4px 8px 0px rgba(0, 0, 0, 0.14)',
|
|
17
|
+
'0px 0px 36px 0px rgba(0, 0, 0, 0.05)',
|
|
18
|
+
'0px 0px 44px 0px rgba(0, 0, 0, 0.25)',
|
|
19
|
+
'0px 0px 6px 0px rgba(0, 0, 0, 0.11)',
|
|
20
|
+
'0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)',
|
|
21
|
+
'0px 8px 30px 0px rgba(0, 0, 0, 0.15)',
|
|
22
|
+
'0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)',
|
|
23
|
+
'0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)',
|
|
24
|
+
'0px 1px 1px 0px rgba(0, 0, 0, 0.10), 0px 2px 2px 0px rgba(0, 0, 0, 0.09), 0px 5px 3px 0px rgba(0, 0, 0, 0.05), 0px 9px 4px 0px rgba(0, 0, 0, 0.01), 0px 14px 4px 0px rgba(0, 0, 0, 0.00)',
|
|
25
|
+
'0px 1px 16px 0px rgba(0, 0, 0, 0.07)',
|
|
26
|
+
'0px -1px 16px 0px rgba(0, 0, 0, 0.07)',
|
|
27
|
+
];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { createTheme } from '@mui/material/styles';
|
|
2
|
+
import { components } from './components';
|
|
3
|
+
import { darkPalette, lightPalette } from './palette';
|
|
4
|
+
import { shadows } from './shadows';
|
|
5
|
+
import { typography } from './typography';
|
|
6
|
+
export const appTheme = (mode, dir) => createTheme({
|
|
7
|
+
palette: mode === 'dark' ? darkPalette : lightPalette,
|
|
8
|
+
direction: dir,
|
|
9
|
+
typography: typography(dir),
|
|
10
|
+
components,
|
|
11
|
+
shape: {
|
|
12
|
+
borderRadius: 8,
|
|
13
|
+
},
|
|
14
|
+
shadows,
|
|
15
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const getFontsFamily = (dir) => (dir === 'ltr' ? ['Tap Sans', 'sans-serif'].join(', ') : ['Noto Sans Arabic', 'sans-serif'].join(', '));
|
|
2
|
+
export const typography = (dir = 'ltr') => ({
|
|
3
|
+
htmlFontSize: 16,
|
|
4
|
+
fontFamily: getFontsFamily(dir),
|
|
5
|
+
fontSize: 14,
|
|
6
|
+
fontWeightLight: 300,
|
|
7
|
+
fontWeightRegular: 400,
|
|
8
|
+
fontWeightMedium: 500,
|
|
9
|
+
fontWeightBold: 600,
|
|
10
|
+
fontWeightBolder: 700,
|
|
11
|
+
allVariants: {
|
|
12
|
+
fontFamily: getFontsFamily(dir),
|
|
13
|
+
fontSize: '0.875rem',
|
|
14
|
+
lineHeight: 'normal',
|
|
15
|
+
fontStyle: 'normal',
|
|
16
|
+
fontWeight: 'normal',
|
|
17
|
+
fontStretch: 'normal',
|
|
18
|
+
letterSpacing: 'normal',
|
|
19
|
+
},
|
|
20
|
+
h1: { fontSize: '3.5rem' },
|
|
21
|
+
h2: { fontSize: '3rem' },
|
|
22
|
+
h3: { fontSize: '2.5rem' },
|
|
23
|
+
h4: { fontSize: '2rem' },
|
|
24
|
+
h5: { fontSize: '1.5rem' },
|
|
25
|
+
h6: { fontSize: '1.25rem' },
|
|
26
|
+
subtitle1: { fontSize: '0.6875rem', lineHeight: '15px', fontWeight: 400 },
|
|
27
|
+
subtitle2: { fontSize: '0.875rem' },
|
|
28
|
+
body1: { fontSize: '1rem' },
|
|
29
|
+
body2: { fontSize: '0.875rem' },
|
|
30
|
+
button: { fontSize: '0.875rem' },
|
|
31
|
+
caption: { fontSize: '0.75rem' },
|
|
32
|
+
overline: { fontSize: '0.75rem' },
|
|
33
|
+
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export var ACCOUNT_SECTION;
|
|
2
|
+
(function (ACCOUNT_SECTION) {
|
|
3
|
+
ACCOUNT_SECTION["BRAND"] = "brand";
|
|
4
|
+
ACCOUNT_SECTION["ENTITY"] = "entity";
|
|
5
|
+
ACCOUNT_SECTION["USERS"] = "users";
|
|
6
|
+
ACCOUNT_SECTION["USER_ROLES"] = "userRoles";
|
|
7
|
+
ACCOUNT_SECTION["APP_SETTINGS"] = "appSettings";
|
|
8
|
+
})(ACCOUNT_SECTION || (ACCOUNT_SECTION = {}));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export var ChargeBreakDownType;
|
|
2
|
+
(function (ChargeBreakDownType) {
|
|
3
|
+
ChargeBreakDownType["PaymentMethod"] = "PAYMENT_METHOD";
|
|
4
|
+
ChargeBreakDownType["PaymentCurrency"] = "PAYMENT_CURRENCY";
|
|
5
|
+
ChargeBreakDownType["PaymentScheme"] = "PAYMENT_SCHEME";
|
|
6
|
+
ChargeBreakDownType["PaymentType"] = "PAYMENT_TYPE";
|
|
7
|
+
ChargeBreakDownType["PaymentLocation"] = "PAYMENT_LOCATION";
|
|
8
|
+
ChargeBreakDownType["PaymentIssuer"] = "PAYMENT_ISSUER";
|
|
9
|
+
ChargeBreakDownType["PaymentAcquirer"] = "PAYMENT_ACQUIRER";
|
|
10
|
+
ChargeBreakDownType["PaymentGateway"] = "PAYMENT_GATEWAY";
|
|
11
|
+
})(ChargeBreakDownType || (ChargeBreakDownType = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export var AppEvent;
|
|
2
|
+
(function (AppEvent) {
|
|
3
|
+
// Host Events
|
|
4
|
+
AppEvent["OnClickTableAction"] = "on-click-table-action";
|
|
5
|
+
AppEvent["OnRightClickTableAction"] = "on-right-click-table-action";
|
|
6
|
+
AppEvent["OnToggleTableMode"] = "on-toggle-table-mode";
|
|
7
|
+
AppEvent["OnChangeTableMode"] = "on-change-table-mode";
|
|
8
|
+
AppEvent["OnChangeCalenderMode"] = "on-change-calender-mode";
|
|
9
|
+
AppEvent["OnChangeTimezone"] = "on-change-timezone";
|
|
10
|
+
AppEvent["OnNavigate"] = "on-navigate";
|
|
11
|
+
AppEvent["OnStartDrag"] = "on-start-drag";
|
|
12
|
+
AppEvent["OnChangeAppToolbar"] = "on-change-app-toolbar";
|
|
13
|
+
AppEvent["OnToast"] = "on-toast";
|
|
14
|
+
// Remote Events
|
|
15
|
+
AppEvent["OnModifyRemotePayload"] = "on-modify-remote-payload";
|
|
16
|
+
})(AppEvent || (AppEvent = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export var SalesChannelTypes;
|
|
2
|
+
(function (SalesChannelTypes) {
|
|
3
|
+
SalesChannelTypes["MOBILE_APP"] = "mobile_app";
|
|
4
|
+
SalesChannelTypes["WEBSITE"] = "website";
|
|
5
|
+
SalesChannelTypes["CALL_CENTER"] = "call_center";
|
|
6
|
+
SalesChannelTypes["PHYSICAL_STORE"] = "physical_store";
|
|
7
|
+
SalesChannelTypes["SOCIAL_MEDIA"] = "social_media";
|
|
8
|
+
SalesChannelTypes["IOS"] = "ios";
|
|
9
|
+
SalesChannelTypes["ANDROID"] = "android";
|
|
10
|
+
SalesChannelTypes["LINKEDIN"] = "linkedin";
|
|
11
|
+
SalesChannelTypes["INSTAGRAM"] = "instagram";
|
|
12
|
+
SalesChannelTypes["TWITTER"] = "twitter";
|
|
13
|
+
})(SalesChannelTypes || (SalesChannelTypes = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export var CurrencyCodes;
|
|
2
|
+
(function (CurrencyCodes) {
|
|
3
|
+
CurrencyCodes["SAR"] = "SAR";
|
|
4
|
+
CurrencyCodes["BHD"] = "BHD";
|
|
5
|
+
CurrencyCodes["EGP"] = "EGP";
|
|
6
|
+
CurrencyCodes["PKR"] = "PKR";
|
|
7
|
+
CurrencyCodes["KWD"] = "KWD";
|
|
8
|
+
CurrencyCodes["AED"] = "AED";
|
|
9
|
+
CurrencyCodes["QAR"] = "QAR";
|
|
10
|
+
CurrencyCodes["LBP"] = "LBP";
|
|
11
|
+
CurrencyCodes["EUR"] = "EUR";
|
|
12
|
+
CurrencyCodes["USD"] = "USD";
|
|
13
|
+
})(CurrencyCodes || (CurrencyCodes = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/build/types/index.js
CHANGED
|
@@ -1 +1,38 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './theme';
|
|
2
|
+
export * from './redux';
|
|
3
|
+
export * from './apps';
|
|
4
|
+
export * from './api';
|
|
5
|
+
export * from './user';
|
|
6
|
+
export * from './appConfig';
|
|
7
|
+
export * from './column';
|
|
8
|
+
export * from './invoice';
|
|
9
|
+
export * from './error';
|
|
10
|
+
export * from './sort';
|
|
11
|
+
export * from './table';
|
|
12
|
+
export * from './charge';
|
|
13
|
+
export * from './file';
|
|
14
|
+
export * from './entity';
|
|
15
|
+
export * from './brand';
|
|
16
|
+
export * from './merchant';
|
|
17
|
+
export * from './cell';
|
|
18
|
+
export * from './currency';
|
|
19
|
+
export * from './segment';
|
|
20
|
+
export * from './authentication';
|
|
21
|
+
export * from './analytics';
|
|
22
|
+
export * from './refund';
|
|
23
|
+
export * from './destination';
|
|
24
|
+
export * from './account';
|
|
25
|
+
export * from './day';
|
|
26
|
+
export * from './tsUtils';
|
|
27
|
+
export * from './appEvents';
|
|
28
|
+
export * from './common';
|
|
29
|
+
export * from './discount';
|
|
30
|
+
export * from './receipt';
|
|
31
|
+
export * from './filter';
|
|
32
|
+
export * from './utilities';
|
|
33
|
+
export * from './reports';
|
|
34
|
+
export * from './document';
|
|
35
|
+
export * from './toggleOptions';
|
|
36
|
+
export * from './toast';
|
|
37
|
+
export * from './flag';
|
|
38
|
+
export * from './window';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export var RECURRENCE_TYPE;
|
|
2
|
+
(function (RECURRENCE_TYPE) {
|
|
3
|
+
RECURRENCE_TYPE["ONE_TIME"] = "oneTime";
|
|
4
|
+
RECURRENCE_TYPE["DAILY"] = "daily";
|
|
5
|
+
RECURRENCE_TYPE["MONTHLY"] = "monthly";
|
|
6
|
+
})(RECURRENCE_TYPE || (RECURRENCE_TYPE = {}));
|
|
7
|
+
export var SEND_INVOICE;
|
|
8
|
+
(function (SEND_INVOICE) {
|
|
9
|
+
SEND_INVOICE["WHATSAPP"] = "whatsapp";
|
|
10
|
+
SEND_INVOICE["EMAIL"] = "email";
|
|
11
|
+
SEND_INVOICE["SMS"] = "sms";
|
|
12
|
+
SEND_INVOICE["CUSTOMER"] = "customer";
|
|
13
|
+
})(SEND_INVOICE || (SEND_INVOICE = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var ReportStatusEnum;
|
|
2
|
+
(function (ReportStatusEnum) {
|
|
3
|
+
ReportStatusEnum["COMPLETED"] = "COMPLETED";
|
|
4
|
+
ReportStatusEnum["FAILED"] = "FAILED";
|
|
5
|
+
ReportStatusEnum["PROCESSING"] = "PROCESSING";
|
|
6
|
+
ReportStatusEnum["INITIATED"] = "INITIATED";
|
|
7
|
+
})(ReportStatusEnum || (ReportStatusEnum = {}));
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export var SEGMENT_CODE;
|
|
2
|
+
(function (SEGMENT_CODE) {
|
|
3
|
+
SEGMENT_CODE["BUSINESS"] = "BUSINESS";
|
|
4
|
+
SEGMENT_CODE["PLATFORM"] = "PLATFORM";
|
|
5
|
+
SEGMENT_CODE["DEVELOPMENT"] = "DEVELOPMENT";
|
|
6
|
+
SEGMENT_CODE["PSP"] = "PSP";
|
|
7
|
+
SEGMENT_CODE["PAYMENT_TECHNOLOGY"] = "PAYMENT_TECHNOLOGY";
|
|
8
|
+
SEGMENT_CODE["PAYMENT_FACILITATOR"] = "PAYMENT_FACILITATOR";
|
|
9
|
+
SEGMENT_CODE["PAYMENT_ACQUIRER"] = "PAYMENT_ACQUIRER";
|
|
10
|
+
SEGMENT_CODE["PAYMENT_GATEWAY"] = "PAYMENT_GATEWAY";
|
|
11
|
+
SEGMENT_CODE["BILLING_PLATFORM"] = "BILLING_PLATFORM";
|
|
12
|
+
SEGMENT_CODE["COMMERCE_PLATFORM"] = "COMMERCE_PLATFORM";
|
|
13
|
+
SEGMENT_CODE["DEVELOPMENT_HOUSE"] = "DEVELOPMENT_HOUSE";
|
|
14
|
+
SEGMENT_CODE["PAYMENT_GATEWAY_PROVIDER"] = "PAYMENT_GATEWAY_PROVIDER";
|
|
15
|
+
SEGMENT_CODE["RETAIL_PLATFORM"] = "RETAIL_PLATFORM";
|
|
16
|
+
})(SEGMENT_CODE || (SEGMENT_CODE = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export var ThemeMode;
|
|
2
|
+
(function (ThemeMode) {
|
|
3
|
+
ThemeMode["DARK"] = "dark";
|
|
4
|
+
ThemeMode["LIGHT"] = "light";
|
|
5
|
+
})(ThemeMode || (ThemeMode = {}));
|
|
6
|
+
export var LanguageMode;
|
|
7
|
+
(function (LanguageMode) {
|
|
8
|
+
LanguageMode["AR"] = "ar";
|
|
9
|
+
LanguageMode["EN"] = "en";
|
|
10
|
+
})(LanguageMode || (LanguageMode = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|