diff --git a/api/@internal/component/ets/enums.d.ts b/api/@internal/component/ets/enums.d.ts index 8e22544db1a285eb8276e2d9b374f15b1846bf7d..b63bb9a4e78a35e343501f2eea3619e2ebfc6fca 100644 --- a/api/@internal/component/ets/enums.d.ts +++ b/api/@internal/component/ets/enums.d.ts @@ -8050,6 +8050,27 @@ declare enum HitTestMode { * @since 11 */ None, + + /** + * Blocks all lower priority siblings and parents node from receiving the event. + * + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @crossplatform + * @atomicservice + * @since 20 + */ + BLOCK_HIERARCHY, + + /** + * Self not respond to the hit test for touch events, + * and all descebdants (children, grandchildren, etc.) not respond to the hit test for touch events too. + * + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @crossplatform + * @atomicservice + * @since 20 + */ + BLOCK_DESCENDANTS, } /**