mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
docs(list): add available options for lines property
This commit is contained in:
4
core/src/components.d.ts
vendored
4
core/src/components.d.ts
vendored
@ -1143,7 +1143,7 @@ declare global {
|
|||||||
*/
|
*/
|
||||||
'inset': boolean;
|
'inset': boolean;
|
||||||
/**
|
/**
|
||||||
* How the bottom border should be displayed on all items.
|
* How the bottom border should be displayed on all items. Available options: `"full"`, `"inset"`, `"none"`.
|
||||||
*/
|
*/
|
||||||
'lines': 'full' | 'inset' | 'none';
|
'lines': 'full' | 'inset' | 'none';
|
||||||
/**
|
/**
|
||||||
@ -4760,7 +4760,7 @@ declare global {
|
|||||||
*/
|
*/
|
||||||
'inset'?: boolean;
|
'inset'?: boolean;
|
||||||
/**
|
/**
|
||||||
* How the bottom border should be displayed on all items.
|
* How the bottom border should be displayed on all items. Available options: `"full"`, `"inset"`, `"none"`.
|
||||||
*/
|
*/
|
||||||
'lines'?: 'full' | 'inset' | 'none';
|
'lines'?: 'full' | 'inset' | 'none';
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ export class List {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* How the bottom border should be displayed on all items.
|
* How the bottom border should be displayed on all items.
|
||||||
|
* Available options: `"full"`, `"inset"`, `"none"`.
|
||||||
*/
|
*/
|
||||||
@Prop() lines?: 'full' | 'inset' | 'none';
|
@Prop() lines?: 'full' | 'inset' | 'none';
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ If true, the list will have margin around it and rounded corners. Defaults to `f
|
|||||||
string
|
string
|
||||||
|
|
||||||
How the bottom border should be displayed on all items.
|
How the bottom border should be displayed on all items.
|
||||||
|
Available options: `"full"`, `"inset"`, `"none"`.
|
||||||
|
|
||||||
|
|
||||||
## Attributes
|
## Attributes
|
||||||
@ -39,6 +40,7 @@ If true, the list will have margin around it and rounded corners. Defaults to `f
|
|||||||
string
|
string
|
||||||
|
|
||||||
How the bottom border should be displayed on all items.
|
How the bottom border should be displayed on all items.
|
||||||
|
Available options: `"full"`, `"inset"`, `"none"`.
|
||||||
|
|
||||||
|
|
||||||
## Methods
|
## Methods
|
||||||
|
Reference in New Issue
Block a user