@timardex/cluemart-shared 1.7.78 → 1.7.80
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/dist/apollo/index.cjs +5 -3
- package/dist/apollo/index.cjs.map +1 -1
- package/dist/apollo/index.mjs +5 -3
- package/dist/apollo/index.mjs.map +1 -1
- package/dist/{chunk-DEQKDQXZ.mjs → chunk-EYEFK72D.mjs} +9 -5
- package/dist/{chunk-DEQKDQXZ.mjs.map → chunk-EYEFK72D.mjs.map} +1 -1
- package/dist/formFields/index.cjs +8 -4
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +1 -1
- package/dist/hooks/index.cjs +8 -4
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +8 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -2359,7 +2359,7 @@ var registerFields = [
|
|
|
2359
2359
|
required: true
|
|
2360
2360
|
},
|
|
2361
2361
|
{
|
|
2362
|
-
helperText: "Enter Nickname",
|
|
2362
|
+
helperText: "Enter Nickname (optional)",
|
|
2363
2363
|
keyboardType: "default",
|
|
2364
2364
|
name: "nickName",
|
|
2365
2365
|
placeholder: "Nickname",
|
|
@@ -2418,16 +2418,18 @@ var profileFields = [
|
|
|
2418
2418
|
helperText: "Enter first name",
|
|
2419
2419
|
keyboardType: "default",
|
|
2420
2420
|
name: "firstName",
|
|
2421
|
-
placeholder: "First Name"
|
|
2421
|
+
placeholder: "First Name",
|
|
2422
|
+
required: true
|
|
2422
2423
|
},
|
|
2423
2424
|
{
|
|
2424
2425
|
helperText: "Enter last name",
|
|
2425
2426
|
keyboardType: "default",
|
|
2426
2427
|
name: "lastName",
|
|
2427
|
-
placeholder: "Last Name"
|
|
2428
|
+
placeholder: "Last Name",
|
|
2429
|
+
required: true
|
|
2428
2430
|
},
|
|
2429
2431
|
{
|
|
2430
|
-
helperText: "Enter Nickname",
|
|
2432
|
+
helperText: "Enter Nickname (optional)",
|
|
2431
2433
|
keyboardType: "default",
|
|
2432
2434
|
name: "nickName",
|
|
2433
2435
|
placeholder: "Nickname",
|
|
@@ -2438,6 +2440,7 @@ var profileFields = [
|
|
|
2438
2440
|
keyboardType: "default",
|
|
2439
2441
|
name: "password",
|
|
2440
2442
|
placeholder: "Password",
|
|
2443
|
+
required: true,
|
|
2441
2444
|
secureTextEntry: true
|
|
2442
2445
|
},
|
|
2443
2446
|
{
|
|
@@ -2445,6 +2448,7 @@ var profileFields = [
|
|
|
2445
2448
|
keyboardType: "default",
|
|
2446
2449
|
name: "confirmPassword",
|
|
2447
2450
|
placeholder: "Confirm Password",
|
|
2451
|
+
required: true,
|
|
2448
2452
|
secureTextEntry: true
|
|
2449
2453
|
}
|
|
2450
2454
|
];
|