@tap-payments/auth-jsconnect 2.0.115-test → 2.0.116-test

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.
@@ -16,7 +16,7 @@ export var REGEX_BENEFICIARY_NAME = /^([\u0600-\u065F\u066A-\u06EF\u06FA-\u06FFa
16
16
  export var REGEX_ALPHANUMERIC = /^[a-zA-Z0-9!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/? ]*$/g;
17
17
  export var REGEX_BRAND_NAME = /^(([a-zA-Z0-9])+\s)*[a-zA-Z0-9]+$/;
18
18
  export var EMAIL_MAX_LENGTH = 50;
19
- export var LINKEDIN_URL = /^((http|https):\/\/)(www.linkedin.com\/)in(\/)[a-zA-Z0-9-]+$/;
19
+ export var LINKEDIN_URL = /^((http|https):\/\/)(www.linkedin.com\/)in(\/)[a-zA-Z0-9-\/]+$/;
20
20
  export var SOCIAL_USERNAME = /^[A-Za-z-0-9\d._]{3,}$/;
21
21
  export var DIGITS_ONLY = /^\d+$/;
22
22
  export var REGEX_PHONE_APP_NAME = /^[a-zA-Z0-9[._-]*$/;
@@ -218,7 +218,7 @@ export var verifyLeadOTP = createAsyncThunk('verifyLeadOTP', function (params, t
218
218
  hasBusinessCRActivitiesCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES);
219
219
  hasBusinessCustomersCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS);
220
220
  isIdentityAuthStep = data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH;
221
- if (!isSA(countryIso2)) return [3, 4];
221
+ if (!(isSA(countryIso2) && !isIdentityAuthStep)) return [3, 4];
222
222
  return [4, thunkApi.dispatch(retrieveEntityList({ leadId: data === null || data === void 0 ? void 0 : data.id }))];
223
223
  case 3:
224
224
  _j.sent();
@@ -95,6 +95,7 @@ var BackButton = styled('button')(function (_a) {
95
95
  height: 44,
96
96
  appearance: 'none',
97
97
  background: 'none',
98
+ pointerEvents: 'auto',
98
99
  border: 'none',
99
100
  color: theme.palette.primary.main,
100
101
  fontSize: theme.typography.body1.fontSize,
@@ -94,6 +94,7 @@ var BackButton = styled('button')(function (_a) {
94
94
  var theme = _a.theme;
95
95
  return ({
96
96
  cursor: 'pointer',
97
+ pointerEvents: 'auto',
97
98
  height: 44,
98
99
  appearance: 'none',
99
100
  background: 'none',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tap-payments/auth-jsconnect",
3
- "version": "2.0.115-test",
3
+ "version": "2.0.116-test",
4
4
  "description": "connect library, auth",
5
5
  "private": false,
6
6
  "main": "build/index.js",