docs(list): add available options for lines property

This commit is contained in:
Damian
2018-08-09 12:04:51 -04:00
committed by Brandy Carney
parent 50ad1e7c5a
commit dc762f0a31
3 changed files with 5 additions and 2 deletions

View File

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

View File

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

View File

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