skillgrid 0.0.62 → 0.0.64

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.
@@ -389,6 +389,7 @@ export declare const ServiceIcons: {
389
389
  readonly Medium: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
390
390
  readonly MediumBrand: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
391
391
  readonly MediumSolid: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
392
+ readonly MaxBrand: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
392
393
  readonly OkBrand: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
393
394
  readonly OkBrandAlt: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
394
395
  readonly OkGrayscale: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
@@ -3,4 +3,4 @@ import { InputBaseProps } from './InputBase.type';
3
3
  * Универсальная обертка для полей ввода
4
4
  * Предоставляет общую логику: метки, описания, ошибки, секции, состояния
5
5
  */
6
- export declare const InputBase: import('react').ForwardRefExoticComponent<InputBaseProps & import('react').RefAttributes<HTMLDivElement>>;
6
+ export declare const InputBase: import('react').ForwardRefExoticComponent<InputBaseProps & import('react').RefAttributes<HTMLInputElement>>;
@@ -8,7 +8,7 @@ export interface XIconProps {
8
8
  /** Цвет иконки */
9
9
  color?: string;
10
10
  /** Обработчик клика */
11
- onClick?: () => void;
11
+ onClick?: (e: React.MouseEvent<SVGSVGElement>) => void;
12
12
  /** Дополнительные пропсы */
13
13
  [key: string]: unknown;
14
14
  }
@@ -3,4 +3,4 @@ import { TextAreaProps } from './TextArea.type';
3
3
  * Компонент многострочного текстового поля
4
4
  * Восстановленная версия с полной логикой стилей
5
5
  */
6
- export declare const TextArea: import('react').ForwardRefExoticComponent<TextAreaProps & import('react').RefAttributes<HTMLDivElement>>;
6
+ export declare const TextArea: import('react').ForwardRefExoticComponent<TextAreaProps & import('react').RefAttributes<HTMLInputElement>>;