dfh-ui-library 1.13.11 → 1.13.13

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