ui-mathilde-web 0.1.16 → 0.1.18
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/LICENSE +21 -21
- package/README.md +5 -5
- package/dist/assets/images/click.svg +7 -7
- package/dist/assets/images/conversiones.svg +8 -8
- package/dist/assets/images/file.svg +9 -9
- package/dist/assets/images/fileSVG.svg +17 -17
- package/dist/assets/images/impresiones.svg +5 -5
- package/dist/assets/images/porcentaje.svg +5 -5
- package/dist/assets/images/robot.svg +18 -18
- package/dist/assets/images/spinner.svg +32 -32
- package/dist/assets/images/vistas.svg +5 -5
- package/dist/assets/images/window.svg +16 -16
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +12 -2
- package/dist/ui-mathilde-web.js +2255 -2227
- package/dist/ui-mathilde-web.umd.cjs +36 -36
- package/package.json +76 -76
|
@@ -140,10 +140,12 @@ declare interface ListFileProps {
|
|
|
140
140
|
declare interface MenuItem {
|
|
141
141
|
id: string;
|
|
142
142
|
label: string;
|
|
143
|
-
icon:
|
|
143
|
+
icon: default_2.ElementType | string;
|
|
144
144
|
action?: () => void;
|
|
145
145
|
href?: string;
|
|
146
146
|
target?: '_blank' | '_self';
|
|
147
|
+
position: string;
|
|
148
|
+
subMenuSection?: SubMenuSection;
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
declare interface MenuItem_2 {
|
|
@@ -208,7 +210,7 @@ declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectE
|
|
|
208
210
|
error?: string;
|
|
209
211
|
}
|
|
210
212
|
|
|
211
|
-
export declare const SidebarPro:
|
|
213
|
+
export declare const SidebarPro: default_2.FC<SidebarProProps>;
|
|
212
214
|
|
|
213
215
|
declare interface SidebarProProps {
|
|
214
216
|
logo: {
|
|
@@ -218,9 +220,11 @@ declare interface SidebarProProps {
|
|
|
218
220
|
height: number;
|
|
219
221
|
};
|
|
220
222
|
menuItems: MenuItem[];
|
|
223
|
+
subMenuSections?: SubMenuSection[];
|
|
221
224
|
campaignCards?: CardItem[];
|
|
222
225
|
onLogout?: () => void;
|
|
223
226
|
defaultCollapsed?: boolean;
|
|
227
|
+
background?: string;
|
|
224
228
|
backgroundColor?: string;
|
|
225
229
|
textColor?: string;
|
|
226
230
|
className?: string;
|
|
@@ -232,6 +236,12 @@ declare interface SpinnerProps {
|
|
|
232
236
|
description?: string;
|
|
233
237
|
}
|
|
234
238
|
|
|
239
|
+
declare interface SubMenuSection {
|
|
240
|
+
id: string;
|
|
241
|
+
label: string;
|
|
242
|
+
items: MenuItem[];
|
|
243
|
+
}
|
|
244
|
+
|
|
235
245
|
export declare const TableComponent: React_2.FC<TableComponentProps>;
|
|
236
246
|
|
|
237
247
|
declare interface TableComponentProps {
|