@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.
- package/dist/components/index.d.ts +1 -0
- package/dist/components/sidebar/index.d.ts +2 -0
- package/dist/components/sidebar/sidebar.d.ts +14 -0
- package/dist/locales/es.d.ts +11 -0
- package/dist/producteca-ui-kit.es.js +19221 -15774
- package/dist/producteca-ui-kit.umd.js +600 -138
- package/dist/style.css +1 -1
- package/package.json +2 -1
|
@@ -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;
|
package/dist/locales/es.d.ts
CHANGED
|
@@ -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;
|