@youngonesworks/ui 0.1.30 → 0.1.31

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,4 +1,5 @@
1
- import React, { type ReactElement } from 'react';
1
+ import * as React from 'react';
2
+ import { type ReactElement } from 'react';
2
3
  import { type ActionMeta, type GroupBase, type Props, type PropsValue, type SingleValue } from 'react-select';
3
4
  interface CustomSelectProps<T> extends Props<T, false, GroupBase<T>> {
4
5
  small?: boolean;
@@ -4,5 +4,5 @@ interface ITableRow extends Omit<HTMLAttributes<HTMLDivElement>, 'className'> {
4
4
  className?: string;
5
5
  header?: boolean;
6
6
  }
7
- export declare const TableRow: import("react").ForwardRefExoticComponent<ITableRow & import("react").RefAttributes<HTMLDivElement>>;
7
+ export declare function TableRow({ children, className, ...props }: ITableRow): import("react/jsx-runtime").JSX.Element;
8
8
  export {};
@@ -1,4 +1,4 @@
1
- import React, { type HTMLAttributes } from 'react';
1
+ import { type HTMLAttributes } from 'react';
2
2
  export interface IThemeIcon extends Omit<HTMLAttributes<HTMLDivElement>, 'className'> {
3
3
  styleVariant?: 'black' | 'gray' | 'pink' | 'pink-with-background' | 'turquoise' | 'accent-blue' | 'check' | 'warning' | 'error';
4
4
  icon: React.ReactNode;
@@ -6,4 +6,4 @@ export interface IThemeIcon extends Omit<HTMLAttributes<HTMLDivElement>, 'classN
6
6
  adjustedSize?: string | number;
7
7
  title: string;
8
8
  }
9
- export declare const ThemeIcon: React.ForwardRefExoticComponent<IThemeIcon & React.RefAttributes<HTMLDivElement>>;
9
+ export declare function ThemeIcon({ styleVariant, className, icon, adjustedSize, title, ...props }: IThemeIcon): import("react/jsx-runtime").JSX.Element;