diff --git a/src/components/bottomSheet/BottomSheet.tsx b/src/components/bottomSheet/BottomSheet.tsx index f56528d96..2e12158a0 100644 --- a/src/components/bottomSheet/BottomSheet.tsx +++ b/src/components/bottomSheet/BottomSheet.tsx @@ -167,6 +167,9 @@ const BottomSheetComponent = forwardRef( _providedAccessibilityLabel = DEFAULT_ACCESSIBILITY_LABEL, accessibilityRole: _providedAccessibilityRole = DEFAULT_ACCESSIBILITY_ROLE, + accessibleBackground, + accessibilityBackgroundLabel, + accessibilityBackgroundRole, } = props; //#endregion @@ -1852,6 +1855,9 @@ const BottomSheetComponent = forwardRef( {backgroundComponent === null ? null : ( ( ); diff --git a/src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx b/src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx index b8d4ed100..e6410cd33 100644 --- a/src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx +++ b/src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx @@ -5,6 +5,9 @@ import { styles } from './styles'; import type { BottomSheetBackgroundContainerProps } from './types'; const BottomSheetBackgroundContainerComponent = ({ + accessible, + accessibilityLabel, + accessibilityRole, animatedIndex, animatedPosition, backgroundComponent: _providedBackgroundComponent, @@ -21,6 +24,9 @@ const BottomSheetBackgroundContainerComponent = ({ _providedBackgroundComponent ?? BottomSheetBackground; return ( , + extends Pick, BottomSheetVariables {} export type BottomSheetBackgroundContainerProps = Pick<