File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ <h1>Basic Example</h1>
12
12
< h3 > Signal Result</ h3 >
13
13
< blockquote >
14
14
@if (todos();as result) { @if (result.isLoading) {
15
- < span class ="bulma- loader-mixin "> </ span >
15
+ < span class ="loader "> </ span >
16
16
} @if (result.isSuccess) {
17
17
< p > {{ result.data[0].title }}</ p >
18
18
} @if (result.isError) {
@@ -24,7 +24,7 @@ <h3>Observable Result</h3>
24
24
25
25
< blockquote >
26
26
@if (todosResult.result$ | async;as result) { @if (result.isLoading) {
27
- < span class ="bulma- loader-mixin "> </ span >
27
+ < span class ="loader "> </ span >
28
28
} @if (result.isSuccess) {
29
29
< p > {{ result.data[0].title }}</ p >
30
30
} @if (result.isError) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ <h1>Infinite Loading Example</h1>
25
25
< div class ="pagination ">
26
26
< div class ="pagination-list ">
27
27
@if ((result.isFetching && !result.isFetchingNextPage) || result.isPending) {
28
- < span class ="bulma- loader-mixin "> </ span >
28
+ < span class ="loader "> </ span >
29
29
}
30
30
</ div >
31
31
< button
@@ -71,7 +71,7 @@ <h1>Infinite Loading Example</h1>
71
71
< div class ="pagination ">
72
72
< div class ="pagination-list ">
73
73
@if ((result.isFetching && !result.isFetchingNextPage) || result.isPending) {
74
- < span class ="bulma- loader-mixin "> </ span >
74
+ < span class ="loader "> </ span >
75
75
}
76
76
</ div >
77
77
< button
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ <h3>Signal Result</h3>
22
22
23
23
< blockquote >
24
24
@if(intersection(); as intersectionResult) { @if(intersectionResult.isLoading) {
25
- < span class ="bulma- loader-mixin "> </ span >
25
+ < span class ="loader "> </ span >
26
26
} @if(intersectionResult.isSuccess) {
27
27
< p > {{ intersectionResult.data }}</ p >
28
28
} @if(intersectionResult.isError) {
@@ -34,7 +34,7 @@ <h3>Observable Result</h3>
34
34
35
35
< blockquote >
36
36
@if(intersection$ | async; as intersectionResult) { @if(intersectionResult.isLoading) {
37
- < span class ="bulma- loader-mixin "> </ span >
37
+ < span class ="loader "> </ span >
38
38
} @if(intersectionResult.isSuccess) {
39
39
< p > {{ intersectionResult.data }}</ p >
40
40
} @if(intersectionResult.isError) {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ <h1>Pagination Example</h1>
39
39
</ button >
40
40
< div class ="pagination-list ">
41
41
@if (projects.isFetching) {
42
- < span class ="bulma- loader-mixin "> </ span >
42
+ < span class ="loader "> </ span >
43
43
}
44
44
</ div >
45
45
< button
Original file line number Diff line number Diff line change 24
24
color : #fff !important ;
25
25
}
26
26
27
- .bulma- loader-mixin {
27
+ .loader {
28
28
@include loader ;
29
29
}
You can’t perform that action at this time.
0 commit comments