@timardex/cluemart-shared 1.4.62 → 1.4.64

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/index.mjs CHANGED
@@ -423,10 +423,10 @@ var priceUnits = [
423
423
  { label: "Bunch", value: "BUNCH" },
424
424
  { label: "Tray", value: "TRAY" },
425
425
  { label: "Punnet", value: "PUNNET" },
426
- { label: "Gram (g)", value: "GRAM" },
427
- { label: "Kilogram (kg)", value: "KILOGRAM" },
428
- { label: "Litre (L)", value: "LITRE" },
429
- { label: "Millilitre (ml)", value: "MILLILITRE" },
426
+ { label: "Gr", value: "GRAM" },
427
+ { label: "Kg", value: "KILOGRAM" },
428
+ { label: "L", value: "LITRE" },
429
+ { label: "Ml", value: "MILLILITRE" },
430
430
  { label: "Dozen", value: "DOZEN" },
431
431
  { label: "Half dozen", value: "HALF_DOZEN" }
432
432
  ];
@@ -1080,7 +1080,7 @@ var loginFields = [
1080
1080
  ...emailField
1081
1081
  },
1082
1082
  {
1083
- helperText: "Enter password *",
1083
+ helperText: "Enter password",
1084
1084
  keyboardType: "default",
1085
1085
  name: "password",
1086
1086
  placeholder: "Password",
@@ -1089,13 +1089,13 @@ var loginFields = [
1089
1089
  ];
1090
1090
  var registerFields = [
1091
1091
  {
1092
- helperText: "Enter first name *",
1092
+ helperText: "Enter first name",
1093
1093
  keyboardType: "default",
1094
1094
  name: "firstName",
1095
1095
  placeholder: "First Name"
1096
1096
  },
1097
1097
  {
1098
- helperText: "Enter last name *",
1098
+ helperText: "Enter last name",
1099
1099
  keyboardType: "default",
1100
1100
  name: "lastName",
1101
1101
  placeholder: "Last Name"
@@ -1104,7 +1104,7 @@ var registerFields = [
1104
1104
  ...emailField
1105
1105
  },
1106
1106
  {
1107
- helperText: "Enter password *",
1107
+ helperText: "Enter password",
1108
1108
  keyboardType: "default",
1109
1109
  name: "password",
1110
1110
  placeholder: "Password",
@@ -1114,19 +1114,19 @@ var registerFields = [
1114
1114
  var requestPasswordResetFields = [
1115
1115
  {
1116
1116
  ...emailField,
1117
- helperText: "Enter email address to reset your password *"
1117
+ helperText: "Enter email address to reset your password"
1118
1118
  }
1119
1119
  ];
1120
1120
  var resetPasswordFields = [
1121
1121
  {
1122
- helperText: "Enter your new password *",
1122
+ helperText: "Enter your new password",
1123
1123
  keyboardType: "default",
1124
1124
  name: "password",
1125
1125
  placeholder: "Password",
1126
1126
  secureTextEntry: true
1127
1127
  },
1128
1128
  {
1129
- helperText: "Confirm your new password *",
1129
+ helperText: "Confirm your new password",
1130
1130
  keyboardType: "default",
1131
1131
  name: "confirmPassword",
1132
1132
  placeholder: "Confirm Password",
@@ -1137,10 +1137,10 @@ var validateVerificationTokenFields = [
1137
1137
  {
1138
1138
  ...emailField,
1139
1139
  disabled: true,
1140
- helperText: "Your email address *"
1140
+ helperText: "Your email address"
1141
1141
  },
1142
1142
  {
1143
- helperText: "Enter the Verification code sent to you by email *",
1143
+ helperText: "Enter the Verification code sent to you by email",
1144
1144
  keyboardType: "number-pad",
1145
1145
  name: "verificationToken",
1146
1146
  placeholder: "Verification code"