From 198dc497407925c1a0e64c991f16c2c621bd7d90 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 14 Jul 2023 15:10:31 -0400 Subject: [PATCH] docs(item-sliding): clarify expandable behavior There was confusion on https://github.com/ionic-team/ionic-framework/issues/27794 about which element is used as the reference for "full width". An expandable option will expand to cover the full width of the parent `ion-item` when swiped, so I made that clear in the docs. --- docs/api/item-sliding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/item-sliding.md b/docs/api/item-sliding.md index 61cd5f58f20..ea3a9e04be7 100644 --- a/docs/api/item-sliding.md +++ b/docs/api/item-sliding.md @@ -39,7 +39,7 @@ import Icons from '@site/static/usage/v7/item-sliding/icons/index.md'; ## Expandable Options -Options can be expanded to take up the full width of the item if you swipe past a certain point. This can be combined with the `ionSwipe` event on the [item options](./item-options) to call a method when the item is fully swiped. +Options can be expanded to take up the full width of the parent `ion-item` if you swipe past a certain point. This can be combined with the `ionSwipe` event on the [item options](./item-options) to call a method when the item is fully swiped. import Expandable from '@site/static/usage/v7/item-sliding/expandable/index.md';