@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.
- package/dist/components/card/card.d.ts +13 -0
- package/dist/components/card/index.d.ts +2 -0
- 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 +12 -0
- package/dist/producteca-ui-kit.es.js +50116 -36951
- package/dist/producteca-ui-kit.umd.js +759 -201
- package/dist/style.css +1 -1
- package/package.json +6 -20
- package/dist/producteca-ui-kit.cjs.js +0 -508
|
@@ -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,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
|
@@ -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;
|