@rovula/ui 0.1.15 → 0.1.16

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.
@@ -44,6 +44,8 @@ export * from "./components/Tree";
44
44
  export * from "./components/FocusedScrollView/FocusedScrollView";
45
45
  export * from "./components/RadioGroup/RadioGroup";
46
46
  export * from "./components/Form";
47
+ export * from "./patterns/confirm-dialog/ConfirmDialog";
48
+ export * from "./patterns/form-dialog/FormDialog";
47
49
  export type { ButtonProps } from "./components/Button/Button";
48
50
  export type { InputProps } from "./components/TextInput/TextInput";
49
51
  export type { PasswordInputProps } from "./components/PasswordInput/PasswordInput";
@@ -20,5 +20,6 @@ export type ConfirmDialogProps = {
20
20
  * When true, hides the cancel button — useful for info/error alerts that only need one action.
21
21
  */
22
22
  hideCancelButton?: boolean;
23
+ testId?: string;
23
24
  };
24
25
  export declare const ConfirmDialog: React.FC<ConfirmDialogProps>;
@@ -21,6 +21,7 @@ declare const meta: {
21
21
  trigger?: React.ReactNode;
22
22
  typeToConfirm?: string | undefined;
23
23
  hideCancelButton?: boolean | undefined;
24
+ testId?: string | undefined;
24
25
  }>) => import("react/jsx-runtime").JSX.Element)[];
25
26
  argTypes: {
26
27
  open: {
@@ -35,5 +35,6 @@ export type FormDialogProps = {
35
35
  * Use together with a <Form id={formId} .../> inside children.
36
36
  */
37
37
  formId?: string;
38
+ testId?: string;
38
39
  };
39
40
  export declare const FormDialog: React.FC<FormDialogProps>;
@@ -21,6 +21,7 @@ declare const meta: {
21
21
  scrollable?: boolean | undefined;
22
22
  className?: string | undefined;
23
23
  formId?: string | undefined;
24
+ testId?: string | undefined;
24
25
  }>) => import("react/jsx-runtime").JSX.Element)[];
25
26
  argTypes: {
26
27
  open: {