devextreme-schematics 1.7.1 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/add-layout/files/src/app/__name__.component.ts +2 -1
- package/src/add-layout/files/src/app/layouts/side-nav-inner-toolbar/side-nav-inner-toolbar.component.ts +2 -1
- package/src/add-layout/files/src/app/layouts/side-nav-outer-toolbar/side-nav-outer-toolbar.component.ts +2 -1
- package/src/add-layout/files/src/app/layouts/single-card/single-card.component.ts +2 -1
- package/src/add-layout/files/src/app/not-authorized-container.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/change-password-form/change-password-form.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/create-account-form/create-account-form.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/footer/footer.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/header/header.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/login-form/login-form.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/reset-password-form/reset-password-form.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/side-navigation-menu/side-navigation-menu.component.ts +2 -1
- package/src/add-layout/files/src/app/shared/components/user-panel/user-panel.component.ts +2 -1
- package/src/add-layout/files/src/app/unauthenticated-content.ts +2 -1
- package/src/add-sample-views/files/pages/home/home.component.ts +2 -1
- package/src/add-sample-views/files/pages/profile/profile.component.ts +2 -1
- 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.
|
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": "
|
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()
|
@@ -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;
|
@@ -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 {
|