dfh-ui-library 1.13.11 → 1.13.12

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.
@@ -244,6 +244,7 @@ export interface CustomDatePickerProps {
244
244
  dateFormat?: string;
245
245
  enableClear?: boolean;
246
246
  maxDate?: Date;
247
+ disabled?: boolean;
247
248
  }
248
249
  export interface PhoneNumberInputProps {
249
250
  value: string;
@@ -486,6 +487,7 @@ export interface ButtonGroupProps extends InputGroupProps {
486
487
  options: {
487
488
  id: number;
488
489
  value: string;
490
+ disabled?: boolean;
489
491
  }[];
490
492
  optionsUser?: OptionProps[];
491
493
  onSelect: (selectedOption: number) => void;
@@ -502,6 +504,7 @@ export interface ButtonGroupProps extends InputGroupProps {
502
504
  onValueChange?: (value: string) => void;
503
505
  viewMode?: boolean;
504
506
  buttonType?: string;
507
+ disabled?: boolean;
505
508
  }
506
509
  export interface ButtonGroupMultiProps extends InputGroupProps {
507
510
  options: {