@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.
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.d.ts +2 -2
- package/dist/es/index.js +2 -2
- package/dist/es/src/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/dist/es/src/components/Modal/Dialog/Dialog.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +2 -2
- package/src/components/Modal/Dialog/Dialog.tsx +3 -3
package/dist/es/index.d.ts
CHANGED
|
@@ -141,7 +141,7 @@ interface LinkItem {
|
|
|
141
141
|
}
|
|
142
142
|
interface Props$h extends BreadcrumbsProps {
|
|
143
143
|
PageName: string;
|
|
144
|
-
links
|
|
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,
|
|
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;
|