devextreme-schematics 1.7.1 → 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (18) hide show
  1. package/package.json +2 -2
  2. package/src/add-layout/files/src/app/__name__.component.ts +2 -1
  3. package/src/add-layout/files/src/app/layouts/side-nav-inner-toolbar/side-nav-inner-toolbar.component.ts +2 -1
  4. package/src/add-layout/files/src/app/layouts/side-nav-outer-toolbar/side-nav-outer-toolbar.component.ts +2 -1
  5. package/src/add-layout/files/src/app/layouts/single-card/single-card.component.ts +2 -1
  6. package/src/add-layout/files/src/app/not-authorized-container.ts +2 -1
  7. package/src/add-layout/files/src/app/shared/components/change-password-form/change-password-form.component.ts +2 -1
  8. package/src/add-layout/files/src/app/shared/components/create-account-form/create-account-form.component.ts +2 -1
  9. package/src/add-layout/files/src/app/shared/components/footer/footer.component.ts +2 -1
  10. package/src/add-layout/files/src/app/shared/components/header/header.component.ts +2 -1
  11. package/src/add-layout/files/src/app/shared/components/login-form/login-form.component.ts +2 -1
  12. package/src/add-layout/files/src/app/shared/components/reset-password-form/reset-password-form.component.ts +2 -1
  13. package/src/add-layout/files/src/app/shared/components/side-navigation-menu/side-navigation-menu.component.ts +2 -1
  14. package/src/add-layout/files/src/app/shared/components/user-panel/user-panel.component.ts +2 -1
  15. package/src/add-layout/files/src/app/unauthenticated-content.ts +2 -1
  16. package/src/add-sample-views/files/pages/home/home.component.ts +2 -1
  17. package/src/add-sample-views/files/pages/profile/profile.component.ts +2 -1
  18. package/src/add-sample-views/files/pages/tasks/tasks.component.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devextreme-schematics",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "description": "DevExtreme schematics",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.json",
@@ -35,5 +35,5 @@
35
35
  "tslint": "^5.20.1",
36
36
  "typescript": "^4.9.3"
37
37
  },
38
- "gitHead": "faa2afd612b7677412d18ca0b8330b1076f4ccd8"
38
+ "gitHead": "48c1b12ef9aef7f6b976971af76b7966a79f3883"
39
39
  }
@@ -4,7 +4,8 @@ import { AuthService, ScreenService, AppInfoService } from './shared/services';
4
4
  @Component({
5
5
  selector: '<%= prefix %>-root',
6
6
  templateUrl: './<%= name %>.component.html',
7
- styleUrls: ['./<%= name %>.component.scss']
7
+ styleUrls: ['./<%= name %>.component.scss'],
8
+ standalone: false
8
9
  })
9
10
  export class <%= strings.classify(name) %>Component {
10
11
  @HostBinding('class') get getClass() {
@@ -12,7 +12,8 @@ import { Router, NavigationEnd } from '@angular/router';
12
12
  @Component({
13
13
  selector: 'app-side-nav-inner-toolbar',
14
14
  templateUrl: './side-nav-inner-toolbar.component.html',
15
- styleUrls: ['./side-nav-inner-toolbar.component.scss']
15
+ styleUrls: ['./side-nav-inner-toolbar.component.scss'],
16
+ standalone: false
16
17
  })
17
18
  export class SideNavInnerToolbarComponent implements OnInit {
18
19
  @ViewChild(DxScrollViewComponent, { static: true }) scrollView!: DxScrollViewComponent;
@@ -11,7 +11,8 @@ import { Router, NavigationEnd } from '@angular/router';
11
11
  @Component({
12
12
  selector: 'app-side-nav-outer-toolbar',
13
13
  templateUrl: './side-nav-outer-toolbar.component.html',
14
- styleUrls: ['./side-nav-outer-toolbar.component.scss']
14
+ styleUrls: ['./side-nav-outer-toolbar.component.scss'],
15
+ standalone: false
15
16
  })
16
17
  export class SideNavOuterToolbarComponent implements OnInit {
17
18
  @ViewChild(DxScrollViewComponent, { static: true }) scrollView!: DxScrollViewComponent;
@@ -5,7 +5,8 @@ import { DxScrollViewModule } from 'devextreme-angular/ui/scroll-view';
5
5
  @Component({
6
6
  selector: 'app-single-card',
7
7
  templateUrl: './single-card.component.html',
8
- styleUrls: ['./single-card.component.scss']
8
+ styleUrls: ['./single-card.component.scss'],
9
+ standalone: false
9
10
  })
10
11
  export class SingleCardComponent {
11
12
  @Input()
@@ -16,7 +16,8 @@ import { Router } from '@angular/router';
16
16
  width: 100%;
17
17
  height: 100%;
18
18
  }
19
- `]
19
+ `],
20
+ standalone: false
20
21
  })
21
22
  export class NotAuthorizedContainerComponent {
22
23
 
@@ -10,7 +10,8 @@ import { AuthService } from '../../services';
10
10
 
11
11
  @Component({
12
12
  selector: 'app-change-passsword-form',
13
- templateUrl: './change-password-form.component.html'
13
+ templateUrl: './change-password-form.component.html',
14
+ standalone: false
14
15
  })
15
16
  export class ChangePasswordFormComponent implements OnInit {
16
17
  loading = false;
@@ -11,7 +11,8 @@ import { AuthService } from '../../services';
11
11
  @Component({
12
12
  selector: 'app-create-account-form',
13
13
  templateUrl: './create-account-form.component.html',
14
- styleUrls: ['./create-account-form.component.scss']
14
+ styleUrls: ['./create-account-form.component.scss'],
15
+ standalone: false
15
16
  })
16
17
  export class CreateAccountFormComponent {
17
18
  loading = false;
@@ -5,7 +5,8 @@ import { Component, NgModule } from '@angular/core';
5
5
  template: `
6
6
  <footer><ng-content></ng-content></footer>
7
7
  `,
8
- styleUrls: ['./footer.component.scss']
8
+ styleUrls: ['./footer.component.scss'],
9
+ standalone: false
9
10
  })
10
11
 
11
12
  export class FooterComponent {
@@ -10,7 +10,8 @@ import { Router } from '@angular/router';
10
10
  @Component({
11
11
  selector: 'app-header',
12
12
  templateUrl: 'header.component.html',
13
- styleUrls: ['./header.component.scss']
13
+ styleUrls: ['./header.component.scss'],
14
+ standalone: false
14
15
  })
15
16
 
16
17
  export class HeaderComponent implements OnInit {
@@ -10,7 +10,8 @@ import { AuthService } from '../../services';
10
10
  @Component({
11
11
  selector: 'app-login-form',
12
12
  templateUrl: './login-form.component.html',
13
- styleUrls: ['./login-form.component.scss']
13
+ styleUrls: ['./login-form.component.scss'],
14
+ standalone: false
14
15
  })
15
16
  export class LoginFormComponent {
16
17
  loading = false;
@@ -11,7 +11,8 @@ const notificationText = 'We\'ve sent a link to reset your password. Check your
11
11
  @Component({
12
12
  selector: 'app-reset-password-form',
13
13
  templateUrl: './reset-password-form.component.html',
14
- styleUrls: ['./reset-password-form.component.scss']
14
+ styleUrls: ['./reset-password-form.component.scss'],
15
+ standalone: false
15
16
  })
16
17
  export class ResetPasswordFormComponent {
17
18
  loading = false;
@@ -7,7 +7,8 @@ import * as events from 'devextreme/events';
7
7
  @Component({
8
8
  selector: 'app-side-navigation-menu',
9
9
  templateUrl: './side-navigation-menu.component.html',
10
- styleUrls: ['./side-navigation-menu.component.scss']
10
+ styleUrls: ['./side-navigation-menu.component.scss'],
11
+ standalone: false
11
12
  })
12
13
  export class SideNavigationMenuComponent implements AfterViewInit, OnDestroy {
13
14
  @ViewChild(DxTreeViewComponent, { static: true })
@@ -8,7 +8,8 @@ import { IUser } from '../../services/auth.service';
8
8
  @Component({
9
9
  selector: 'app-user-panel',
10
10
  templateUrl: 'user-panel.component.html',
11
- styleUrls: ['./user-panel.component.scss']
11
+ styleUrls: ['./user-panel.component.scss'],
12
+ standalone: false
12
13
  })
13
14
 
14
15
  export class UserPanelComponent {
@@ -16,7 +16,8 @@ import { Router } from '@angular/router';
16
16
  width: 100%;
17
17
  height: 100%;
18
18
  }
19
- `]
19
+ `],
20
+ standalone: false
20
21
  })
21
22
  export class UnauthenticatedContentComponent {
22
23
 
@@ -2,7 +2,8 @@ import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
4
  templateUrl: 'home.component.html',
5
- styleUrls: [ './home.component.scss' ]
5
+ styleUrls: [ './home.component.scss' ],
6
+ standalone: false
6
7
  })
7
8
 
8
9
  export class HomeComponent {
@@ -2,7 +2,8 @@ import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
4
  templateUrl: 'profile.component.html',
5
- styleUrls: [ './profile.component.scss' ]
5
+ styleUrls: [ './profile.component.scss' ],
6
+ standalone: false
6
7
  })
7
8
 
8
9
  export class ProfileComponent {
@@ -2,7 +2,8 @@ import { Component } from '@angular/core';
2
2
  import 'devextreme/data/odata/store';
3
3
 
4
4
  @Component({
5
- templateUrl: 'tasks.component.html'
5
+ templateUrl: 'tasks.component.html',
6
+ standalone: false
6
7
  })
7
8
 
8
9
  export class TasksComponent {