dfh-ui-library 1.13.87 → 1.13.89

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.
@@ -32,6 +32,7 @@ interface ConboboxV2Props {
32
32
  isBorderedError?: boolean;
33
33
  onOpen?: () => Promise<void>;
34
34
  isLoading?: boolean;
35
+ maxLength?: number;
35
36
  }
36
37
  declare const ConboboxV2: React.FC<ConboboxV2Props>;
37
38
  export default ConboboxV2;
@@ -33,6 +33,7 @@ interface SelectV2Props {
33
33
  isBorderedError?: boolean;
34
34
  onOpen?: () => Promise<void>;
35
35
  isLoading?: boolean;
36
+ maxLength?: number;
36
37
  }
37
38
  declare const SelectV2: React.FC<SelectV2Props>;
38
39
  export default SelectV2;
@@ -512,6 +512,8 @@ export interface ButtonGroupProps extends InputGroupProps {
512
512
  buttonType?: string;
513
513
  disabled?: boolean;
514
514
  disableApplyButton?: boolean;
515
+ selectedUserValues?: OptionProps[];
516
+ setSelectedUserValues?: (users: OptionProps[]) => void;
515
517
  }
516
518
  export interface ButtonGroupWithInputsProps extends Omit<ButtonGroupProps, 'selected' | 'onSelect'> {
517
519
  options: {