mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00

Breaking Change: ## Refresher: - `<ion-refresher>` now takes a child `<ion-refresher-content>` component. - Custom refresh content components can now be replaced for Ionic's default refresher content. - Properties `pullingIcon`, `pullingText` and `refreshingText` have been moved to the `<ion-refresher-content>` component. - `spinner` property has been renamed to `refreshingSpinner` and now goes on the `<ion-refresher-content>` component. - `refreshingIcon` property is no longer an input, but instead `refreshingSpinner` should be used. Was: ``` <ion-refresher (refresh)="doRefresh($event)" pullingIcon="arrow-dropdown"> </ion-refresher> ``` Now: ``` <ion-refresher (refresh)="doRefresh($event)"> <ion-refresher-content pullingIcon="arrow-dropdown"></ion-refresher-content> </ion-refresher> ```
32 lines
578 B
SCSS
32 lines
578 B
SCSS
|
|
// Core Globals
|
|
@import "globals.core";
|
|
|
|
|
|
// Core App
|
|
@import
|
|
"components/app/normalize",
|
|
"components/app/structure",
|
|
"components/app/scrollbars",
|
|
"components/app/typography",
|
|
"util/util";
|
|
|
|
|
|
// Core Components
|
|
@import
|
|
"components/grid/grid",
|
|
"components/icon/icon",
|
|
"components/menu/menu",
|
|
"components/modal/modal",
|
|
"components/refresher/refresher",
|
|
"components/scroll/scroll",
|
|
"components/slides/slides",
|
|
"components/spinner/spinner";
|
|
|
|
|
|
// Ionicons (to be replaced with SVGs)
|
|
$ionicons: true !default;
|
|
@if ($ionicons) {
|
|
@import "fonts/ionicons";
|
|
}
|