@conboai/storybook.components 0.2.45 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/storybook.components",
3
- "version": "0.2.45",
3
+ "version": "0.2.47",
4
4
  "main": "dist/storybook.components.mjs",
5
5
  "types": "dist/build/index.d.ts",
6
6
  "files": [
@@ -1,4 +0,0 @@
1
- import { LinkProps as RouterLinkProps } from 'react-router-dom';
2
- import * as React from "react";
3
- declare const Link: React.ForwardRefExoticComponent<RouterLinkProps & React.RefAttributes<HTMLAnchorElement>>;
4
- export default Link;
@@ -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,5 +0,0 @@
1
- import * as React from "react";
2
- declare function Router(props: {
3
- children?: React.ReactNode;
4
- }): React.JSX.Element;
5
- export default Router;
@@ -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';
@@ -1,5 +0,0 @@
1
- import { SxProps } from '@mui/material';
2
-
3
- export declare const paperSx: SxProps;
4
- export declare const listItemSx: (isActive?: boolean) => SxProps;
5
- export declare const buttonIconSx: SxProps;
@@ -1,3 +0,0 @@
1
- import { IItem } from '../components/VerticalNavigation/components/VerticalNavigation';
2
-
3
- export declare const navigationList: IItem[];