fix(site): resolve aliased part descriptions in api docs (#518)

This commit is contained in:
Darius Cepulis
2026-02-12 10:16:34 -06:00
committed by GitHub
parent 4d62a1ff7d
commit 82944041f9
6 changed files with 49 additions and 9 deletions
@@ -12,6 +12,7 @@ export interface ControlsGroupProps extends UIComponentProps<'div', GroupState>
children?: ReactNode | undefined;
}
/** Layout group for related controls; sets `role="group"` when labeled. */
export const ControlsGroup = forwardRef(function ControlsGroup(
componentProps: ControlsGroupProps,
forwardedRef: ForwardedRef<HTMLDivElement>
@@ -13,6 +13,7 @@ export interface ControlsRootProps extends UIComponentProps<'div', ControlsCore.
children?: ReactNode | undefined;
}
/** Root container for player controls state and rendered control content. */
export const ControlsRoot = forwardRef(function ControlsRoot(
componentProps: ControlsRootProps,
forwardedRef: ForwardedRef<HTMLDivElement>