@aveonline/ui-react 2.10.4 → 2.10.5
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/ui/molecules/Tab/ITab.d.ts +1 -1
- package/dist/ui/molecules/Tab/Tab.d.ts +1 -1
- package/dist/ui-react.mjs +1114 -1097
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ export interface ITab {
|
|
|
2
2
|
children?: string | number | JSX.Element;
|
|
3
3
|
isDisabled?: boolean;
|
|
4
4
|
total?: number;
|
|
5
|
+
showIcon?: boolean;
|
|
5
6
|
description?: string;
|
|
6
7
|
/**
|
|
7
8
|
* option for fitted variant with total
|
|
@@ -35,7 +36,6 @@ export interface ITabs {
|
|
|
35
36
|
size?: 'sm' | 'full';
|
|
36
37
|
setActive?: (value: boolean) => void;
|
|
37
38
|
active?: boolean;
|
|
38
|
-
showIcon?: boolean;
|
|
39
39
|
activeBlue?: boolean;
|
|
40
40
|
tittle?: string;
|
|
41
41
|
}
|
|
@@ -2,5 +2,5 @@ import { ITabs } from './ITab';
|
|
|
2
2
|
/**
|
|
3
3
|
* Use to alternate among related views within the same context.
|
|
4
4
|
*/
|
|
5
|
-
declare function Tab({ tabs, variant, defaultIndex, onChange, size, active, setActive,
|
|
5
|
+
declare function Tab({ tabs, variant, defaultIndex, onChange, size, active, setActive, activeBlue }: ITabs): JSX.Element;
|
|
6
6
|
export default Tab;
|