@bigbinary/neeto-commons-frontend 2.0.66 → 2.0.67
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/cypress-utils.d.ts +15 -0
- package/initializers.cjs.js +124 -156
- package/initializers.cjs.js.map +1 -1
- package/initializers.js +124 -156
- package/initializers.js.map +1 -1
- package/package.json +1 -1
package/cypress-utils.d.ts
CHANGED
|
@@ -52,6 +52,14 @@ type MemberSelectors = {
|
|
|
52
52
|
searchTextField: string;
|
|
53
53
|
submitButton: string;
|
|
54
54
|
};
|
|
55
|
+
type MemberFormSelectors = {
|
|
56
|
+
emailTextField: string;
|
|
57
|
+
firstNameTextField: string;
|
|
58
|
+
lastNameTextField: string;
|
|
59
|
+
emailInput: string;
|
|
60
|
+
emailErrorField: string;
|
|
61
|
+
cancelButton: string;
|
|
62
|
+
};
|
|
55
63
|
type LoginSelectors = {
|
|
56
64
|
appleAuthenticationButton: string;
|
|
57
65
|
emailTextField: string;
|
|
@@ -136,6 +144,11 @@ type MemberTableTexts = {
|
|
|
136
144
|
role: string;
|
|
137
145
|
teams: string;
|
|
138
146
|
};
|
|
147
|
+
type MemberFormErrorTexts = {
|
|
148
|
+
emailRequired: string;
|
|
149
|
+
emailInvalid: string;
|
|
150
|
+
removeInvalidEmail: string;
|
|
151
|
+
};
|
|
139
152
|
type SignUpTexts = {
|
|
140
153
|
email: string;
|
|
141
154
|
profile: string;
|
|
@@ -303,12 +316,14 @@ export const memberSelectors: MemberSelectors;
|
|
|
303
316
|
export const loginSelectors: LoginSelectors;
|
|
304
317
|
export const profileSelectors: ProfileSelectors;
|
|
305
318
|
export const signUpSelectors: SignUpSelectors;
|
|
319
|
+
export const memberFormSelectors: MemberFormSelectors;
|
|
306
320
|
|
|
307
321
|
// exporting all texts
|
|
308
322
|
|
|
309
323
|
export const commonTexts: CommonTexts;
|
|
310
324
|
export const memberTexts: MemberText;
|
|
311
325
|
export const memberTableTexts: MemberTableTexts;
|
|
326
|
+
export const memberFormErrorTexts: MemberFormErrorTexts;
|
|
312
327
|
export const signUpTexts: SignUpTexts;
|
|
313
328
|
export const environment: Environment;
|
|
314
329
|
export const isStagingEnv: boolean;
|