@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
|
@@ -218,7 +218,7 @@ const FormInput = ({
|
|
|
218
218
|
themeValues={themeValues}
|
|
219
219
|
$customHeight={customHeight}
|
|
220
220
|
$extraStyles={extraStyles}
|
|
221
|
-
|
|
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
|
-
|
|
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}
|