fix(toolbar): get translucency working with header, footer and toolbar

This commit is contained in:
Brandy Carney
2018-07-11 11:45:33 -04:00
parent 6b29507f0e
commit f6ab5b69ac
14 changed files with 521 additions and 92 deletions

View File

@ -2180,6 +2180,10 @@ declare global {
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
*/
'mode': Mode;
/**
* If true, the footer will be translucent. Note: In order to scroll content behind the footer, the `fullscreen` attribute needs to be set on the content. Defaults to `false`.
*/
'translucent': boolean;
}
}
@ -2206,6 +2210,10 @@ declare global {
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
*/
'mode'?: Mode;
/**
* If true, the footer will be translucent. Note: In order to scroll content behind the footer, the `fullscreen` attribute needs to be set on the content. Defaults to `false`.
*/
'translucent'?: boolean;
}
}
}
@ -2452,6 +2460,10 @@ declare global {
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
*/
'mode': Mode;
/**
* If true, the header will be translucent. Note: In order to scroll content behind the header, the `fullscreen` attribute needs to be set on the content. Defaults to `false`.
*/
'translucent': boolean;
}
}
@ -2478,6 +2490,10 @@ declare global {
* The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`.
*/
'mode'?: Mode;
/**
* If true, the header will be translucent. Note: In order to scroll content behind the header, the `fullscreen` attribute needs to be set on the content. Defaults to `false`.
*/
'translucent'?: boolean;
}
}
}