@edvisor/product-language 0.10.42 → 0.10.44
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/index.cjs +1 -1
- package/index.js +1 -1
- package/lib/components/select/index.d.ts +1 -1
- package/lib/components/tabs/tabs.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
1
2
|
import { FC, PropsWithChildren, Slot, StylableSlot } from '@helpers';
|
|
2
3
|
declare class Content extends StylableSlot {
|
|
3
4
|
}
|
|
@@ -7,7 +8,7 @@ declare type SubComponents = {
|
|
|
7
8
|
Content: typeof Content;
|
|
8
9
|
TabList: typeof Navigation;
|
|
9
10
|
};
|
|
10
|
-
interface ITabsProps extends PropsWithChildren {
|
|
11
|
+
interface ITabsProps extends PropsWithChildren, Omit<HTMLAttributes<HTMLElement>, 'onChange'> {
|
|
11
12
|
secondary?: boolean;
|
|
12
13
|
selected: number;
|
|
13
14
|
onChange?: (selected: number) => void;
|