stone-kit 0.0.441 → 0.0.442
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,6 +1,6 @@
|
|
|
1
1
|
import { ITabSwitcherItem, TabSwitcherProps } from './TabSwitcher.types';
|
|
2
2
|
|
|
3
3
|
declare const SwitcherNamespace: (({ children, variant, isApart, addClassName, col, }: TabSwitcherProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
4
|
-
Item: import('react').ForwardRefExoticComponent<
|
|
4
|
+
Item: import('react').ForwardRefExoticComponent<ITabSwitcherItem & import('react').RefAttributes<HTMLInputElement>>;
|
|
5
5
|
};
|
|
6
6
|
export { SwitcherNamespace as TabSwitcher };
|
|
@@ -4,8 +4,7 @@ declare const TAB_SWITCHER_VARIANTS: {
|
|
|
4
4
|
whiteRow: string;
|
|
5
5
|
grayRow: string;
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
export interface ITabSwitcherItem extends BaseInputProps {
|
|
7
|
+
export interface ITabSwitcherItem extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
9
8
|
addItemClassName?: string;
|
|
10
9
|
index: number;
|
|
11
10
|
isDisabled?: boolean;
|