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: {
package/dist/index.d.ts CHANGED
@@ -101,6 +101,7 @@ interface MessageProps {
101
101
  type: string;
102
102
  text: string;
103
103
  onClose?: () => void;
104
+ isVisible?: boolean;
104
105
  }
105
106
  interface BreadcrumbProps {
106
107
  items: BreadcrumbItem[];
@@ -221,6 +222,7 @@ interface CustomDatePickerProps {
221
222
  dateFormat?: string;
222
223
  enableClear?: boolean;
223
224
  maxDate?: Date;
225
+ disabled?: boolean;
224
226
  }
225
227
  interface PhoneNumberInputProps {
226
228
  value: string;
@@ -448,6 +450,7 @@ interface ButtonGroupProps extends InputGroupProps {
448
450
  options: {
449
451
  id: number;
450
452
  value: string;
453
+ disabled?: boolean;
451
454
  }[];
452
455
  optionsUser?: OptionProps[];
453
456
  onSelect: (selectedOption: number) => void;
@@ -464,6 +467,7 @@ interface ButtonGroupProps extends InputGroupProps {
464
467
  onValueChange?: (value: string) => void;
465
468
  viewMode?: boolean;
466
469
  buttonType?: string;
470
+ disabled?: boolean;
467
471
  }
468
472
  interface ButtonGroupMultiProps extends InputGroupProps {
469
473
  options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.11",
3
+ "version": "1.13.13",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",