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: {
package/dist/index.d.ts CHANGED
@@ -475,6 +475,8 @@ interface ButtonGroupProps extends InputGroupProps {
475
475
  buttonType?: string;
476
476
  disabled?: boolean;
477
477
  disableApplyButton?: boolean;
478
+ selectedUserValues?: OptionProps[];
479
+ setSelectedUserValues?: (users: OptionProps[]) => void;
478
480
  }
479
481
  interface ButtonGroupMultiProps extends InputGroupProps {
480
482
  options: {
@@ -1422,6 +1424,7 @@ interface SelectV2Props {
1422
1424
  isBorderedError?: boolean;
1423
1425
  onOpen?: () => Promise<void>;
1424
1426
  isLoading?: boolean;
1427
+ maxLength?: number;
1425
1428
  }
1426
1429
  declare const SelectV2: React__default.FC<SelectV2Props>;
1427
1430
 
@@ -1527,6 +1530,7 @@ interface ConboboxV2Props {
1527
1530
  isBorderedError?: boolean;
1528
1531
  onOpen?: () => Promise<void>;
1529
1532
  isLoading?: boolean;
1533
+ maxLength?: number;
1530
1534
  }
1531
1535
  declare const ConboboxV2: React__default.FC<ConboboxV2Props>;
1532
1536
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.87",
3
+ "version": "1.13.89",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",