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

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,9 +828,9 @@ interface SearchableSelectProps {
828
828
  fields: {
829
829
  searchTerm: Field;
830
830
  };
831
- actions?: {
831
+ actions: {
832
832
  fields: {
833
- searchTerm: FieldActions;
833
+ searchTerm: Partial<FieldActions>;
834
834
  };
835
835
  };
836
836
  disabled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.7-beta.4",
3
+ "version": "8.4.7-beta.6",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -15,9 +15,9 @@ export interface SearchableSelectProps {
15
15
  fields: {
16
16
  searchTerm: Field;
17
17
  };
18
- actions?: {
18
+ actions: {
19
19
  fields: {
20
- searchTerm: FieldActions;
20
+ searchTerm: Partial<FieldActions>;
21
21
  };
22
22
  };
23
23
  disabled?: boolean;