Skip to content

Commit 2729a59

Browse files
Copilotdamyanpetev
andcommitted
refactor: rename service files to match TypeScript identifiers (user-store.ts, local-data.ts)
Co-authored-by: damyanpetev <3198469+damyanpetev@users.noreply.github.com>
1 parent c3f8f72 commit 2729a59

19 files changed

Lines changed: 16 additions & 16 deletions

File tree

packages/igx-templates/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import {
4444
} from 'igniteui-angular-charts';
4545
import { timer } from 'rxjs';
4646
import { debounce } from 'rxjs/operators';
47-
import { LocalData } from './localData';
47+
import { LocalData } from './local-data';
4848
import { Contract, REGIONS } from './data/financialData';
4949
import { NgIf, NgFor, CurrencyPipe } from '@angular/common';
5050
import { ReactiveFormsModule, FormsModule } from '@angular/forms';

packages/igx-templates/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/localData.ts renamed to packages/igx-templates/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/local-data.ts

File renamed without changes.

packages/igx-templates/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/__filePrefix__.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
} from '<%=igxPackage%>';
3434
import { timer } from 'rxjs';
3535
import { debounce } from 'rxjs/operators';
36-
import { LocalData } from './localData';
36+
import { LocalData } from './local-data';
3737
import { ITreeGridAggregation, <%=ClassName%>TreeGridGroupingPipe } from './tree-grid-grouping.pipe';
3838
import { NgIf, CurrencyPipe } from '@angular/common';
3939
import { ReactiveFormsModule, FormsModule } from '@angular/forms';

packages/igx-templates/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/localData.ts renamed to packages/igx-templates/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/local-data.ts

File renamed without changes.

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/auth.guard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Injectable } from '@angular/core';
22
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from '@angular/router';
3-
import { UserStore } from './services/user';
3+
import { UserStore } from './services/user-store';
44

55
@Injectable({
66
providedIn: 'root'

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export * from './models/register-info';
66
export * from './models/user';
77
export * from './services/authentication';
88
export * from './services/external-auth';
9-
export * from './services/user';
9+
export * from './services/user-store';

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/login-bar/login-bar.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
} from 'igniteui-angular';
1818
import { LoginDialog } from '../login-dialog/login-dialog';
1919
import { ExternalAuth } from '../services/external-auth';
20-
import { UserStore } from '../services/user';
20+
import { UserStore } from '../services/user-store';
2121
import { LoginBar } from './login-bar';
2222

2323
@Component({

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/login-bar/login-bar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { IgxDropDownComponent, ISelectionEventArgs, IgxRippleDirective, IgxButto
55
IgxAvatarComponent, IgxIconComponent, IgxDropDownItemComponent } from 'igniteui-angular';
66
import { LoginDialog } from '../login-dialog/login-dialog';
77
import { ExternalAuth } from '../services/external-auth';
8-
import { UserStore } from '../services/user';
8+
import { UserStore } from '../services/user-store';
99

1010
@Component({
1111
selector: 'app-login-bar',

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/login/login.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { IgxButtonModule, IgxIconModule, IgxInputGroupModule, IgxRippleModule }
99
import { Authentication } from '../services/authentication';
1010
import { ExternalAuthProvider } from '../services/external-auth-configs';
1111
import { ExternalAuth } from '../services/external-auth';
12-
import { UserStore } from '../services/user';
12+
import { UserStore } from '../services/user-store';
1313
import { Login } from './login';
1414

1515
const MAIL_GROUP_NAME = 'email';

packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/login/login.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { IgxInputGroupComponent, IgxPrefixDirective, IgxIconComponent, IgxLabelD
88
import { Authentication } from '../services/authentication';
99
import { ExternalAuthProvider } from '../services/external-auth-configs';
1010
import { ExternalAuth } from '../services/external-auth';
11-
import { UserStore } from '../services/user';
11+
import { UserStore } from '../services/user-store';
1212

1313
@Component({
1414
selector: 'app-login',

0 commit comments

Comments
 (0)