ui-mathilde-web 0.1.17 → 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.
@@ -140,10 +140,12 @@ declare interface ListFileProps {
140
140
  declare interface MenuItem {
141
141
  id: string;
142
142
  label: string;
143
- icon: React.ReactNode;
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: React.FC<SidebarProProps>;
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 {