Skip to content

Commit

Permalink
Add flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dxvladislavvolkov committed Nov 25, 2024
1 parent faa2afd commit d96bc37
Show file tree
Hide file tree
Showing 17 changed files with 34 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { AuthService, ScreenService, AppInfoService } from './shared/services';
@Component({
selector: '<%= prefix %>-root',
templateUrl: './<%= name %>.component.html',
styleUrls: ['./<%= name %>.component.scss']
styleUrls: ['./<%= name %>.component.scss'],
standalone: false
})
export class <%= strings.classify(name) %>Component {
@HostBinding('class') get getClass() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import { Router, NavigationEnd } from '@angular/router';
@Component({
selector: 'app-side-nav-inner-toolbar',
templateUrl: './side-nav-inner-toolbar.component.html',
styleUrls: ['./side-nav-inner-toolbar.component.scss']
styleUrls: ['./side-nav-inner-toolbar.component.scss'],
standalone: false
})
export class SideNavInnerToolbarComponent implements OnInit {
@ViewChild(DxScrollViewComponent, { static: true }) scrollView!: DxScrollViewComponent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import { Router, NavigationEnd } from '@angular/router';
@Component({
selector: 'app-side-nav-outer-toolbar',
templateUrl: './side-nav-outer-toolbar.component.html',
styleUrls: ['./side-nav-outer-toolbar.component.scss']
styleUrls: ['./side-nav-outer-toolbar.component.scss'],
standalone: false
})
export class SideNavOuterToolbarComponent implements OnInit {
@ViewChild(DxScrollViewComponent, { static: true }) scrollView!: DxScrollViewComponent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { DxScrollViewModule } from 'devextreme-angular/ui/scroll-view';
@Component({
selector: 'app-single-card',
templateUrl: './single-card.component.html',
styleUrls: ['./single-card.component.scss']
styleUrls: ['./single-card.component.scss'],
standalone: false
})
export class SingleCardComponent {
@Input()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import { Router } from '@angular/router';
width: 100%;
height: 100%;
}
`]
`],
standalone: false
})
export class NotAuthorizedContainerComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { AuthService } from '../../services';

@Component({
selector: 'app-change-passsword-form',
templateUrl: './change-password-form.component.html'
templateUrl: './change-password-form.component.html',
standalone: false
})
export class ChangePasswordFormComponent implements OnInit {
loading = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import { AuthService } from '../../services';
@Component({
selector: 'app-create-account-form',
templateUrl: './create-account-form.component.html',
styleUrls: ['./create-account-form.component.scss']
styleUrls: ['./create-account-form.component.scss'],
standalone: false
})
export class CreateAccountFormComponent {
loading = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { Component, NgModule } from '@angular/core';
template: `
<footer><ng-content></ng-content></footer>
`,
styleUrls: ['./footer.component.scss']
styleUrls: ['./footer.component.scss'],
standalone: false
})

export class FooterComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { Router } from '@angular/router';
@Component({
selector: 'app-header',
templateUrl: 'header.component.html',
styleUrls: ['./header.component.scss']
styleUrls: ['./header.component.scss'],
standalone: false
})

export class HeaderComponent implements OnInit {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { AuthService } from '../../services';
@Component({
selector: 'app-login-form',
templateUrl: './login-form.component.html',
styleUrls: ['./login-form.component.scss']
styleUrls: ['./login-form.component.scss'],
standalone: false
})
export class LoginFormComponent {
loading = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const notificationText = 'We\'ve sent a link to reset your password. Check your
@Component({
selector: 'app-reset-password-form',
templateUrl: './reset-password-form.component.html',
styleUrls: ['./reset-password-form.component.scss']
styleUrls: ['./reset-password-form.component.scss'],
standalone: false
})
export class ResetPasswordFormComponent {
loading = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import * as events from 'devextreme/events';
@Component({
selector: 'app-side-navigation-menu',
templateUrl: './side-navigation-menu.component.html',
styleUrls: ['./side-navigation-menu.component.scss']
styleUrls: ['./side-navigation-menu.component.scss'],
standalone: false
})
export class SideNavigationMenuComponent implements AfterViewInit, OnDestroy {
@ViewChild(DxTreeViewComponent, { static: true })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import { IUser } from '../../services/auth.service';
@Component({
selector: 'app-user-panel',
templateUrl: 'user-panel.component.html',
styleUrls: ['./user-panel.component.scss']
styleUrls: ['./user-panel.component.scss'],
standalone: false
})

export class UserPanelComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import { Router } from '@angular/router';
width: 100%;
height: 100%;
}
`]
`],
standalone: false
})
export class UnauthenticatedContentComponent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Component } from '@angular/core';

@Component({
templateUrl: 'home.component.html',
styleUrls: [ './home.component.scss' ]
styleUrls: [ './home.component.scss' ],
standalone: false
})

export class HomeComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Component } from '@angular/core';

@Component({
templateUrl: 'profile.component.html',
styleUrls: [ './profile.component.scss' ]
styleUrls: [ './profile.component.scss' ],
standalone: false
})

export class ProfileComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { Component } from '@angular/core';
import 'devextreme/data/odata/store';

@Component({
templateUrl: 'tasks.component.html'
templateUrl: 'tasks.component.html',
standalone: false
})

export class TasksComponent {
Expand Down

0 comments on commit d96bc37

Please sign in to comment.