@groupeactual/ui-kit 1.7.7 → 1.7.9

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.
@@ -141,7 +141,7 @@ interface LinkItem {
141
141
  }
142
142
  interface Props$h extends BreadcrumbsProps {
143
143
  PageName: string;
144
- links: LinkItem[];
144
+ links?: LinkItem[];
145
145
  }
146
146
  declare const Breadcrumbs: ({ PageName, links, ...props }: Props$h) => React.JSX.Element;
147
147
 
@@ -334,7 +334,7 @@ interface ModalProps extends Omit<ModalProps$1, 'component' | 'open' | 'classNam
334
334
 
335
335
  declare const Drawer: ({ title, open, onClose, component, footer, cardProps, size, ...props }: Omit<ModalProps, "withHeaderDivider" | "icon">) => React.JSX.Element;
336
336
 
337
- declare const Dialog: ({ title, open, onClose, component, icon, ...props }: Omit<ModalProps, "footer" | "cardProps" | "size">) => React.JSX.Element;
337
+ declare const Dialog: ({ title, open, onClose, children, icon, ...props }: Omit<ModalProps, "footer" | "cardProps" | "size" | "component">) => React.JSX.Element;
338
338
 
339
339
  interface Props$5 {
340
340
  label: string;