@trafilea/afrodita-components 5.0.0-beta.89 → 5.0.0-beta.91

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.
package/build/index.d.ts CHANGED
@@ -1337,6 +1337,10 @@ interface TimerProps extends TimeProps {
1337
1337
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1338
1338
 
1339
1339
  interface BaseInputCommmonProps {
1340
+ id?: string;
1341
+ innerRef?: React.Ref<HTMLInputElement>;
1342
+ onBlur?: () => void;
1343
+ hideClear?: boolean;
1340
1344
  defaultValue?: string;
1341
1345
  maxLength?: number;
1342
1346
  placeholder?: string;
@@ -1399,7 +1403,7 @@ declare type CustomProps = BaseInputProps & {
1399
1403
  };
1400
1404
 
1401
1405
  declare const Input: {
1402
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, ...rest }: BaseInputProps) => JSX.Element;
1406
+ Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputProps) => JSX.Element;
1403
1407
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1404
1408
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1405
1409
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1982,8 +1986,14 @@ interface IconList {
1982
1986
  iconColor: string;
1983
1987
  iconName: string;
1984
1988
  iconTitle: string;
1985
- }
1986
- declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor }: IconList) => JSX.Element | null;
1989
+ iconSizeDesktop?: number;
1990
+ iconSizeMobile?: number;
1991
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
1992
+ iconTitleStyle?: string;
1993
+ iconStyle?: string;
1994
+ isTitleInnerHtml?: boolean;
1995
+ }
1996
+ declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
1987
1997
 
1988
1998
  interface NoteProps {
1989
1999
  accentColor: string;