mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +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;
|
||||
/**
|
||||
* 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';
|
||||
/**
|
||||
@ -4760,7 +4760,7 @@ declare global {
|
||||
*/
|
||||
'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';
|
||||
}
|
||||
|
@ -17,6 +17,7 @@ export class List {
|
||||
|
||||
/**
|
||||
* How the bottom border should be displayed on all items.
|
||||
* Available options: `"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
|
||||
|
||||
How the bottom border should be displayed on all items.
|
||||
Available options: `"full"`, `"inset"`, `"none"`.
|
||||
|
||||
|
||||
## Attributes
|
||||
@ -39,6 +40,7 @@ If true, the list will have margin around it and rounded corners. Defaults to `f
|
||||
string
|
||||
|
||||
How the bottom border should be displayed on all items.
|
||||
Available options: `"full"`, `"inset"`, `"none"`.
|
||||
|
||||
|
||||
## Methods
|
||||
|
Reference in New Issue
Block a user