@conboai/storybook.components 0.2.44 → 0.2.47
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/build/index.d.ts +0 -1
- package/dist/components/CustomInput/CustomInput.d.ts +2 -1
- package/dist/components/CustomInput/styles.d.ts +1 -1
- package/dist/components/MainTable/styles.d.ts +14 -1
- package/dist/storybook.components.mjs +8661 -9715
- package/package.json +1 -1
- package/dist/components/VerticalNavigation/components/Link.d.ts +0 -4
- package/dist/components/VerticalNavigation/components/ListItemLink.d.ts +0 -12
- package/dist/components/VerticalNavigation/components/Router.d.ts +0 -5
- package/dist/components/VerticalNavigation/components/VerticalNavigation.d.ts +0 -16
- package/dist/components/VerticalNavigation/index.d.ts +0 -1
- package/dist/components/VerticalNavigation/styles.d.ts +0 -5
- package/dist/mocks/navigation.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { default as icons } from '../../Svg/icons';
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
interface ListItemLinkProps {
|
|
4
|
-
icon?: keyof typeof icons;
|
|
5
|
-
primary: string;
|
|
6
|
-
to: string;
|
|
7
|
-
isActive?: boolean;
|
|
8
|
-
themeColor?: string;
|
|
9
|
-
themeActive?: string;
|
|
10
|
-
}
|
|
11
|
-
declare function ListItemLink({ icon, primary, to, isActive, themeColor, themeActive }: ListItemLinkProps): React.JSX.Element;
|
|
12
|
-
export default ListItemLink;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { default as icons } from '../../Svg/icons';
|
|
3
|
-
|
|
4
|
-
export interface IItem {
|
|
5
|
-
path: string;
|
|
6
|
-
icon: keyof typeof icons;
|
|
7
|
-
label: string;
|
|
8
|
-
isActive: boolean;
|
|
9
|
-
}
|
|
10
|
-
export interface IVerticalNavigationProps {
|
|
11
|
-
list: IItem[];
|
|
12
|
-
themeColor?: string;
|
|
13
|
-
themeActive?: string;
|
|
14
|
-
}
|
|
15
|
-
declare function VerticalNavigation({ list, themeColor, themeActive }: IVerticalNavigationProps): React.JSX.Element;
|
|
16
|
-
export default VerticalNavigation;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as VerticalNavigation } from './components/VerticalNavigation';
|