@a-type/ui 6.1.20 → 6.1.21
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.
|
@@ -17,7 +17,7 @@ export interface DialogContentProps extends Omit<DialogPopupProps, 'className' |
|
|
|
17
17
|
}>;
|
|
18
18
|
}
|
|
19
19
|
export interface DialogProps extends Omit<DialogRootProps, 'children'> {
|
|
20
|
-
children
|
|
20
|
+
children?: React.ReactNode;
|
|
21
21
|
disableSheet?: boolean;
|
|
22
22
|
}
|
|
23
23
|
declare const DialogSelectItemRoot: import("react").FunctionComponent<BaseRadio.Root.Props<unknown>>;
|
package/package.json
CHANGED
|
@@ -138,7 +138,7 @@ const DialogDescription = withContextVariant(
|
|
|
138
138
|
);
|
|
139
139
|
|
|
140
140
|
export interface DialogProps extends Omit<DialogRootProps, 'children'> {
|
|
141
|
-
children
|
|
141
|
+
children?: React.ReactNode;
|
|
142
142
|
disableSheet?: boolean;
|
|
143
143
|
}
|
|
144
144
|
const DialogRoot = ({
|