Remove accidental deprecation comments on <DialogPanel> and <DialogTitle> (#3176)

* Remove accidental deprecations

These got left in when they shouldn’t’ve been

* Update changelog
This commit is contained in:
Jordan Pittman
2024-05-06 15:05:55 -04:00
committed by GitHub
parent fb131905b4
commit cfbcf5b840
2 changed files with 3 additions and 3 deletions
@@ -536,9 +536,7 @@ export interface _internal_ComponentDialogTitle extends HasDisplayName {
export interface _internal_ComponentDialogDescription extends _internal_ComponentDescription {}
let DialogRoot = forwardRefWithAs(DialogFn) as _internal_ComponentDialog
/** @deprecated use a plain `<div>` instead of `<DialogBackdrop>` */
export let DialogPanel = forwardRefWithAs(PanelFn) as _internal_ComponentDialogPanel
/** @deprecated use a plain `<div>` instead of `<DialogOverlay>` */
export let DialogTitle = forwardRefWithAs(TitleFn) as _internal_ComponentDialogTitle
/** @deprecated use `<Description>` instead of `<DialogDescription>` */
export let DialogDescription = Description as _internal_ComponentDialogDescription