mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
feat(header, footer): add ios fading header style (#24011)
This commit is contained in:
16
core/src/components.d.ts
vendored
16
core/src/components.d.ts
vendored
@ -920,6 +920,10 @@ export namespace Components {
|
||||
"side": 'start' | 'end' | 'top' | 'bottom';
|
||||
}
|
||||
interface IonFooter {
|
||||
/**
|
||||
* Describes the scroll effect that will be applied to the footer. Only applies in iOS mode.
|
||||
*/
|
||||
"collapse"?: 'fade';
|
||||
/**
|
||||
* The mode determines which platform styles to use.
|
||||
*/
|
||||
@ -937,9 +941,9 @@ export namespace Components {
|
||||
}
|
||||
interface IonHeader {
|
||||
/**
|
||||
* Describes the scroll effect that will be applied to the header `condense` only applies in iOS mode. Typically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)
|
||||
* Describes the scroll effect that will be applied to the header. Only applies in iOS mode. Typically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)
|
||||
*/
|
||||
"collapse"?: 'condense';
|
||||
"collapse"?: 'condense' | 'fade';
|
||||
/**
|
||||
* The mode determines which platform styles to use.
|
||||
*/
|
||||
@ -4606,6 +4610,10 @@ declare namespace LocalJSX {
|
||||
"side"?: 'start' | 'end' | 'top' | 'bottom';
|
||||
}
|
||||
interface IonFooter {
|
||||
/**
|
||||
* Describes the scroll effect that will be applied to the footer. Only applies in iOS mode.
|
||||
*/
|
||||
"collapse"?: 'fade';
|
||||
/**
|
||||
* The mode determines which platform styles to use.
|
||||
*/
|
||||
@ -4623,9 +4631,9 @@ declare namespace LocalJSX {
|
||||
}
|
||||
interface IonHeader {
|
||||
/**
|
||||
* Describes the scroll effect that will be applied to the header `condense` only applies in iOS mode. Typically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)
|
||||
* Describes the scroll effect that will be applied to the header. Only applies in iOS mode. Typically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)
|
||||
*/
|
||||
"collapse"?: 'condense';
|
||||
"collapse"?: 'condense' | 'fade';
|
||||
/**
|
||||
* The mode determines which platform styles to use.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user