@utilitywarehouse/hearth-react 0.24.16 → 0.24.17
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/components/List/ListItemContent.props.d.cts +1 -1
- package/dist/components/List/ListItemContent.props.d.ts +1 -1
- package/dist/components/Menu/Menu.props.d.cts +1 -1
- package/dist/components/Menu/Menu.props.d.ts +1 -1
- package/dist/components/Modal/Modal.props.d.cts +1 -1
- package/dist/components/Modal/Modal.props.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ interface ListItemContentProps extends React.ComponentPropsWithRef<'div'> {
|
|
|
5
5
|
/**
|
|
6
6
|
* Optional helper text to provide additional context or instructions.
|
|
7
7
|
*/
|
|
8
|
-
helperText?:
|
|
8
|
+
helperText?: ReactNode;
|
|
9
9
|
leadingContent?: ReactNode;
|
|
10
10
|
trailingContent?: ReactNode;
|
|
11
11
|
badge?: ReactNode;
|
|
@@ -5,7 +5,7 @@ interface ListItemContentProps extends React.ComponentPropsWithRef<'div'> {
|
|
|
5
5
|
/**
|
|
6
6
|
* Optional helper text to provide additional context or instructions.
|
|
7
7
|
*/
|
|
8
|
-
helperText?:
|
|
8
|
+
helperText?: ReactNode;
|
|
9
9
|
leadingContent?: ReactNode;
|
|
10
10
|
trailingContent?: ReactNode;
|
|
11
11
|
badge?: ReactNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dialog } from 'radix-ui';
|
|
2
2
|
|
|
3
|
-
type BaseModalProps = React.ComponentPropsWithoutRef<typeof Dialog.DialogPortal> & React.ComponentPropsWithRef<'div'> & {
|
|
3
|
+
type BaseModalProps = React.ComponentPropsWithoutRef<typeof Dialog.DialogPortal> & Omit<React.ComponentPropsWithoutRef<typeof Dialog.Content>, 'asChild' | 'forceMount'> & React.ComponentPropsWithRef<'div'> & {
|
|
4
4
|
description?: string;
|
|
5
5
|
hideCloseButton?: boolean;
|
|
6
6
|
fullScreen?: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dialog } from 'radix-ui';
|
|
2
2
|
|
|
3
|
-
type BaseModalProps = React.ComponentPropsWithoutRef<typeof Dialog.DialogPortal> & React.ComponentPropsWithRef<'div'> & {
|
|
3
|
+
type BaseModalProps = React.ComponentPropsWithoutRef<typeof Dialog.DialogPortal> & Omit<React.ComponentPropsWithoutRef<typeof Dialog.Content>, 'asChild' | 'forceMount'> & React.ComponentPropsWithRef<'div'> & {
|
|
4
4
|
description?: string;
|
|
5
5
|
hideCloseButton?: boolean;
|
|
6
6
|
fullScreen?: boolean;
|