mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00
docs(fab-list): update the activated description (#18026)
This commit is contained in:

committed by
Brandy Carney

parent
8097f578f4
commit
8d59d44431
4
core/src/components.d.ts
vendored
4
core/src/components.d.ts
vendored
@ -1416,7 +1416,7 @@ export namespace Components {
|
|||||||
|
|
||||||
interface IonFabList {
|
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;
|
'activated': boolean;
|
||||||
/**
|
/**
|
||||||
@ -1426,7 +1426,7 @@ export namespace Components {
|
|||||||
}
|
}
|
||||||
interface IonFabListAttributes extends StencilHTMLAttributes {
|
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;
|
'activated'?: boolean;
|
||||||
/**
|
/**
|
||||||
|
@ -13,7 +13,7 @@ export class FabList implements ComponentInterface {
|
|||||||
@Element() el!: HTMLIonFabElement;
|
@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;
|
@Prop() activated = false;
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ export default Example
|
|||||||
|
|
||||||
| Property | Attribute | Description | Type | Default |
|
| 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'` |
|
| `side` | `side` | The side the fab list will show on relative to the main fab button. | `"bottom" \| "end" \| "start" \| "top"` | `'bottom'` |
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user