@thecb/components 9.0.0-beta.8 → 9.0.0

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.d.ts CHANGED
@@ -455,7 +455,7 @@ interface FormInputProps {
455
455
  themeValues?: object;
456
456
  background?: string;
457
457
  customHeight?: string;
458
- autocompleteValue?: string;
458
+ autocompleteValue?: string | null;
459
459
  removeFromValue?: RegExp;
460
460
  dataQa?: string | null;
461
461
  }
@@ -476,7 +476,7 @@ interface FormSelectProps {
476
476
  disabledValues?: string[];
477
477
  themeValues?: object;
478
478
  hasTitles?: boolean;
479
- autocompleteValue?: string;
479
+ autocompleteValue?: string | null;
480
480
  smoothScroll?: boolean;
481
481
  dataQa?: string | null;
482
482
  }