dfh-ui-library 1.13.109 → 1.13.112

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.
@@ -1,5 +1,5 @@
1
- import React from "react";
2
- import { IInputProps } from "../../../shared/models/components/base.model";
1
+ import React from 'react';
2
+ import { IInputProps } from '../../../shared/models/components/base.model';
3
3
  /**
4
4
  * Primary UI component for user interaction
5
5
  */
@@ -525,6 +525,7 @@ export interface IInputProps extends TextareaHTMLAttributes<HTMLTextAreaElement>
525
525
  value?: string | undefined;
526
526
  setValue?: (value: string) => void;
527
527
  isRequired?: boolean;
528
+ selected?: selectedValue;
528
529
  }
529
530
  export interface IInputPropsV2 extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'onChange'> {
530
531
  /**