dfh-ui-library 1.2.41 → 1.2.42

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.
@@ -0,0 +1 @@
1
+ export { default } from "./ButtonGroup";
@@ -20,3 +20,4 @@ export { default as CustomFileInput } from "./CustomFileInput";
20
20
  export { Heading } from "./core/Heading";
21
21
  export { default as TagDropdown } from "./TagDropdown";
22
22
  export { default as SearchDropdownWithButton } from "./SearchDropdownWithButton";
23
+ export { default as ButtonGroup } from "./ButtonGroup";
@@ -219,6 +219,12 @@ export interface DropdownSearchProps {
219
219
  labelType?: LableTypes;
220
220
  onSelectedValuesChange?: (selectedValue: OptionProps) => void;
221
221
  buttonProps?: BtnOptionDropdown[];
222
+ defaultValue?: string;
223
+ additionalErrorClasses?: string;
224
+ error?: string;
225
+ additionalClasses?: string;
226
+ readOnly?: boolean;
227
+ isBorderedError?: boolean;
222
228
  }
223
229
  export type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
224
230
  export interface ButtonGroupProps {