@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/index.mjs
CHANGED
|
@@ -3110,7 +3110,7 @@ var registerFields = [
|
|
|
3110
3110
|
required: true
|
|
3111
3111
|
},
|
|
3112
3112
|
{
|
|
3113
|
-
helperText: "Enter Nickname",
|
|
3113
|
+
helperText: "Enter Nickname (optional)",
|
|
3114
3114
|
keyboardType: "default",
|
|
3115
3115
|
name: "nickName",
|
|
3116
3116
|
placeholder: "Nickname",
|
|
@@ -3187,16 +3187,18 @@ var profileFields = [
|
|
|
3187
3187
|
helperText: "Enter first name",
|
|
3188
3188
|
keyboardType: "default",
|
|
3189
3189
|
name: "firstName",
|
|
3190
|
-
placeholder: "First Name"
|
|
3190
|
+
placeholder: "First Name",
|
|
3191
|
+
required: true
|
|
3191
3192
|
},
|
|
3192
3193
|
{
|
|
3193
3194
|
helperText: "Enter last name",
|
|
3194
3195
|
keyboardType: "default",
|
|
3195
3196
|
name: "lastName",
|
|
3196
|
-
placeholder: "Last Name"
|
|
3197
|
+
placeholder: "Last Name",
|
|
3198
|
+
required: true
|
|
3197
3199
|
},
|
|
3198
3200
|
{
|
|
3199
|
-
helperText: "Enter Nickname",
|
|
3201
|
+
helperText: "Enter Nickname (optional)",
|
|
3200
3202
|
keyboardType: "default",
|
|
3201
3203
|
name: "nickName",
|
|
3202
3204
|
placeholder: "Nickname",
|
|
@@ -3207,6 +3209,7 @@ var profileFields = [
|
|
|
3207
3209
|
keyboardType: "default",
|
|
3208
3210
|
name: "password",
|
|
3209
3211
|
placeholder: "Password",
|
|
3212
|
+
required: true,
|
|
3210
3213
|
secureTextEntry: true
|
|
3211
3214
|
},
|
|
3212
3215
|
{
|
|
@@ -3214,6 +3217,7 @@ var profileFields = [
|
|
|
3214
3217
|
keyboardType: "default",
|
|
3215
3218
|
name: "confirmPassword",
|
|
3216
3219
|
placeholder: "Confirm Password",
|
|
3220
|
+
required: true,
|
|
3217
3221
|
secureTextEntry: true
|
|
3218
3222
|
}
|
|
3219
3223
|
];
|