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: {
package/dist/index.d.ts CHANGED
@@ -221,6 +221,7 @@ interface CustomDatePickerProps {
221
221
  dateFormat?: string;
222
222
  enableClear?: boolean;
223
223
  maxDate?: Date;
224
+ disabled?: boolean;
224
225
  }
225
226
  interface PhoneNumberInputProps {
226
227
  value: string;
@@ -448,6 +449,7 @@ interface ButtonGroupProps extends InputGroupProps {
448
449
  options: {
449
450
  id: number;
450
451
  value: string;
452
+ disabled?: boolean;
451
453
  }[];
452
454
  optionsUser?: OptionProps[];
453
455
  onSelect: (selectedOption: number) => void;
@@ -464,6 +466,7 @@ interface ButtonGroupProps extends InputGroupProps {
464
466
  onValueChange?: (value: string) => void;
465
467
  viewMode?: boolean;
466
468
  buttonType?: string;
469
+ disabled?: boolean;
467
470
  }
468
471
  interface ButtonGroupMultiProps extends InputGroupProps {
469
472
  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.12",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",