Skip to content

Commit 30b45af

Browse files
fix lint
1 parent 16a67d7 commit 30b45af

File tree

10 files changed

+23
-16
lines changed

10 files changed

+23
-16
lines changed

apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { bootstrapApplication } from '@angular/platform-browser';
22
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
33
import { DxDataGridModule } from 'devextreme-angular';
44
import * as AspNetData from 'devextreme-aspnet-data-nojquery';
5-
import { DetailGridComponent } from './detail-grid/detail-grid.component';
65

76
if (!/localhost/.test(document.location.host)) {
87
enableProdMode();

apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
22
import { Component, enableProdMode, Pipe, PipeTransform, provideZoneChangeDetection } from '@angular/core';
3-
import {
4-
DxCheckBoxModule, DxFileUploaderModule, DxSelectBoxModule,
5-
} from 'devextreme-angular';
3+
import { DxCheckBoxModule, DxFileUploaderModule, DxSelectBoxModule } from 'devextreme-angular';
64

75
if (!/localhost/.test(document.location.host)) {
86
enableProdMode();

apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
2-
import {
3-
Component, ViewChild, enableProdMode, provideZoneChangeDetection } from '@angular/core';
2+
import { Component, ViewChild, enableProdMode, provideZoneChangeDetection } from '@angular/core';
43
import config from 'devextreme/core/config';
54
import repaintFloatingActionButton from 'devextreme/ui/speed_dial_action/repaint_floating_action_button';
65
import { DxSpeedDialActionModule } from 'devextreme-angular';

apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
2-
import {
3-
Component, ViewChild, enableProdMode, AfterViewInit, provideZoneChangeDetection } from '@angular/core';
2+
import {
3+
Component,
4+
ViewChild,
5+
enableProdMode,
6+
AfterViewInit,
7+
provideZoneChangeDetection,
8+
} from '@angular/core';
49
import {
510
DxSelectBoxModule,
611
DxTextAreaModule,

apps/demos/Demos/Form/Validation/Angular/app/app.component.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
22
import {
3-
Component, ViewChild, enableProdMode, provideZoneChangeDetection } from '@angular/core';
3+
Component,
4+
ViewChild,
5+
enableProdMode,
6+
provideZoneChangeDetection
7+
} from '@angular/core';
48
import {
59
DxCheckBoxModule,
610
DxSelectBoxModule,

apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
2-
import {
3-
Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
2+
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
43
import { DxHtmlEditorModule, DxPopupModule } from 'devextreme-angular';
54
import { DxButtonTypes } from 'devextreme-angular/ui/button';
65
import { Service } from './app.service';

apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { Component, NgModule, enableProdMode, provideZoneChangeDetection } from '@angular/core';
1+
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
22
import { bootstrapApplication } from '@angular/platform-browser';
3-
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
43
import { DxPopupModule, DxScrollViewModule } from 'devextreme-angular';
54
import { DxButtonModule, DxButtonTypes } from 'devextreme-angular/ui/button';
65

apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class AppComponent {
7777
this.indicatorUpdateInterval = e.value * 1000;
7878
};
7979

80-
getMovieById = (id: string | number) => Query(this.moviesData).filter(['id', '=', id]).toArray()[0] as movie;
80+
getMovieById = (id: string | number) => Query(this.moviesData).filter(['id', '=', id]).toArray()[0] as MovieData;
8181
}
8282

8383
bootstrapApplication(AppComponent, {

apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import { bootstrapApplication } from '@angular/platform-browser';
22
import {
3-
Component, ViewChild, AfterViewInit, enableProdMode, provideZoneChangeDetection } from '@angular/core';
3+
Component,
4+
ViewChild,
5+
AfterViewInit,
6+
enableProdMode,
7+
provideZoneChangeDetection
8+
} from '@angular/core';
49
import { DxSelectBoxModule } from 'devextreme-angular';
510
import { DxCheckBoxModule, DxCheckBoxTypes } from 'devextreme-angular/ui/check-box';
611
import { DxScrollViewModule, DxScrollViewComponent, DxScrollViewTypes } from 'devextreme-angular/ui/scroll-view';

apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
22
import { bootstrapApplication } from '@angular/platform-browser';
3-
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
43
import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http';
54
import { lastValueFrom } from 'rxjs';
65

0 commit comments

Comments
 (0)