@zealicsolutions/web-ui 0.3.164 → 0.3.165

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,6 @@ export declare type InputFieldProps = Partial<{
10
10
  required: boolean;
11
11
  optional: boolean;
12
12
  defaultValue: string;
13
- displayOnlyInputDefaultValue?: string;
14
13
  inputProps: InputProps;
15
14
  styles: StylesType;
16
15
  labelsProps: FieldLabelsProps;
@@ -19,4 +18,4 @@ export declare type InputFieldProps = Partial<{
19
18
  formData: AnyObject;
20
19
  htmlElementId: string;
21
20
  }>;
22
- export declare const InputField: ({ control, name, inputProps, styles, labelsProps, defaultValue, displayOnlyInputDefaultValue, optional, required, rules, conditionConfig, state, formData, htmlElementId, }: InputFieldProps) => JSX.Element | null;
21
+ export declare const InputField: ({ control, name, inputProps, styles, labelsProps, defaultValue, optional, required, rules, conditionConfig, state, formData, htmlElementId, }: InputFieldProps) => JSX.Element | null;
@@ -3,7 +3,7 @@ import { StoryFn } from '@storybook/react';
3
3
  import { InputFieldProps } from './InputField';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ control, name, inputProps, styles, labelsProps, defaultValue, displayOnlyInputDefaultValue, optional, required, rules, conditionConfig, state, formData, htmlElementId, }: Partial<{
6
+ component: ({ control, name, inputProps, styles, labelsProps, defaultValue, optional, required, rules, conditionConfig, state, formData, htmlElementId, }: Partial<{
7
7
  name: string;
8
8
  control: import("react-hook-form").Control<any, any>;
9
9
  rules: Omit<Partial<{
@@ -27,7 +27,6 @@ declare const _default: {
27
27
  required: boolean;
28
28
  optional: boolean;
29
29
  defaultValue: string;
30
- displayOnlyInputDefaultValue?: string | undefined;
31
30
  inputProps: Partial<{
32
31
  value: string;
33
32
  leftIcon: import("../..").InputIconProps;