@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.
- package/dist/components/select/index.d.ts +2 -1
- package/dist/components/table/tableRow/index.d.ts +1 -1
- package/dist/components/themeIcon/index.d.ts +2 -2
- package/dist/index.cjs +949 -2560
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2500 -4108
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
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
|
|
7
|
+
export declare function TableRow({ children, className, ...props }: ITableRow): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
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
|
|
9
|
+
export declare function ThemeIcon({ styleVariant, className, icon, adjustedSize, title, ...props }: IThemeIcon): import("react/jsx-runtime").JSX.Element;
|