Rename NoResults and LoadingResults to NoItems and LoadingItems.

This commit is contained in:
CJ Cenizal 2016-12-26 16:08:09 -08:00
parent d758fed76a
commit ad390b01e9
11 changed files with 13 additions and 13 deletions

View file

@ -103,7 +103,7 @@
<!-- NoResults -->
<div class="kuiPanel kuiPanel--centered" ng-if="!service.data.length">
<div class="kuiNoResults">
<div class="kuiNoItems">
No {{service.title}} matched your search.
</div>
</div>

View file

@ -100,10 +100,10 @@ body {
@import "icon/index";
@import "info_panel/index";
@import "link/index";
@import "loading_results/index";
@import "loading_items/index";
@import "local_nav/index";
@import "micro_button/index";
@import "no_results/index";
@import "no_items/index";
@import "panel/index";
@import "table/index";
@import "tabs/index";

View file

@ -0,0 +1 @@
@import "loading_items";

View file

@ -1,4 +1,4 @@
.kuiLoadingResults {
.kuiLoadingItems {
padding: 30px;
font-size: 18px;
color: $subduedFontColor;

View file

@ -1 +0,0 @@
@import "loading_results";

View file

@ -0,0 +1 @@
@import "no_items";

View file

@ -1,4 +1,4 @@
.kuiNoResults {
.kuiNoItems {
padding: 30px;
font-size: 18px;
color: $subduedFontColor;

View file

@ -1 +0,0 @@
@import "no_results";

View file

@ -44,7 +44,7 @@
<!-- LoadingResults -->
<div class="kuiPanel kuiPanel--centered">
<div class="kuiLoadingResults">
<div class="kuiLoadingItems">
Loading&hellip;
</div>
</div>

View file

@ -44,7 +44,7 @@
<!-- NoResults -->
<div class="kuiPanel kuiPanel--centered">
<div class="kuiNoResults">
<div class="kuiNoItems">
No Items matched your search.
</div>
</div>

View file

@ -14,11 +14,11 @@ export default createExample([{
html: require('./controlled_table.html'),
hasDarkTheme: false,
}, {
title: 'ControlledTable with LoadingResults',
html: require('./controlled_table_loading_results.html'),
title: 'ControlledTable with LoadingItems',
html: require('./controlled_table_loading_items.html'),
hasDarkTheme: false,
}, {
title: 'ControlledTable with NoResults',
html: require('./controlled_table_no_results.html'),
title: 'ControlledTable with NoItems',
html: require('./controlled_table_no_items.html'),
hasDarkTheme: false,
}]);