refactor(spinner): rename lines-sm to lines-small

also adds this spinner class to the infinite scroll to override the
color
This commit is contained in:
Brandy Carney
2018-03-20 12:49:17 -04:00
parent f578122d15
commit b49e9eb027
15 changed files with 25 additions and 23 deletions

View File

@ -49,7 +49,7 @@
// -----------------------------------------
.loading-ios .spinner-lines-ios line,
.loading-ios .spinner-lines-sm-ios line {
.loading-ios .spinner-lines-small-ios line {
stroke: $loading-ios-spinner-lines-color;
}

View File

@ -36,7 +36,7 @@
// -----------------------------------------
.loading-md .spinner-lines-md line,
.loading-md .spinner-lines-sm-md line {
.loading-md .spinner-lines-small-md line {
stroke: $loading-md-spinner-lines-color;
}

View File

@ -77,7 +77,7 @@ export class Loading implements OverlayInterface {
@Prop() showBackdrop = true;
/**
* The name of the spinner to display. Possible values are: `"lines"`, `"lines-sm"`, `"dots"`,
* The name of the spinner to display. Possible values are: `"lines"`, `"lines-small"`, `"dots"`,
* `"bubbles"`, `"circles"`, `"crescent"`.
*/
@Prop() spinner: string;

View File

@ -104,7 +104,7 @@ If true, a backdrop will be displayed behind the loading indicator. Defaults to
string
The name of the spinner to display. Possible values are: `"lines"`, `"lines-sm"`, `"dots"`,
The name of the spinner to display. Possible values are: `"lines"`, `"lines-small"`, `"dots"`,
`"bubbles"`, `"circles"`, `"crescent"`.
@ -195,7 +195,7 @@ If true, a backdrop will be displayed behind the loading indicator. Defaults to
string
The name of the spinner to display. Possible values are: `"lines"`, `"lines-sm"`, `"dots"`,
The name of the spinner to display. Possible values are: `"lines"`, `"lines-small"`, `"dots"`,
`"bubbles"`, `"circles"`, `"crescent"`.