@kaio-xyz/design-system 1.1.77 → 1.1.78

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
@@ -335,14 +335,14 @@ type DrawerProps = {
335
335
  };
336
336
  declare const Drawer: ({ isOpen, title, children, className, actions, onClose, isLarge, subTitle, }: DrawerProps) => react.ReactPortal;
337
337
 
338
- type AlertProps = PropsWithChildren<{
338
+ type AlertProps = {
339
339
  title: string;
340
340
  dataTest: string;
341
- description?: string;
341
+ description?: ReactNode;
342
342
  type?: "primary" | "info" | "warning" | "danger" | "success";
343
343
  buttonText?: string;
344
344
  onClick?: () => void;
345
- }>;
345
+ };
346
346
  declare const Alert: ({ title, type, description, buttonText, dataTest, onClick, ...rest }: AlertProps) => react_jsx_runtime.JSX.Element;
347
347
 
348
348
  type BoxProps = {