@yusr_systems/ui 3.1.2 → 3.1.4

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/index.d.ts CHANGED
@@ -219,7 +219,7 @@ declare type CarouselProps = {
219
219
  setApi?: (api: CarouselApi) => void;
220
220
  };
221
221
 
222
- export declare function ChangeDialog<T extends BaseEntity>({ title, description, className, formData, dialogMode, service, disable, onSuccess, validate, children }: ChangeDialogProps<T>): JSX.Element;
222
+ export declare function ChangeDialog<T extends BaseEntity>({ title, description, className, formData, dialogMode, service, disable, onSuccess, validate, children, }: ChangeDialogProps<T>): JSX.Element;
223
223
 
224
224
  export declare interface ChangeDialogProps<T extends BaseEntity> extends SaveButtonProps<T>, PropsWithChildren {
225
225
  title: string;
@@ -1041,13 +1041,14 @@ export declare interface SidebarLogoProps {
1041
1041
  alt?: string;
1042
1042
  }
1043
1043
 
1044
- export declare function SideBarMainMenu({ items }: {
1044
+ export declare function SideBarMainMenu({ items, LinkComponent, }: {
1045
1045
  items: {
1046
1046
  title: string;
1047
1047
  url: string;
1048
1048
  icon?: React.ReactNode;
1049
1049
  hasAuth: boolean;
1050
1050
  }[];
1051
+ LinkComponent?: React.ElementType;
1051
1052
  }): JSX.Element;
1052
1053
 
1053
1054
  export declare function SidebarMenu({ className, ...props }: React_2.ComponentProps<"ul">): JSX.Element;