mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-24 03:10:13 +01:00
appPicturePipe -> baAppPicturePipe
This commit is contained in:
parent
11c9a3d239
commit
e3982b255e
16 changed files with 28 additions and 28 deletions
|
|
@ -1,12 +1,12 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
import {AppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BaAppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BasicTablesService} from '../../basicTables.service';
|
||||
|
||||
@Component({
|
||||
selector: 'bordered-table',
|
||||
template: require('./borderedTable.html'),
|
||||
pipes: [AppPicturePipe]
|
||||
pipes: [BaAppPicturePipe]
|
||||
})
|
||||
export class BorderedTable {
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let item of metricsTableData">
|
||||
<td><img src="{{ ( item.image | appPicture )}}" width="20" height="20"></td>
|
||||
<td><img src="{{ ( item.image | baAppPicture )}}" width="20" height="20"></td>
|
||||
<td ngClass="nowrap">{{ item.browser }}</td>
|
||||
<td class="align-right">{{ item.visits }}</td>
|
||||
<td class="align-right">{{ item.purchases }}</td>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
import {AppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BaAppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BasicTablesService} from '../../basicTables.service';
|
||||
|
||||
@Component({
|
||||
selector: 'condensed-table',
|
||||
template: require('./condensedTable.html'),
|
||||
pipes: [AppPicturePipe]
|
||||
pipes: [BaAppPicturePipe]
|
||||
})
|
||||
export class CondensedTable {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
import {AppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BaAppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BasicTablesService} from '../../basicTables.service';
|
||||
|
||||
@Component({
|
||||
selector: 'hover-table',
|
||||
template: require('./hoverTable.html'),
|
||||
pipes: [AppPicturePipe]
|
||||
pipes: [BaAppPicturePipe]
|
||||
})
|
||||
export class HoverTable {
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let item of metricsTableData" class="no-top-border">
|
||||
<td><img src="{{ ( item.image | appPicture ) }}" width="20" height="20"></td>
|
||||
<td><img src="{{ ( item.image | baAppPicture ) }}" width="20" height="20"></td>
|
||||
<td ngClass="nowrap">{{item.browser}}</td>
|
||||
<td class="align-right">{{item.visits}}</td>
|
||||
<td class="table-arr"><i [ngClass]="{'icon-up': item.isVisitsUp, 'icon-down': !item.isVisitsUp }"></i></td>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
import {AppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BaAppPicturePipe} from '../../../../../../theme/pipes';
|
||||
import {BasicTablesService} from '../../basicTables.service';
|
||||
|
||||
@Component({
|
||||
selector: 'striped-table',
|
||||
template: require('./stripedTable.html'),
|
||||
pipes: [AppPicturePipe]
|
||||
pipes: [BaAppPicturePipe]
|
||||
})
|
||||
export class StripedTable {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue