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
  /**
package/dist/index.d.ts CHANGED
@@ -1215,6 +1215,7 @@ interface IInputProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
1215
1215
  value?: string | undefined;
1216
1216
  setValue?: (value: string) => void;
1217
1217
  isRequired?: boolean;
1218
+ selected?: selectedValue;
1218
1219
  }
1219
1220
  interface ICardProps {
1220
1221
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.109",
3
+ "version": "1.13.112",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",