@pismo/marola 1.1.9 → 1.1.11

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.
@@ -1,10 +1,14 @@
1
- import { DialogProps } from '../../main';
2
1
  import { StoryObj } from '@storybook/react';
3
2
 
4
3
  declare const meta: {
5
4
  title: string;
6
- component: {
7
- ({ children, dialogTitle, dialogSubtitle, icon, onClose, ...props }: DialogProps): import("react/jsx-runtime").JSX.Element;
5
+ component: import('react').ForwardRefExoticComponent<Omit<import('@mui/base').ModalProps, "ref" | "onClose"> & {
6
+ children: import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<unknown>>;
7
+ dialogTitle: import('react').ReactNode;
8
+ dialogSubtitle?: import('react').ReactNode;
9
+ icon?: import('../Icon/Icon').IconProps | undefined;
10
+ onClose?: ((reason: import('./Dialog').CloseReason) => void) | undefined;
11
+ } & import('react').RefAttributes<HTMLDivElement>> & {
8
12
  Title: import('react').FunctionComponent<import('./DialogTitle').DialogTitleProps>;
9
13
  Content: import('react').FunctionComponent<import('./Content').DialogContentProps>;
10
14
  Actions: import('react').FunctionComponent<import('./Actions').DialogActionProps>;
@@ -12,7 +16,6 @@ declare const meta: {
12
16
  tags: string[];
13
17
  decorators: ((Story: import('@storybook/csf').PartialStoryFn<import('@storybook/react').ReactRenderer, {
14
18
  color?: string | undefined;
15
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
16
19
  children: import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> & import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<unknown>>;
17
20
  title?: string | undefined;
18
21
  style?: import('react').CSSProperties | undefined;
@@ -340,7 +343,8 @@ declare const meta: {
340
343
  dialogTitle: import('react').ReactNode;
341
344
  dialogSubtitle?: import('react').ReactNode;
342
345
  icon?: import('../Icon/Icon').IconProps | undefined;
343
- onClose?: ((reason?: import('./Dialog').CloseReason | undefined) => void) | undefined;
346
+ onClose?: ((reason: import('./Dialog').CloseReason) => void) | undefined;
347
+ ref?: import('react').LegacyRef<HTMLDivElement> | undefined;
344
348
  }>) => import("react/jsx-runtime").JSX.Element)[];
345
349
  };
346
350
  export default meta;
@@ -0,0 +1 @@
1
+ export {};