@producteca/producteca-ui-kit 1.22.0 → 1.23.0

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.
@@ -11,3 +11,4 @@ export * from './breadcrumb';
11
11
  export * from './menuAction';
12
12
  export * from './modals';
13
13
  export * from './tabs';
14
+ export * from './sidebar';
@@ -0,0 +1,2 @@
1
+ export { AppSidebar as Sidebar } from './sidebar';
2
+ export type { SidebarProps, SidebarItemProps } from './sidebar';
@@ -0,0 +1,14 @@
1
+ import { default as React } from 'react';
2
+
3
+ export type SidebarItemProps = {
4
+ label: string;
5
+ icon?: React.ReactNode;
6
+ onClick?: () => void;
7
+ isActive?: boolean;
8
+ };
9
+ export type SidebarProps = {
10
+ title?: string;
11
+ items: SidebarItemProps[];
12
+ };
13
+ export declare const AppSidebar: ({ title, items }: SidebarProps) => import("react/jsx-runtime").JSX.Element;
14
+ export default AppSidebar;
@@ -224,5 +224,16 @@ declare const _default: {
224
224
  tab2: string;
225
225
  tab3: string;
226
226
  };
227
+ sidebar: {
228
+ monitoringCenter: string;
229
+ history: string;
230
+ integrations: string;
231
+ deposits: string;
232
+ active: string;
233
+ alerts: string;
234
+ moreOptions: string;
235
+ itemsDescription: string;
236
+ itemsSummary: string;
237
+ };
227
238
  };
228
239
  export default _default;