@tap-payments/auth-jsconnect 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (241) hide show
  1. package/build/@types/app.d.ts +61 -3
  2. package/build/@types/app.js +5 -0
  3. package/build/app/settings.d.ts +3 -3
  4. package/build/app/settings.js +26 -11
  5. package/build/assets/locales/ar.json +51 -3
  6. package/build/assets/locales/en.json +50 -2
  7. package/build/components/AnimationFlow/BottomSheet.js +1 -1
  8. package/build/components/AnimationFlow/Dialog.js +7 -22
  9. package/build/components/Footer/Footer.js +1 -1
  10. package/build/components/Loader/Loader.js +12 -11
  11. package/build/components/OTPField/OTPField.js +3 -23
  12. package/build/components/OTPTimer/OTPTimer.d.ts +4 -3
  13. package/build/components/OTPTimer/OTPTimer.js +19 -6
  14. package/build/components/SimpleList/SimpleList.d.ts +1 -1
  15. package/build/components/SimpleList/SimpleList.js +2 -5
  16. package/build/components/Warning/Warning.js +2 -18
  17. package/build/constants/app.d.ts +9 -0
  18. package/build/constants/app.js +112 -2
  19. package/build/constants/assets.d.ts +4 -0
  20. package/build/constants/assets.js +4 -0
  21. package/build/constants/dummy.d.ts +103 -0
  22. package/build/constants/dummy.js +219 -0
  23. package/build/constants/validation.d.ts +4 -0
  24. package/build/constants/validation.js +4 -0
  25. package/build/features/bank/Bank.d.ts +6 -0
  26. package/build/features/bank/Bank.js +48 -0
  27. package/build/features/bank/index.d.ts +1 -0
  28. package/build/features/bank/index.js +1 -0
  29. package/build/features/bank/screens/BankDetails/BankDetails.d.ts +5 -0
  30. package/build/features/bank/screens/BankDetails/BankDetails.js +57 -0
  31. package/build/features/bank/screens/BankDetails/BankName.d.ts +3 -0
  32. package/build/features/bank/screens/BankDetails/BankName.js +27 -0
  33. package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +5 -0
  34. package/build/features/bank/screens/BankDetails/Beneficiary.js +34 -0
  35. package/build/features/bank/screens/BankDetails/IBAN.d.ts +5 -0
  36. package/build/features/bank/screens/BankDetails/IBAN.js +35 -0
  37. package/build/features/bank/screens/BankDetails/index.d.ts +3 -0
  38. package/build/features/bank/screens/BankDetails/index.js +2 -0
  39. package/build/features/bank/screens/BankDetails/validation.d.ts +14 -0
  40. package/build/features/bank/screens/BankDetails/validation.js +9 -0
  41. package/build/features/business/Business.d.ts +6 -0
  42. package/build/features/business/Business.js +61 -0
  43. package/build/features/business/index.d.ts +1 -0
  44. package/build/features/business/index.js +1 -1
  45. package/build/features/business/screens/Activities/Activities.d.ts +5 -0
  46. package/build/features/business/screens/Activities/Activities.js +83 -0
  47. package/build/features/business/screens/Activities/ActivitiesList.d.ts +70 -0
  48. package/build/features/business/screens/Activities/ActivitiesList.js +136 -0
  49. package/build/features/business/screens/Activities/SalesChannels.d.ts +5 -0
  50. package/build/features/business/screens/Activities/SalesChannels.js +107 -0
  51. package/build/features/business/screens/Activities/index.d.ts +3 -0
  52. package/build/features/business/screens/Activities/index.js +2 -0
  53. package/build/features/business/screens/Activities/validation.d.ts +119 -0
  54. package/build/features/business/screens/Activities/validation.js +17 -0
  55. package/build/features/business/screens/BusinessType/BusinessType.d.ts +12 -0
  56. package/build/features/business/screens/BusinessType/BusinessType.js +85 -0
  57. package/build/features/business/screens/BusinessType/CRNumber.d.ts +6 -0
  58. package/build/features/business/screens/BusinessType/CRNumber.js +40 -0
  59. package/build/features/business/screens/BusinessType/CompanyLicense.d.ts +11 -0
  60. package/build/features/business/screens/BusinessType/CompanyLicense.js +109 -0
  61. package/build/features/business/screens/BusinessType/FLNumber.d.ts +6 -0
  62. package/build/features/business/screens/BusinessType/FLNumber.js +40 -0
  63. package/build/features/business/screens/BusinessType/FreelanceLicense.d.ts +11 -0
  64. package/build/features/business/screens/BusinessType/FreelanceLicense.js +112 -0
  65. package/build/features/business/screens/BusinessType/SelectType.d.ts +8 -0
  66. package/build/features/business/screens/BusinessType/SelectType.js +106 -0
  67. package/build/features/business/screens/BusinessType/Switch.d.ts +7 -0
  68. package/build/features/business/screens/BusinessType/Switch.js +35 -0
  69. package/build/features/business/screens/BusinessType/index.d.ts +3 -0
  70. package/build/features/business/screens/BusinessType/index.js +2 -0
  71. package/build/features/business/screens/BusinessType/validation.d.ts +15 -0
  72. package/build/features/business/screens/BusinessType/validation.js +14 -0
  73. package/build/features/business/screens/Confirm/Confirm.d.ts +5 -0
  74. package/build/features/business/screens/Confirm/Confirm.js +53 -0
  75. package/build/features/business/screens/Confirm/index.d.ts +3 -0
  76. package/build/features/business/screens/Confirm/index.js +2 -0
  77. package/build/features/business/screens/Customers/CustomerLocations.d.ts +92 -0
  78. package/build/features/business/screens/Customers/CustomerLocations.js +122 -0
  79. package/build/features/business/screens/Customers/Customers.d.ts +5 -0
  80. package/build/features/business/screens/Customers/Customers.js +92 -0
  81. package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +7 -0
  82. package/build/features/business/screens/Customers/ExpectedCustomers.js +78 -0
  83. package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +7 -0
  84. package/build/features/business/screens/Customers/ExpectedSalesRange.js +74 -0
  85. package/build/features/business/screens/Customers/RefundPolicy.d.ts +44 -0
  86. package/build/features/business/screens/Customers/RefundPolicy.js +86 -0
  87. package/build/features/business/screens/Customers/TransactionPolicy.d.ts +3 -0
  88. package/build/features/business/screens/Customers/TransactionPolicy.js +37 -0
  89. package/build/features/business/screens/Customers/index.d.ts +3 -0
  90. package/build/features/business/screens/Customers/index.js +2 -0
  91. package/build/features/business/screens/Customers/validation.d.ts +20 -0
  92. package/build/features/business/screens/Customers/validation.js +8 -0
  93. package/build/features/business/screens/IDBOD/DOB.js +8 -8
  94. package/build/features/business/screens/IDBOD/ID.js +8 -7
  95. package/build/features/business/screens/IDBOD/IDBOD.js +5 -6
  96. package/build/features/business/screens/OTP/OTP.d.ts +11 -0
  97. package/build/features/business/screens/OTP/OTP.js +112 -0
  98. package/build/features/business/screens/OTP/OTPInput.d.ts +5 -0
  99. package/build/features/business/screens/OTP/OTPInput.js +51 -0
  100. package/build/features/{connect → business}/screens/OTP/OTPTimer.d.ts +0 -0
  101. package/build/features/business/screens/OTP/OTPTimer.js +20 -0
  102. package/build/features/business/screens/OTP/index.d.ts +3 -0
  103. package/build/features/business/screens/OTP/index.js +2 -0
  104. package/build/features/business/screens/OTP/validation.d.ts +8 -0
  105. package/build/features/business/screens/OTP/validation.js +4 -0
  106. package/build/features/business/screens/Success/Success.d.ts +5 -0
  107. package/build/features/business/screens/Success/Success.js +15 -0
  108. package/build/features/business/screens/Success/index.d.ts +3 -0
  109. package/build/features/business/screens/Success/index.js +2 -0
  110. package/build/features/business/screens/VerifyNumber/OTPInput.d.ts +6 -0
  111. package/build/features/business/screens/VerifyNumber/OTPInput.js +68 -0
  112. package/build/features/business/screens/VerifyNumber/OTPTimer.d.ts +5 -0
  113. package/build/features/business/screens/VerifyNumber/OTPTimer.js +20 -0
  114. package/build/features/business/screens/VerifyNumber/VerifyNumber.d.ts +13 -0
  115. package/build/features/business/screens/VerifyNumber/VerifyNumber.js +119 -0
  116. package/build/features/business/screens/VerifyNumber/index.d.ts +3 -0
  117. package/build/features/business/screens/VerifyNumber/index.js +2 -0
  118. package/build/features/business/screens/VerifyNumber/validation.d.ts +8 -0
  119. package/build/features/business/screens/VerifyNumber/validation.js +4 -0
  120. package/build/features/connect/Connect.js +6 -18
  121. package/build/features/connect/screens/Individual/Email.d.ts +1 -1
  122. package/build/features/connect/screens/Individual/Email.js +6 -31
  123. package/build/features/connect/screens/Individual/Individual.js +7 -16
  124. package/build/features/connect/screens/Individual/Name.d.ts +1 -1
  125. package/build/features/connect/screens/Individual/Name.js +7 -34
  126. package/build/features/connect/screens/MID/BusinessCountry.js +5 -40
  127. package/build/features/connect/screens/MID/IDNumber.js +13 -28
  128. package/build/features/connect/screens/MID/MID.js +6 -43
  129. package/build/features/connect/screens/MID/MobileNumber.js +22 -41
  130. package/build/features/connect/screens/Merchant/BrandName.js +5 -31
  131. package/build/features/connect/screens/Merchant/Merchant.js +6 -50
  132. package/build/features/connect/screens/Merchant/SocialMedia.js +3 -11
  133. package/build/features/connect/screens/Merchant/TAC.js +4 -13
  134. package/build/features/connect/screens/OTP/OTP.js +17 -61
  135. package/build/features/connect/screens/OTP/OTPInput.js +8 -21
  136. package/build/features/connect/screens/Password/Password.js +12 -49
  137. package/build/features/connect/screens/Password/PasswordInput.js +16 -51
  138. package/build/features/connect/screens/ThankYou/ThankYou.js +4 -65
  139. package/build/features/featuresScreens.d.ts +5 -0
  140. package/build/features/featuresScreens.js +78 -7
  141. package/build/features/owner/Owner.d.ts +6 -0
  142. package/build/features/owner/Owner.js +50 -0
  143. package/build/features/owner/index.d.ts +1 -0
  144. package/build/features/owner/index.js +1 -0
  145. package/build/features/owner/screens/ShowOwnerInfo/ShowOwnerInfo.d.ts +19 -0
  146. package/build/features/owner/screens/ShowOwnerInfo/ShowOwnerInfo.js +52 -0
  147. package/build/features/owner/screens/ShowOwnerInfo/index.d.ts +3 -0
  148. package/build/features/owner/screens/ShowOwnerInfo/index.js +2 -0
  149. package/build/features/owner/screens/ShowOwnerInfo/info.d.ts +7 -0
  150. package/build/features/owner/screens/ShowOwnerInfo/info.js +28 -0
  151. package/build/features/password/Password.d.ts +6 -0
  152. package/build/features/password/Password.js +50 -0
  153. package/build/features/password/index.d.ts +1 -0
  154. package/build/features/password/index.js +1 -0
  155. package/build/features/password/screens/CreatePassword/ConditionText.d.ts +7 -0
  156. package/build/features/password/screens/CreatePassword/ConditionText.js +23 -0
  157. package/build/features/password/screens/CreatePassword/ConfirmPassword.d.ts +5 -0
  158. package/build/features/password/screens/CreatePassword/ConfirmPassword.js +27 -0
  159. package/build/features/password/screens/CreatePassword/CreatePassword.d.ts +5 -0
  160. package/build/features/password/screens/CreatePassword/CreatePassword.js +51 -0
  161. package/build/features/password/screens/CreatePassword/Password.d.ts +5 -0
  162. package/build/features/password/screens/CreatePassword/Password.js +75 -0
  163. package/build/features/password/screens/CreatePassword/PasswordBar.d.ts +7 -0
  164. package/build/features/password/screens/CreatePassword/PasswordBar.js +29 -0
  165. package/build/features/password/screens/CreatePassword/index.d.ts +3 -0
  166. package/build/features/password/screens/CreatePassword/index.js +2 -0
  167. package/build/features/password/screens/CreatePassword/validation.d.ts +11 -0
  168. package/build/features/password/screens/CreatePassword/validation.js +8 -0
  169. package/build/features/shared/Button/Button.d.ts +8 -0
  170. package/build/features/shared/Button/Button.js +49 -0
  171. package/build/features/shared/Button/index.d.ts +2 -0
  172. package/build/features/shared/Button/index.js +2 -0
  173. package/build/features/shared/CheckIcon/CheckIcon.d.ts +2 -0
  174. package/build/features/shared/CheckIcon/CheckIcon.js +14 -0
  175. package/build/features/shared/CheckIcon/index.d.ts +2 -0
  176. package/build/features/shared/CheckIcon/index.js +2 -0
  177. package/build/features/shared/ClearIcon/ClearIcon.d.ts +6 -0
  178. package/build/features/shared/ClearIcon/ClearIcon.js +26 -0
  179. package/build/features/shared/ClearIcon/index.d.ts +2 -0
  180. package/build/features/shared/ClearIcon/index.js +2 -0
  181. package/build/features/shared/Containers/FeatureContainer.d.ts +4 -0
  182. package/build/features/shared/Containers/FeatureContainer.js +33 -0
  183. package/build/features/shared/Containers/ScreenContainer.d.ts +4 -0
  184. package/build/features/shared/Containers/ScreenContainer.js +28 -0
  185. package/build/features/shared/Containers/index.d.ts +3 -0
  186. package/build/features/shared/Containers/index.js +3 -0
  187. package/build/features/shared/ExpandIcon/ExpandIcon.d.ts +7 -0
  188. package/build/features/shared/ExpandIcon/ExpandIcon.js +24 -0
  189. package/build/features/shared/ExpandIcon/index.d.ts +2 -0
  190. package/build/features/shared/ExpandIcon/index.js +2 -0
  191. package/build/features/shared/Footer/Footer.d.ts +2 -0
  192. package/build/features/shared/Footer/Footer.js +16 -0
  193. package/build/features/shared/Footer/index.d.ts +2 -0
  194. package/build/features/shared/Footer/index.js +2 -0
  195. package/build/features/shared/Input/Input.d.ts +27 -0
  196. package/build/features/shared/Input/Input.js +59 -0
  197. package/build/features/shared/Input/index.d.ts +2 -0
  198. package/build/features/shared/Input/index.js +2 -0
  199. package/build/features/shared/OTP/OTP.d.ts +9 -0
  200. package/build/features/shared/OTP/OTP.js +85 -0
  201. package/build/features/shared/OTP/index.d.ts +2 -0
  202. package/build/features/shared/OTP/index.js +2 -0
  203. package/build/features/shared/PasswordIcon/PasswordIcon.d.ts +8 -0
  204. package/build/features/shared/PasswordIcon/PasswordIcon.js +37 -0
  205. package/build/features/shared/PasswordIcon/index.d.ts +2 -0
  206. package/build/features/shared/PasswordIcon/index.js +2 -0
  207. package/build/features/shared/SuccessScreen/SuccessScreen.d.ts +7 -0
  208. package/build/features/shared/SuccessScreen/SuccessScreen.js +54 -0
  209. package/build/features/shared/SuccessScreen/index.d.ts +2 -0
  210. package/build/features/shared/SuccessScreen/index.js +2 -0
  211. package/build/features/tax/Tax.d.ts +6 -0
  212. package/build/features/tax/Tax.js +50 -0
  213. package/build/features/tax/index.d.ts +1 -0
  214. package/build/features/tax/index.js +1 -0
  215. package/build/features/tax/screens/TaxDetails/TaxDetails.d.ts +5 -0
  216. package/build/features/tax/screens/TaxDetails/TaxDetails.js +45 -0
  217. package/build/features/tax/screens/TaxDetails/VATId.d.ts +3 -0
  218. package/build/features/tax/screens/TaxDetails/VATId.js +27 -0
  219. package/build/features/tax/screens/TaxDetails/index.d.ts +3 -0
  220. package/build/features/tax/screens/TaxDetails/index.js +2 -0
  221. package/build/features/tax/screens/TaxDetails/validation.d.ts +8 -0
  222. package/build/features/tax/screens/TaxDetails/validation.js +4 -0
  223. package/build/hooks/index.d.ts +1 -0
  224. package/build/hooks/index.js +1 -0
  225. package/build/hooks/useContainerDimensions.d.ts +4 -0
  226. package/build/hooks/useContainerDimensions.js +21 -0
  227. package/build/index.css +1 -1
  228. package/build/index.d.ts +7 -2
  229. package/build/index.js +17 -2
  230. package/build/theme/palette.js +10 -4
  231. package/build/theme/typography.js +2 -2
  232. package/build/utils/array.d.ts +3 -1
  233. package/build/utils/array.js +7 -3
  234. package/build/utils/string.d.ts +2 -0
  235. package/build/utils/string.js +11 -0
  236. package/build/utils/validation.d.ts +6 -0
  237. package/build/utils/validation.js +19 -1
  238. package/package.json +1 -1
  239. package/build/features/connect/Footer.d.ts +0 -4
  240. package/build/features/connect/Footer.js +0 -16
  241. package/build/features/connect/screens/OTP/OTPTimer.js +0 -35
@@ -0,0 +1,112 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
24
+ import * as React from 'react';
25
+ import { useTranslation } from 'react-i18next';
26
+ import { useFormContext } from 'react-hook-form';
27
+ import Box from '@mui/material/Box';
28
+ import { styled } from '@mui/material/styles';
29
+ import Text from '../../../../components/Text';
30
+ import Collapse from '../../../../components/Collapse';
31
+ import { useLanguage } from '../../../../hooks';
32
+ import ScreenContainer from '../../../shared/Containers/ScreenContainer';
33
+ import CheckIcon from '../../../shared/CheckIcon';
34
+ import ExpandIcon from '../../../shared/ExpandIcon';
35
+ import Input from '../../../shared/Input';
36
+ import { OTHER_FL_LICENSE } from '../../../../constants';
37
+ import SimpleList from '../../../../components/SimpleList';
38
+ import FLNumber from './FLNumber';
39
+ var InputStyled = styled(Input)(function (_a) {
40
+ var theme = _a.theme;
41
+ return ({
42
+ marginBottom: theme.spacing(2.5),
43
+ '& .MuiInputBase-input': {
44
+ cursor: 'pointer'
45
+ }
46
+ });
47
+ });
48
+ var LicenseContainer = styled(Box)(function () { return ({
49
+ display: 'flex'
50
+ }); });
51
+ var LicenseNameText = styled(Text, { shouldForwardProp: function (prop) { return prop !== 'isSelected'; } })(function (_a) {
52
+ var theme = _a.theme, isSelected = _a.isSelected;
53
+ return (__assign(__assign({ color: theme.palette.text.primary }, theme.typography.body2), { fontWeight: isSelected ? theme.typography.fontWeightMedium : theme.typography.fontWeightLight }));
54
+ });
55
+ var FreelanceLicense = function (_a) {
56
+ var show = _a.show, list = _a.list, rest = __rest(_a, ["show", "list"]);
57
+ var licenseList = React.useState(list)[0];
58
+ var _b = React.useState(), selectedLicense = _b[0], setSelectedLicense = _b[1];
59
+ var _c = React.useState(null), anchorEl = _c[0], setAnchorEl = _c[1];
60
+ var t = useTranslation().t;
61
+ var isAr = useLanguage().isAr;
62
+ var setValue = useFormContext().setValue;
63
+ var onOpenLicenseList = function (event) {
64
+ var _a;
65
+ setAnchorEl(event.currentTarget);
66
+ (_a = rest.onListOpen) === null || _a === void 0 ? void 0 : _a.call(rest);
67
+ };
68
+ var onCloseLicenseList = function () {
69
+ var _a;
70
+ setAnchorEl(null);
71
+ (_a = rest.onListClose) === null || _a === void 0 ? void 0 : _a.call(rest);
72
+ };
73
+ React.useEffect(function () {
74
+ var first = list[0];
75
+ if (!!first) {
76
+ setSelectedLicense(first);
77
+ setValue('flNumber', getLicenseNumber(first), { shouldValidate: true });
78
+ if (!list.find(function (item) { return isOtherLicense(item); }))
79
+ list.push(OTHER_FL_LICENSE);
80
+ }
81
+ }, [show, list]);
82
+ var getLicenseNumber = function (item) {
83
+ return (item === null || item === void 0 ? void 0 : item.number) || '';
84
+ };
85
+ var isOtherLicense = function (item) {
86
+ return (item === null || item === void 0 ? void 0 : item.number) === 'other';
87
+ };
88
+ var getLicenseName = function (item) {
89
+ var _a, _b, _c, _d, _e, _f;
90
+ return ((isAr
91
+ ? (_c = (_b = (_a = item === null || item === void 0 ? void 0 : item.license_specialities) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.speciality) === null || _c === void 0 ? void 0 : _c.name
92
+ : (_f = (_e = (_d = item === null || item === void 0 ? void 0 : item.license_specialities) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.speciality) === null || _f === void 0 ? void 0 : _f.name_en) || '');
93
+ };
94
+ var onSelectItem = function (license) {
95
+ setSelectedLicense(license);
96
+ onCloseLicenseList();
97
+ if (isOtherLicense(license))
98
+ setValue('flNumber', '');
99
+ else
100
+ setValue('flNumber', getLicenseNumber(license), { shouldValidate: true });
101
+ };
102
+ var hasList = (licenseList === null || licenseList === void 0 ? void 0 : licenseList.length) > 0;
103
+ var showFLNumber = !anchorEl;
104
+ return (_jsx(Collapse, __assign({ in: show }, { children: _jsxs(ScreenContainer, { children: [_jsxs(Collapse, __assign({ in: hasList }, { children: [_jsx(InputStyled, { label: t('freelance_license_label'), readOnly: true, onClick: !!anchorEl ? function () { return onCloseLicenseList(); } : onOpenLicenseList, endAdornment: _jsx(ExpandIcon, { anchorEl: !!anchorEl }), placeholder: t('freelance_license_placeholder'), value: t(getLicenseName(selectedLicense)) }), _jsx(Collapse, __assign({ in: !!anchorEl, timeout: 300 }, { children: _jsx(SimpleList, { searchKeyPath: 'license_specialities[0].speciality.name_en', list: licenseList, onSelectItem: onSelectItem, renderItem: function (item) {
105
+ return (_jsxs(_Fragment, { children: [_jsx(LicenseContainer, { children: _jsx(LicenseNameText, __assign({ isSelected: getLicenseNumber(item) === getLicenseNumber(selectedLicense) }, { children: isOtherLicense(item)
106
+ ? t(getLicenseNumber(item))
107
+ : isAr
108
+ ? getLicenseName(item)
109
+ : getLicenseNumber(item) + '-' + getLicenseName(item) })) }), getLicenseNumber(item) === getLicenseNumber(selectedLicense) && _jsx(CheckIcon, {})] }));
110
+ } }) }))] })), _jsx(FLNumber, { show: showFLNumber })] }) })));
111
+ };
112
+ export default React.memo(FreelanceLicense);
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ interface SelectTypeProps {
3
+ show: boolean;
4
+ onSwitchToCR?: () => void;
5
+ onSwitchToFL?: () => void;
6
+ }
7
+ declare const _default: React.MemoExoticComponent<({ show, onSwitchToCR, onSwitchToFL }: SelectTypeProps) => JSX.Element>;
8
+ export default _default;
@@ -0,0 +1,106 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import * as React from 'react';
14
+ import { useTranslation } from 'react-i18next';
15
+ import { useController, useFormContext } from 'react-hook-form';
16
+ import Box from '@mui/material/Box';
17
+ import { styled } from '@mui/material/styles';
18
+ import RadioGroup from '@mui/material/RadioGroup';
19
+ import Radio from '@mui/material/Radio';
20
+ import ScreenContainer from '../../../shared/Containers/ScreenContainer';
21
+ import Text from '../../../../components/Text';
22
+ import Collapse from '../../../../components/Collapse';
23
+ import Icon from '../../../../components/Icon/Icon';
24
+ import { ICONS_NAMES } from '../../../../constants';
25
+ import { BusinessType } from '../../../../@types';
26
+ import BTypeSwitch from './Switch';
27
+ var TitleStyled = styled(Text)(function (_a) {
28
+ var theme = _a.theme;
29
+ return (__assign(__assign({ color: theme.palette.text.primary }, theme.typography.body1), { lineHeight: theme.spacing(2.5), padding: theme.spacing(0, 2.5, 4.75, 2.5), textAlign: 'center' }));
30
+ });
31
+ var RadioGroupStyled = styled(RadioGroup)(function (_a) {
32
+ var _b;
33
+ var theme = _a.theme;
34
+ return (_b = {
35
+ display: 'flex',
36
+ flexWrap: 'unset',
37
+ flexDirection: 'row',
38
+ justifyContent: 'space-between',
39
+ paddingBottom: theme.spacing(4),
40
+ margin: theme.spacing(0, 5.625, 0, 5.625)
41
+ },
42
+ _b[theme.breakpoints.down('sm')] = {
43
+ margin: theme.spacing(0, 3.75, 0, 3.75),
44
+ justifyContent: 'space-around'
45
+ },
46
+ _b);
47
+ });
48
+ var RadioStyled = styled(Radio)(function (_a) {
49
+ var theme = _a.theme;
50
+ return ({
51
+ padding: theme.spacing(0),
52
+ visibility: 'hidden',
53
+ width: theme.spacing(0),
54
+ height: theme.spacing(0)
55
+ });
56
+ });
57
+ var FLIconStyled = styled(Icon)(function (_a) {
58
+ var theme = _a.theme;
59
+ return ({
60
+ width: theme.spacing(5.75),
61
+ height: theme.spacing(5.5)
62
+ });
63
+ });
64
+ var CRIconStyled = styled(Icon)(function (_a) {
65
+ var theme = _a.theme;
66
+ return ({
67
+ width: theme.spacing(6.625),
68
+ height: theme.spacing(6.625)
69
+ });
70
+ });
71
+ var TextBoxStyled = styled(Box)(function (_a) {
72
+ var _b;
73
+ var theme = _a.theme;
74
+ return (_b = {
75
+ display: 'flex',
76
+ justifyContent: 'space-around'
77
+ },
78
+ _b[theme.breakpoints.down('sm')] = {
79
+ margin: theme.spacing(0, 3.75, 0, 3.75)
80
+ },
81
+ _b);
82
+ });
83
+ var TextStyled = styled(Text, { shouldForwardProp: function (prop) { return prop !== 'active'; } })(function (_a) {
84
+ var theme = _a.theme, active = _a.active;
85
+ return (__assign(__assign({ width: theme.spacing(8.75), height: theme.spacing(4.125) }, theme.typography.caption), { lineHeight: theme.spacing(2.25), textAlign: 'center', cursor: 'pointer', display: 'flex', justifyContent: 'center', color: "".concat(active ? theme.palette.text.primary : theme.palette.text.secondary) }));
86
+ });
87
+ var SelectType = function (_a) {
88
+ var show = _a.show, onSwitchToCR = _a.onSwitchToCR, onSwitchToFL = _a.onSwitchToFL;
89
+ var t = useTranslation().t;
90
+ var control = useFormContext().control;
91
+ var businessTypeControl = useController({ control: control, name: 'businessType' });
92
+ var handleSwitchToCR = function () {
93
+ onSwitchToCR === null || onSwitchToCR === void 0 ? void 0 : onSwitchToCR();
94
+ businessTypeControl.field.onChange(BusinessType.CR);
95
+ };
96
+ var handleSwitchToFL = function () {
97
+ onSwitchToFL === null || onSwitchToFL === void 0 ? void 0 : onSwitchToFL();
98
+ businessTypeControl.field.onChange(BusinessType.FL);
99
+ };
100
+ var type = businessTypeControl.field.value;
101
+ var FLActive = type === BusinessType.FL;
102
+ var CRActive = type === BusinessType.CR;
103
+ var isAnyTypeActive = FLActive || CRActive;
104
+ return (_jsx(Collapse, __assign({ in: show }, { children: _jsxs(ScreenContainer, { children: [_jsx(Collapse, __assign({ in: !isAnyTypeActive }, { children: _jsx(TitleStyled, { children: t('select_your_business_type') }) })), _jsxs(RadioGroupStyled, __assign({ "aria-labelledby": 'business-type', name: 'business-type' }, { children: [_jsx(BTypeSwitch, { value: BusinessType.FL, control: _jsx(RadioStyled, { color: 'primary', onClick: handleSwitchToFL }), label: _jsx(FLIconStyled, { src: FLActive ? ICONS_NAMES.FL_ACTIVE_ICON : ICONS_NAMES.FL_ICON }), active: FLActive }), _jsx(BTypeSwitch, { value: BusinessType.CR, control: _jsx(RadioStyled, { color: 'primary', onClick: handleSwitchToCR }), label: _jsx(CRIconStyled, { src: CRActive ? ICONS_NAMES.CR_ACTIVE_ICON : ICONS_NAMES.CR_ICON }), active: CRActive })] })), _jsx(Collapse, __assign({ in: !isAnyTypeActive }, { children: _jsxs(TextBoxStyled, { children: [_jsx(TextStyled, __assign({ onClick: handleSwitchToFL, active: FLActive }, { children: t('freelancer_reg') })), _jsx(TextStyled, __assign({ onClick: handleSwitchToCR, active: CRActive }, { children: t('commercial_reg') }))] }) }))] }) })));
105
+ };
106
+ export default React.memo(SelectType);
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import { FormControlLabelProps } from '@mui/material/FormControlLabel';
3
+ interface BTypeSwitchProps extends FormControlLabelProps {
4
+ active: boolean;
5
+ }
6
+ declare const _default: React.MemoExoticComponent<(props: BTypeSwitchProps) => JSX.Element>;
7
+ export default _default;
@@ -0,0 +1,35 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import * as React from 'react';
14
+ import { styled } from '@mui/material/styles';
15
+ import FormControlLabel from '@mui/material/FormControlLabel';
16
+ var FormControlLabelStyled = styled(FormControlLabel, {
17
+ shouldForwardProp: function (prop) { return prop !== 'active'; }
18
+ })(function (_a) {
19
+ var theme = _a.theme, active = _a.active;
20
+ return ({
21
+ width: theme.spacing(12.25),
22
+ height: theme.spacing(12.25),
23
+ display: 'flex',
24
+ alignItems: 'center',
25
+ justifyContent: 'center',
26
+ borderRadius: '50%',
27
+ marginInlineEnd: theme.spacing(0),
28
+ marginInlineStart: theme.spacing(0),
29
+ border: "".concat(active ? "2px solid ".concat(theme.palette.primary.main) : "1px solid ".concat(theme.palette.secondary.dark))
30
+ });
31
+ });
32
+ var BTypeSwitch = function (props) {
33
+ return _jsx(FormControlLabelStyled, __assign({}, props));
34
+ };
35
+ export default React.memo(BTypeSwitch);
@@ -0,0 +1,3 @@
1
+ import BusinessType, { BusinessTypeProps } from './BusinessType';
2
+ export type { BusinessTypeProps };
3
+ export default BusinessType;
@@ -0,0 +1,2 @@
1
+ import BusinessType from './BusinessType';
2
+ export default BusinessType;
@@ -0,0 +1,15 @@
1
+ import * as yup from 'yup';
2
+ export declare const FLValidationSchema: yup.ObjectSchema<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
3
+ flNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
4
+ }>, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
5
+ flNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
6
+ }>>, import("yup/lib/object").AssertsShape<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
7
+ flNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
8
+ }>>>;
9
+ export declare const CRValidationSchema: yup.ObjectSchema<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
10
+ crNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
11
+ }>, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
12
+ crNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
13
+ }>>, import("yup/lib/object").AssertsShape<import("yup/lib/object").Assign<import("yup/lib/object").ObjectShape, {
14
+ crNumber: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
15
+ }>>>;
@@ -0,0 +1,14 @@
1
+ import * as yup from 'yup';
2
+ import { FL_NUMBER_LENGTH, CR_NUMBER_LENGTH } from '../../../../constants';
3
+ export var FLValidationSchema = yup.object().shape({
4
+ flNumber: yup
5
+ .string()
6
+ .min(FL_NUMBER_LENGTH, "Freelance number length should be ".concat(FL_NUMBER_LENGTH))
7
+ .required('Freelance number is required')
8
+ });
9
+ export var CRValidationSchema = yup.object().shape({
10
+ crNumber: yup
11
+ .string()
12
+ .min(CR_NUMBER_LENGTH, "CR number length should be ".concat(CR_NUMBER_LENGTH))
13
+ .required('CR number is required')
14
+ });
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ export interface ConfirmProps {
3
+ }
4
+ declare const _default: React.MemoExoticComponent<() => JSX.Element>;
5
+ export default _default;
@@ -0,0 +1,53 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import * as React from 'react';
14
+ import { styled } from '@mui/material/styles';
15
+ import { useAppDispatch, useLanguage } from '../../../../hooks';
16
+ import { useTranslation } from 'react-i18next';
17
+ import { handleNextScreenStep } from '../../../../app/settings';
18
+ import { FormProvider, useForm } from 'react-hook-form';
19
+ import Form from '../../../../components/Form';
20
+ import Input from '../../../shared/Input';
21
+ import Button from '../../../shared/Button';
22
+ import { ScreenContainer } from '../../../shared/Containers';
23
+ var InputStyled = styled(Input)(function (_a) {
24
+ var theme = _a.theme;
25
+ return ({
26
+ marginBlockEnd: theme.spacing(3)
27
+ });
28
+ });
29
+ var FormStyled = styled(Form)(function () { return ({
30
+ display: 'flex',
31
+ flexDirection: 'column'
32
+ }); });
33
+ var defaultValues = {
34
+ licenseNumber: 1234567890,
35
+ brandName: 'Tap Payments',
36
+ legalName: 'Ali Abulhasan'
37
+ };
38
+ var Confirm = function () {
39
+ var dispatch = useAppDispatch();
40
+ var businessType = React.useState('CR')[0];
41
+ var t = useTranslation().t;
42
+ var isAr = useLanguage().isAr;
43
+ var isCR = businessType === 'CR';
44
+ var onSubmit = function () {
45
+ dispatch(handleNextScreenStep());
46
+ };
47
+ var methods = useForm({
48
+ defaultValues: defaultValues,
49
+ mode: 'onChange'
50
+ });
51
+ return (_jsx(ScreenContainer, { children: _jsx(FormProvider, __assign({}, methods, { children: _jsxs(FormStyled, __assign({ onSubmit: methods.handleSubmit(onSubmit) }, { children: [_jsx(InputStyled, { label: t(isCR ? 'confirm_business_cr_label' : 'confirm_business_fl_label'), value: defaultValues.licenseNumber, disabled: true }), _jsx(InputStyled, { label: t('confirm_brand_name_label'), value: defaultValues.brandName, disabled: true }), _jsx(InputStyled, { label: t('confirm_legal_name_label'), value: defaultValues.legalName, disabled: true }), _jsx(Button, __assign({ isAr: isAr }, { children: t('confirm') }))] })) })) }));
52
+ };
53
+ export default React.memo(Confirm);
@@ -0,0 +1,3 @@
1
+ import Confirm, { ConfirmProps } from './Confirm';
2
+ export type { ConfirmProps };
3
+ export default Confirm;
@@ -0,0 +1,2 @@
1
+ import Confirm from './Confirm';
2
+ export default Confirm;
@@ -0,0 +1,92 @@
1
+ import * as React from 'react';
2
+ export declare const BoxStyled: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material/styles").Theme> & {
3
+ children?: React.ReactNode;
4
+ component?: React.ElementType<any> | undefined;
5
+ ref?: React.Ref<unknown> | undefined;
6
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
7
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
8
+ ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
9
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | ("border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform") | "ref" | "children" | "component" | "sx"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
10
+ export declare const InputLabelStyled: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material/styles").Theme> & {
11
+ align?: "right" | "left" | "inherit" | "center" | "justify" | undefined;
12
+ children?: React.ReactNode;
13
+ classes?: Partial<import("@mui/material").TypographyClasses> | undefined;
14
+ gutterBottom?: boolean | undefined;
15
+ noWrap?: boolean | undefined;
16
+ paragraph?: boolean | undefined;
17
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
18
+ variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2" | undefined;
19
+ variantMapping?: Partial<Record<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2", string>> | undefined;
20
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "key" | keyof React.HTMLAttributes<HTMLSpanElement>> & {
21
+ ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
22
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | ("border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform") | "children" | "sx" | "variant" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
23
+ export declare const InputStyled: import("@emotion/styled").StyledComponent<Pick<import("../../../../components/Input").InputProps, "type" | "className" | "style" | "classes" | "color" | "margin" | "translate" | "slot" | "title" | "ref" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "size" | "disabled" | "error" | "name" | "components" | "componentsProps" | "value" | "autoFocus" | "fullWidth" | "required" | "rows" | "inputProps" | "inputRef" | "readOnly" | "autoComplete" | "disableInjectingGlobalStyles" | "endAdornment" | "inputComponent" | "multiline" | "renderSuffix" | "maxRows" | "minRows" | "startAdornment" | "disableUnderline" | "onEnterPressed" | "warningMessage"> & {
24
+ placeholder?: string | undefined;
25
+ hide?: boolean | undefined;
26
+ warningType?: "alert" | "error" | undefined;
27
+ } & {} & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
28
+ export declare const ExpandIcon: import("@emotion/styled").StyledComponent<{
29
+ children?: React.ReactNode;
30
+ classes?: Partial<import("@mui/material").SvgIconClasses> | undefined;
31
+ color?: "inherit" | "disabled" | "error" | "primary" | "secondary" | "action" | "info" | "success" | "warning" | undefined;
32
+ fontSize?: "small" | "inherit" | "medium" | "large" | undefined;
33
+ htmlColor?: string | undefined;
34
+ inheritViewBox?: boolean | undefined;
35
+ shapeRendering?: string | undefined;
36
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
37
+ titleAccess?: string | undefined;
38
+ viewBox?: string | undefined;
39
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.SVGProps<SVGSVGElement>, "string" | "type" | "className" | "style" | "display" | "overflow" | "visibility" | "order" | "color" | "width" | "height" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "clipPath" | "cursor" | "direction" | "filter" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "opacity" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "offset" | "textDecoration" | "azimuth" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "path" | "key" | "id" | "lang" | "tabIndex" | "role" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "end" | "values" | "local" | "x" | "y" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "name" | "spacing" | "elevation" | "in" | "max" | "href" | "orientation" | "media" | "target" | "origin" | "min" | "viewBox" | "method" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan"> & {
40
+ ref?: ((instance: SVGSVGElement | null) => void) | React.RefObject<SVGSVGElement> | null | undefined;
41
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | "color" | "fontSize" | "shapeRendering" | "children" | "sx" | "htmlColor" | "inheritViewBox" | "titleAccess" | "viewBox"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
42
+ anchorEl: HTMLElement | null;
43
+ }, {}, {}>;
44
+ export declare const NameContainer: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material/styles").Theme> & {
45
+ align?: "right" | "left" | "inherit" | "center" | "justify" | undefined;
46
+ children?: React.ReactNode;
47
+ classes?: Partial<import("@mui/material").TypographyClasses> | undefined;
48
+ gutterBottom?: boolean | undefined;
49
+ noWrap?: boolean | undefined;
50
+ paragraph?: boolean | undefined;
51
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
52
+ variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2" | undefined;
53
+ variantMapping?: Partial<Record<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2", string>> | undefined;
54
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "key" | keyof React.HTMLAttributes<HTMLSpanElement>> & {
55
+ ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
56
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | ("border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "p" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform") | "children" | "sx" | "variant" | "align" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
57
+ isSelected: boolean;
58
+ }, {}, {}>;
59
+ export declare const CheckIconStyled: import("@emotion/styled").StyledComponent<{
60
+ children?: React.ReactNode;
61
+ classes?: Partial<import("@mui/material").SvgIconClasses> | undefined;
62
+ color?: "inherit" | "disabled" | "error" | "primary" | "secondary" | "action" | "info" | "success" | "warning" | undefined;
63
+ fontSize?: "small" | "inherit" | "medium" | "large" | undefined;
64
+ htmlColor?: string | undefined;
65
+ inheritViewBox?: boolean | undefined;
66
+ shapeRendering?: string | undefined;
67
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
68
+ titleAccess?: string | undefined;
69
+ viewBox?: string | undefined;
70
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.SVGProps<SVGSVGElement>, "string" | "type" | "className" | "style" | "display" | "overflow" | "visibility" | "order" | "color" | "width" | "height" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "clipPath" | "cursor" | "direction" | "filter" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "opacity" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "offset" | "textDecoration" | "azimuth" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "path" | "key" | "id" | "lang" | "tabIndex" | "role" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "end" | "values" | "local" | "x" | "y" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "name" | "spacing" | "elevation" | "in" | "max" | "href" | "orientation" | "media" | "target" | "origin" | "min" | "viewBox" | "method" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan"> & {
71
+ ref?: ((instance: SVGSVGElement | null) => void) | React.RefObject<SVGSVGElement> | null | undefined;
72
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | "color" | "fontSize" | "shapeRendering" | "children" | "sx" | "htmlColor" | "inheritViewBox" | "titleAccess" | "viewBox"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
73
+ export declare const RemainingCheck: import("@emotion/styled").StyledComponent<{
74
+ children?: React.ReactNode;
75
+ classes?: Partial<import("@mui/material").SvgIconClasses> | undefined;
76
+ color?: "inherit" | "disabled" | "error" | "primary" | "secondary" | "action" | "info" | "success" | "warning" | undefined;
77
+ fontSize?: "small" | "inherit" | "medium" | "large" | undefined;
78
+ htmlColor?: string | undefined;
79
+ inheritViewBox?: boolean | undefined;
80
+ shapeRendering?: string | undefined;
81
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
82
+ titleAccess?: string | undefined;
83
+ viewBox?: string | undefined;
84
+ } & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<React.SVGProps<SVGSVGElement>, "string" | "type" | "className" | "style" | "display" | "overflow" | "visibility" | "order" | "color" | "width" | "height" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "clipPath" | "cursor" | "direction" | "filter" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "opacity" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "offset" | "textDecoration" | "azimuth" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "path" | "key" | "id" | "lang" | "tabIndex" | "role" | "children" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "end" | "values" | "local" | "x" | "y" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "name" | "spacing" | "elevation" | "in" | "max" | "href" | "orientation" | "media" | "target" | "origin" | "min" | "viewBox" | "method" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan"> & {
85
+ ref?: ((instance: SVGSVGElement | null) => void) | React.RefObject<SVGSVGElement> | null | undefined;
86
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | "color" | "fontSize" | "shapeRendering" | "children" | "sx" | "htmlColor" | "inheritViewBox" | "titleAccess" | "viewBox"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
87
+ interface CustomerLocationsProps {
88
+ onListOpen?: () => void;
89
+ onListClose?: () => void;
90
+ }
91
+ declare const _default: React.MemoExoticComponent<({ ...rest }: CustomerLocationsProps) => JSX.Element>;
92
+ export default _default;