@thecb/components 8.4.7-beta.5 → 8.4.7-beta.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
@@ -828,11 +828,7 @@ interface SearchableSelectProps {
828
828
  fields: {
829
829
  searchTerm: Field;
830
830
  };
831
- actions: {
832
- fields: {
833
- searchTerm: FieldActions;
834
- };
835
- };
831
+ actions: FieldActions;
836
832
  disabled?: boolean;
837
833
  placeholder: string;
838
834
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.7-beta.5",
3
+ "version": "8.4.7-beta.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 {
@@ -15,11 +15,7 @@ export interface SearchableSelectProps {
15
15
  fields: {
16
16
  searchTerm: Field;
17
17
  };
18
- actions: {
19
- fields: {
20
- searchTerm: FieldActions;
21
- };
22
- };
18
+ actions: FieldActions;
23
19
  disabled?: boolean;
24
20
  placeholder: string;
25
21
  }