@thecb/components 10.9.0-beta.4 → 10.9.0-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": "10.9.0-beta.4",
3
+ "version": "10.9.0-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",
@@ -229,14 +229,14 @@ const FormInput = ({
229
229
  autoComplete={autocompleteValue}
230
230
  required={isRequired}
231
231
  // Additional handler to detect autofilled values
232
- {...(autocompleteValue && {
233
- onFocus: e => {
234
- if (!isFocused) {
235
- setValue(e.target?.value);
236
- setIsFocused(true);
237
- }
238
- }
239
- })}
232
+ // {...(autocompleteValue && {
233
+ // onFocus: e => {
234
+ // if (!isFocused) {
235
+ // setValue(e.target?.value);
236
+ // setIsFocused(true);
237
+ // }
238
+ // }
239
+ // })}
240
240
  {...props}
241
241
  />
242
242
  ) : (