@thecb/components 9.0.6-beta.3 → 9.0.6-beta.4

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
@@ -479,6 +479,7 @@ interface FormSelectProps {
479
479
  autocompleteValue?: string | null;
480
480
  smoothScroll?: boolean;
481
481
  dataQa?: string | null;
482
+ widthFitOptions?: boolean;
482
483
  }
483
484
 
484
485
  declare const FormSelect: React.FC<Expand<FormSelectProps> &
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "9.0.6-beta.3",
3
+ "version": "9.0.6-beta.4",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -23,6 +23,7 @@ export interface FormSelectProps {
23
23
  autocompleteValue?: string | null;
24
24
  smoothScroll?: boolean;
25
25
  dataQa?: string | null;
26
+ widthFitOptions?: boolean;
26
27
  }
27
28
 
28
29
  export const FormSelect: React.FC<Expand<FormSelectProps> &