@thecb/components 8.4.7-beta.6 → 8.4.7-beta.8

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
@@ -828,11 +828,7 @@ interface SearchableSelectProps {
828
828
  fields: {
829
829
  searchTerm: Field;
830
830
  };
831
- actions: {
832
- fields: {
833
- searchTerm: Partial<FieldActions>;
834
- };
835
- };
831
+ actions: FieldActions;
836
832
  disabled?: boolean;
837
833
  placeholder: string;
838
834
  }
@@ -1031,7 +1027,7 @@ declare const Popover: React.FC<Expand<PopoverProps> &
1031
1027
  interface RadioOption {
1032
1028
  id: string;
1033
1029
  labelText: string;
1034
- value: string | boolean;
1030
+ value: string;
1035
1031
  }
1036
1032
 
1037
1033
  interface RadioGroupProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.7-beta.6",
3
+ "version": "8.4.7-beta.8",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -15,11 +15,7 @@ export interface SearchableSelectProps {
15
15
  fields: {
16
16
  searchTerm: Field;
17
17
  };
18
- actions: {
19
- fields: {
20
- searchTerm: Partial<FieldActions>;
21
- };
22
- };
18
+ actions: FieldActions;
23
19
  disabled?: boolean;
24
20
  placeholder: string;
25
21
  }
@@ -5,7 +5,7 @@ import { Field, FieldActions } from "../../../types/common";
5
5
  interface RadioOption {
6
6
  id: string;
7
7
  labelText: string;
8
- value: string | boolean;
8
+ value: string;
9
9
  }
10
10
 
11
11
  export interface RadioGroupProps {