docs(fab-list): update the activated description (#18026)

This commit is contained in:
Nikhil Maheshwari
2019-04-18 00:47:10 +04:00
committed by Brandy Carney
parent 8097f578f4
commit 8d59d44431
3 changed files with 4 additions and 4 deletions

View File

@ -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;
/**

View File

@ -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;

View File

@ -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'` |