@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
|
|
1030
|
+
value: string;
|
|
1035
1031
|
}
|
|
1036
1032
|
|
|
1037
1033
|
interface RadioGroupProps {
|
package/package.json
CHANGED