From da6a50b9403fb4b0d280c72fb7dc86e8beac2994 Mon Sep 17 00:00:00 2001 From: amandaesmith3 Date: Thu, 21 Sep 2023 13:23:47 -0500 Subject: [PATCH 1/2] add flag to item fill prop --- core/src/components/item/item.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx index 8fe7d50ec97..ad056c5cdfc 100644 --- a/core/src/components/item/item.tsx +++ b/core/src/components/item/item.tsx @@ -85,6 +85,7 @@ export class Item implements ComponentInterface, AnchorInterface, ButtonInterfac /** * The fill for the item. If `"solid"` the item will have a background. If * `"outline"` the item will be transparent with a border. Only available in `md` mode. + * @deprecated Use the `fill` property on `ion-input` or `ion-textarea` instead. */ @Prop() fill?: 'outline' | 'solid'; From 83f8ab291b971123fde679353960c1fdfb002018 Mon Sep 17 00:00:00 2001 From: amandaesmith3 Date: Thu, 21 Sep 2023 13:26:21 -0500 Subject: [PATCH 2/2] run build --- core/src/components.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/components.d.ts b/core/src/components.d.ts index d048e31f102..62cfd307643 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1336,6 +1336,7 @@ export namespace Components { "download": string | undefined; /** * The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode. + * @deprecated Use the `fill` property on `ion-input` or `ion-textarea` instead. */ "fill"?: 'outline' | 'solid'; /** @@ -5407,6 +5408,7 @@ declare namespace LocalJSX { "download"?: string | undefined; /** * The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode. + * @deprecated Use the `fill` property on `ion-input` or `ion-textarea` instead. */ "fill"?: 'outline' | 'solid'; /**