@thecb/components 8.4.7-beta.7 → 8.4.7

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
@@ -1027,7 +1027,7 @@ declare const Popover: React.FC<Expand<PopoverProps> &
1027
1027
  interface RadioOption {
1028
1028
  id: string;
1029
1029
  labelText: string;
1030
- value: string | boolean;
1030
+ value: string;
1031
1031
  }
1032
1032
 
1033
1033
  interface RadioGroupProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.7-beta.7",
3
+ "version": "8.4.7",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -3,7 +3,7 @@ import Expand from "../../../util/expand";
3
3
  import {
4
4
  Field,
5
5
  FieldActions,
6
- SearchableSelectOption,
6
+ SearchableSelectOption
7
7
  } from "../../../types/common";
8
8
 
9
9
  export interface SearchableSelectProps {
@@ -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 {