|
1 | | -import { Component, OnInit, OnDestroy } from '@angular/core'; |
2 | | -import { ChipThemeColor, KENDO_BUTTONS } from '@progress/kendo-angular-buttons'; |
3 | | -import { SVGIcon, caretAltDownIcon, caretAltUpIcon } from '@progress/kendo-svg-icons'; |
4 | | -import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; |
5 | | -import { DataService } from '../../services/data.service'; |
6 | | -import { BehaviorSubject, Observable, Subject, Subscription, combineLatest } from 'rxjs'; |
7 | | -import { switchMap, takeUntil, tap, startWith } from 'rxjs/operators'; |
8 | | -import { FormsModule } from '@angular/forms'; |
9 | 1 | import { CommonModule } from '@angular/common'; |
10 | | -import { ColumnMenuSettings, DataStateChangeEvent, GridDataResult, KENDO_GRID } from '@progress/kendo-angular-grid'; |
| 2 | +import { Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core'; |
| 3 | +import { FormsModule } from '@angular/forms'; |
| 4 | +import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; |
| 5 | +import { ChipThemeColor, KENDO_BUTTONS } from '@progress/kendo-angular-buttons'; |
| 6 | +import { KENDO_CHARTS } from '@progress/kendo-angular-charts'; |
11 | 7 | import { KENDO_DROPDOWNS } from '@progress/kendo-angular-dropdowns'; |
| 8 | +import { ColumnMenuSettings, DataStateChangeEvent, GridDataResult, KENDO_GRID } from '@progress/kendo-angular-grid'; |
| 9 | +import { KENDO_ICONS } from '@progress/kendo-angular-icons'; |
12 | 10 | import { KENDO_INPUTS } from '@progress/kendo-angular-inputs'; |
13 | | -import { KENDO_CHARTS } from '@progress/kendo-angular-charts'; |
14 | | -import { KENDO_LABELS } from '@progress/kendo-angular-label'; |
15 | 11 | import { IntlModule } from '@progress/kendo-angular-intl'; |
16 | | -import { KENDO_ICONS } from '@progress/kendo-angular-icons'; |
| 12 | +import { KENDO_LABELS } from '@progress/kendo-angular-label'; |
17 | 13 | import { KENDO_TOOLTIPS } from '@progress/kendo-angular-tooltip'; |
18 | | -import { cashIcon, goldIcon, realEstateIcon, securitiesIcon } from '../../data/custom-icons'; |
19 | | -import { DynamicGridItem } from '../../models/dynamic-grid-item'; |
20 | 14 | import { State } from '@progress/kendo-data-query'; |
| 15 | +import { SVGIcon, caretAltDownIcon, caretAltUpIcon } from '@progress/kendo-svg-icons'; |
| 16 | +import { Subscription } from 'rxjs'; |
| 17 | +import { cashIcon, goldIcon, realEstateIcon, securitiesIcon } from '../../data/custom-icons'; |
| 18 | +import { DataService } from '../../services/data.service'; |
21 | 19 | import { MultiCheckboxFilterComponent } from './multi-checkbox-filter/multi-checkbox-filter.component'; |
22 | 20 |
|
23 | 21 | @Component({ |
24 | 22 | selector: 'app-dynamic-grid', |
| 23 | + encapsulation: ViewEncapsulation.None, |
25 | 24 | imports: [ |
26 | 25 | FormsModule, |
27 | 26 | CommonModule, |
|
0 commit comments