From 8d59d44431894893300b01a00c0a607d95cf7c35 Mon Sep 17 00:00:00 2001 From: Nikhil Maheshwari Date: Thu, 18 Apr 2019 00:47:10 +0400 Subject: [PATCH] docs(fab-list): update the activated description (#18026) --- core/src/components.d.ts | 4 ++-- core/src/components/fab-list/fab-list.tsx | 2 +- core/src/components/fab-list/readme.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 7a1b044b4c..e93ea3b137 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1416,7 +1416,7 @@ export namespace Components { interface IonFabList { /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ 'activated': boolean; /** @@ -1426,7 +1426,7 @@ export namespace Components { } interface IonFabListAttributes extends StencilHTMLAttributes { /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ 'activated'?: boolean; /** diff --git a/core/src/components/fab-list/fab-list.tsx b/core/src/components/fab-list/fab-list.tsx index 2ce5e14a48..d9eb983140 100644 --- a/core/src/components/fab-list/fab-list.tsx +++ b/core/src/components/fab-list/fab-list.tsx @@ -13,7 +13,7 @@ export class FabList implements ComponentInterface { @Element() el!: HTMLIonFabElement; /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ @Prop() activated = false; diff --git a/core/src/components/fab-list/readme.md b/core/src/components/fab-list/readme.md index ec965456dd..5355c9441e 100644 --- a/core/src/components/fab-list/readme.md +++ b/core/src/components/fab-list/readme.md @@ -82,7 +82,7 @@ export default Example | Property | Attribute | Description | Type | Default | | ----------- | ----------- | ------------------------------------------------------------------- | --------------------------------------- | ---------- | -| `activated` | `activated` | If `true`, the fab list will be show all fab buttons in the list. | `boolean` | `false` | +| `activated` | `activated` | If `true`, the fab list will show all fab buttons in the list. | `boolean` | `false` | | `side` | `side` | The side the fab list will show on relative to the main fab button. | `"bottom" \| "end" \| "start" \| "top"` | `'bottom'` |