@rovula/ui 0.1.34 → 0.1.35

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.
@@ -31,6 +31,11 @@ export type FormDialogProps = {
31
31
  extraAction?: FormDialogAction;
32
32
  scrollable?: boolean;
33
33
  className?: string;
34
+ headerClassName?: string;
35
+ titleClassName?: string;
36
+ descriptionClassName?: string;
37
+ bodyClassName?: string;
38
+ footerClassName?: string;
34
39
  /**
35
40
  * When provided, the confirm button becomes type="submit" and is linked to this form id.
36
41
  * Use together with a <Form id={formId} .../> inside children.
@@ -20,6 +20,11 @@ declare const meta: {
20
20
  extraAction?: import("./FormDialog").FormDialogAction | undefined;
21
21
  scrollable?: boolean | undefined;
22
22
  className?: string | undefined;
23
+ headerClassName?: string | undefined;
24
+ titleClassName?: string | undefined;
25
+ descriptionClassName?: string | undefined;
26
+ bodyClassName?: string | undefined;
27
+ footerClassName?: string | undefined;
23
28
  formId?: string | undefined;
24
29
  testId?: string | undefined;
25
30
  }>) => import("react/jsx-runtime").JSX.Element)[];