devextreme-schematics 1.2.22 → 1.2.23
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -2
- package/src/add-layout/files/src/app/layouts/side-nav-inner-toolbar/side-nav-inner-toolbar.component.ts +1 -1
- package/src/add-layout/files/src/app/layouts/side-nav-outer-toolbar/side-nav-outer-toolbar.component.ts +1 -1
- package/src/add-sample-views/files/pages/profile/profile.component.ts +1 -1
- package/src/install/schema.json +1 -1
- package/src/utility/latest-versions.js +2 -2
- package/src/utility/latest-versions.ts +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "devextreme-schematics",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.23",
|
4
4
|
"description": "DevExtreme schematics",
|
5
5
|
"scripts": {
|
6
6
|
"build": "tsc -p tsconfig.json",
|
@@ -34,5 +34,5 @@
|
|
34
34
|
"jasmine": "^2.8.0",
|
35
35
|
"tslint": "^5.15.0"
|
36
36
|
},
|
37
|
-
"gitHead": "
|
37
|
+
"gitHead": "777e8d2b209c52381f604bb395a5289c8cded7da"
|
38
38
|
}
|
@@ -70,7 +70,7 @@ export class SideNavInnerToolbarComponent implements OnInit {
|
|
70
70
|
}
|
71
71
|
|
72
72
|
navigationChanged(event: TreeViewItemClickEvent) {
|
73
|
-
const path = event.itemData.path;
|
73
|
+
const path = (event.itemData as any).path;
|
74
74
|
const pointerEvent = event.event;
|
75
75
|
|
76
76
|
if (path && this.menuOpened) {
|
@@ -63,7 +63,7 @@ export class SideNavOuterToolbarComponent implements OnInit {
|
|
63
63
|
}
|
64
64
|
|
65
65
|
navigationChanged(event: ItemClickEvent) {
|
66
|
-
const path = event.itemData.path;
|
66
|
+
const path = (event.itemData as any).path;
|
67
67
|
const pointerEvent = event.event;
|
68
68
|
|
69
69
|
if (path && this.menuOpened) {
|
@@ -17,7 +17,7 @@ export class ProfileComponent {
|
|
17
17
|
Prefix: 'Mrs.',
|
18
18
|
Position: 'Controller',
|
19
19
|
Picture: 'images/employees/06.png',
|
20
|
-
BirthDate: new Date('1974/11/
|
20
|
+
BirthDate: new Date('1974/11/5'),
|
21
21
|
HireDate: new Date('2005/05/11'),
|
22
22
|
/* tslint:disable-next-line:max-line-length */
|
23
23
|
Notes: 'Sandra is a CPA and has been our controller since 2008. She loves to interact with staff so if you`ve not met her, be certain to say hi.\r\n\r\nSandra has 2 daughters both of whom are accomplished gymnasts.',
|
package/src/install/schema.json
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
// TODO: implement
|
4
4
|
exports.latestVersions = {
|
5
|
-
'devextreme': '^21.2.
|
6
|
-
'devextreme-angular': '^21.2.
|
5
|
+
'devextreme': '^21.2.4',
|
6
|
+
'devextreme-angular': '^21.2.4',
|
7
7
|
'devextreme-cli': 'latest'
|
8
8
|
};
|
9
9
|
//# sourceMappingURL=latest-versions.js.map
|