@producteca/producteca-ui-kit 1.22.0-beta.1 → 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.
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+
3
+ export interface CardProps {
4
+ icon?: React.ReactNode;
5
+ title?: string;
6
+ isActive?: boolean;
7
+ description?: string;
8
+ disabled?: boolean;
9
+ onClick?: () => void;
10
+ sx?: React.CSSProperties;
11
+ }
12
+ export declare const Card: React.FC<CardProps>;
13
+ export default Card;
@@ -0,0 +1,2 @@
1
+ export { Card } from './card';
2
+ export type { CardProps } from './card';
@@ -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;
@@ -12,6 +12,7 @@ declare const _default: {
12
12
  selectRequiredText: string;
13
13
  exportedIcon: string;
14
14
  syncStockFromChannel: string;
15
+ loremIpsum: string;
15
16
  add: string;
16
17
  previous: string;
17
18
  continue: string;
@@ -223,5 +224,16 @@ declare const _default: {
223
224
  tab2: string;
224
225
  tab3: string;
225
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
+ };
226
238
  };
227
239
  export default _default;