@medway-ui/core 1.16.11 → 1.16.12
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.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -2
package/dist/index.d.mts
CHANGED
|
@@ -29,11 +29,14 @@ interface AlertButtonProps extends ComponentProps<"button">, VariantProps<typeof
|
|
|
29
29
|
}
|
|
30
30
|
declare function AlertButton({ className, variant, ...props }: AlertButtonProps): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
|
+
interface AlertDialogContentProps extends ComponentProps<typeof AlertDialog$1.Content> {
|
|
33
|
+
overlayClassName?: string;
|
|
34
|
+
}
|
|
32
35
|
declare function AlertDialog({ ...props }: ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
33
36
|
declare function AlertDialogTrigger({ ...props }: ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
34
37
|
declare function AlertDialogPortal({ ...props }: ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
35
38
|
declare function AlertDialogOverlay({ className, ...props }: ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
36
|
-
declare function AlertDialogContent({ className, ...props }:
|
|
39
|
+
declare function AlertDialogContent({ className, overlayClassName, ...props }: AlertDialogContentProps): react_jsx_runtime.JSX.Element;
|
|
37
40
|
declare function AlertDialogHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
38
41
|
declare function AlertDialogFooter({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
39
42
|
declare function AlertDialogTitle({ className, ...props }: ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -29,11 +29,14 @@ interface AlertButtonProps extends ComponentProps<"button">, VariantProps<typeof
|
|
|
29
29
|
}
|
|
30
30
|
declare function AlertButton({ className, variant, ...props }: AlertButtonProps): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
|
+
interface AlertDialogContentProps extends ComponentProps<typeof AlertDialog$1.Content> {
|
|
33
|
+
overlayClassName?: string;
|
|
34
|
+
}
|
|
32
35
|
declare function AlertDialog({ ...props }: ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
33
36
|
declare function AlertDialogTrigger({ ...props }: ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
34
37
|
declare function AlertDialogPortal({ ...props }: ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
35
38
|
declare function AlertDialogOverlay({ className, ...props }: ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
36
|
-
declare function AlertDialogContent({ className, ...props }:
|
|
39
|
+
declare function AlertDialogContent({ className, overlayClassName, ...props }: AlertDialogContentProps): react_jsx_runtime.JSX.Element;
|
|
37
40
|
declare function AlertDialogHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
38
41
|
declare function AlertDialogFooter({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
39
42
|
declare function AlertDialogTitle({ className, ...props }: ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|