@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.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -3607,7 +3607,7 @@ var registerFields = [
|
|
|
3607
3607
|
required: true
|
|
3608
3608
|
},
|
|
3609
3609
|
{
|
|
3610
|
-
helperText: "Enter Nickname",
|
|
3610
|
+
helperText: "Enter Nickname (optional)",
|
|
3611
3611
|
keyboardType: "default",
|
|
3612
3612
|
name: "nickName",
|
|
3613
3613
|
placeholder: "Nickname",
|
|
@@ -3684,16 +3684,18 @@ var profileFields = [
|
|
|
3684
3684
|
helperText: "Enter first name",
|
|
3685
3685
|
keyboardType: "default",
|
|
3686
3686
|
name: "firstName",
|
|
3687
|
-
placeholder: "First Name"
|
|
3687
|
+
placeholder: "First Name",
|
|
3688
|
+
required: true
|
|
3688
3689
|
},
|
|
3689
3690
|
{
|
|
3690
3691
|
helperText: "Enter last name",
|
|
3691
3692
|
keyboardType: "default",
|
|
3692
3693
|
name: "lastName",
|
|
3693
|
-
placeholder: "Last Name"
|
|
3694
|
+
placeholder: "Last Name",
|
|
3695
|
+
required: true
|
|
3694
3696
|
},
|
|
3695
3697
|
{
|
|
3696
|
-
helperText: "Enter Nickname",
|
|
3698
|
+
helperText: "Enter Nickname (optional)",
|
|
3697
3699
|
keyboardType: "default",
|
|
3698
3700
|
name: "nickName",
|
|
3699
3701
|
placeholder: "Nickname",
|
|
@@ -3704,6 +3706,7 @@ var profileFields = [
|
|
|
3704
3706
|
keyboardType: "default",
|
|
3705
3707
|
name: "password",
|
|
3706
3708
|
placeholder: "Password",
|
|
3709
|
+
required: true,
|
|
3707
3710
|
secureTextEntry: true
|
|
3708
3711
|
},
|
|
3709
3712
|
{
|
|
@@ -3711,6 +3714,7 @@ var profileFields = [
|
|
|
3711
3714
|
keyboardType: "default",
|
|
3712
3715
|
name: "confirmPassword",
|
|
3713
3716
|
placeholder: "Confirm Password",
|
|
3717
|
+
required: true,
|
|
3714
3718
|
secureTextEntry: true
|
|
3715
3719
|
}
|
|
3716
3720
|
];
|