mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 08:20:13 +01:00
fix(tables): fix #700
This commit is contained in:
parent
08de1f65c9
commit
c85eae7e4b
7 changed files with 10 additions and 11 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
import {Component, ViewEncapsulation} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
import {ChartistJsService} from './chartistJs.service';
|
import {ChartistJsService} from './chartistJs.service';
|
||||||
import 'style-loader!./chartistJs.scss';
|
import 'style-loader!./chartistJs.scss';
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import {Component, ViewEncapsulation} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
import {PieChartService} from './pieChart.service';
|
import {PieChartService} from './pieChart.service';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import {Component, ViewEncapsulation} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {FormGroup, AbstractControl, FormBuilder, Validators} from '@angular/forms';
|
import {FormGroup, AbstractControl, FormBuilder, Validators} from '@angular/forms';
|
||||||
import {EmailValidator, EqualPasswordsValidator} from '../../theme/validators';
|
import {EmailValidator, EqualPasswordsValidator} from '../../theme/validators';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
import { Component, ViewEncapsulation } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { SmartTablesService } from './smartTables.service';
|
import { SmartTablesService } from './smartTables.service';
|
||||||
import { LocalDataSource } from 'ng2-smart-table';
|
import { LocalDataSource } from 'ng2-smart-table';
|
||||||
|
|
||||||
|
import 'style-loader!./smartTables.scss';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'basic-tables',
|
selector: 'smart-tables',
|
||||||
encapsulation: ViewEncapsulation.None,
|
|
||||||
styleUrls: ['./smartTables.scss'],
|
|
||||||
templateUrl: './smartTables.html',
|
templateUrl: './smartTables.html',
|
||||||
})
|
})
|
||||||
export class SmartTables {
|
export class SmartTables {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import {Component, ViewEncapsulation} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
import 'style-loader!./buttons.scss';
|
import 'style-loader!./buttons.scss';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
import {Component, ViewEncapsulation} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'typography',
|
selector: 'typography',
|
||||||
styles: [],
|
|
||||||
templateUrl: './typography.html',
|
templateUrl: './typography.html',
|
||||||
})
|
})
|
||||||
export class Typography {
|
export class Typography {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import {Component, ElementRef, HostListener, ViewEncapsulation} from '@angular/core';
|
import {Component, ElementRef, HostListener} from '@angular/core';
|
||||||
import {GlobalState} from '../../../global.state';
|
import {GlobalState} from '../../../global.state';
|
||||||
import {layoutSizes} from '../../../theme';
|
import {layoutSizes} from '../../../theme';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue