@fattureincloud/fic-design-system 0.7.21-tmp-safari → 0.7.22

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,5 +23,6 @@ declare const _default: React.ForwardRefExoticComponent<import("../label").Label
23
23
  tooltip?: import("../../tooltip").TooltipProps | undefined;
24
24
  unitDropdownProps?: import(".").UnitDropdownProps | undefined;
25
25
  value?: string | number | null | undefined;
26
+ autoComplete?: string | undefined;
26
27
  } & React.RefAttributes<HTMLInputElement>>;
27
28
  export default _default;
@@ -28,5 +28,6 @@ declare const _default: React.ForwardRefExoticComponent<import("../../common/typ
28
28
  tooltip?: import("../../../tooltip").TooltipProps | undefined;
29
29
  unitDropdownProps?: import("./UnitDropdown").UnitDropdownProps | undefined;
30
30
  value?: string | number | null | undefined;
31
+ autoComplete?: string | undefined;
31
32
  } & React.RefAttributes<inputRef>>;
32
33
  export default _default;
@@ -20,6 +20,7 @@ export declare type InputElementProps = CommonFormTypes & HTMLInputProps & {
20
20
  tooltip?: TooltipProps;
21
21
  unitDropdownProps?: UnitDropdownProps;
22
22
  value?: number | string | null;
23
+ autoComplete?: string;
23
24
  };
24
25
  export declare type InputCodeProps = LabelProps & CommonFormTypes & Omit<HTMLInputProps, 'onChange'> & {
25
26
  allowLetters?: boolean;