@thecb/components 8.4.10-beta.4 → 8.4.10-beta.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.10-beta.4",
3
+ "version": "8.4.10-beta.5",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -218,7 +218,7 @@ const FormInput = ({
218
218
  themeValues={themeValues}
219
219
  $customHeight={customHeight}
220
220
  $extraStyles={extraStyles}
221
- autocomplete={autocomplete}
221
+ autoComplete={autocomplete}
222
222
  {...props}
223
223
  />
224
224
  ) : (
@@ -244,12 +244,12 @@ const FormInput = ({
244
244
  background={background}
245
245
  $customHeight={customHeight}
246
246
  $extraStyles={extraStyles}
247
- autocomplete={autocomplete}
247
+ autoComplete={autocomplete}
248
248
  {...props}
249
249
  />
250
250
  )}
251
251
  </Box>
252
- <Stack direction="row" justify="space-between">
252
+ <Stack direction="row" justify="space-between" aria-live="polite">
253
253
  {(field.hasErrors && field.dirty) || (field.hasErrors && showErrors) ? (
254
254
  <Text
255
255
  color={ERROR_COLOR}
@@ -46,7 +46,7 @@ const EmailForm = ({
46
46
  showErrors={showErrors}
47
47
  onKeyDown={e => e.key === "Enter" && handleSubmit(e)}
48
48
  isEmail
49
- autocomplete="email"
49
+ autoComplete="email"
50
50
  />
51
51
  {showWalletCheckbox && (
52
52
  <Checkbox