devextreme-cli 1.7.3 → 1.8.0
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devextreme-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "DevExtreme CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"devexpress",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"typescript": "^4.0.2",
|
|
73
73
|
"typescript-eslint-parser": "^22.0.0"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "b1e11fb858e65b9b506bd0da0b1ec689d267c0e7"
|
|
76
76
|
}
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import { TreeViewTypes } from 'devextreme-react/tree-view';
|
|
2
|
-
import { ButtonTypes } from 'devextreme-react/button';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
|
|
5
|
-
export interface HeaderProps {
|
|
6
|
-
menuToggleEnabled: boolean;
|
|
7
|
-
title?: string;
|
|
8
|
-
toggleMenu: (e: ButtonTypes.ClickEvent) => void;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface SideNavigationMenuProps {
|
|
12
|
-
selectedItemChanged: (e: TreeViewTypes.ItemClickEvent) => void;
|
|
13
|
-
openMenu: (e: React.PointerEvent) => void;
|
|
14
|
-
compactMode: boolean;
|
|
15
|
-
onMenuReady: (e: TreeViewTypes.ContentReadyEvent) => void;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export interface UserPanelProps {
|
|
19
|
-
menuMode: 'context' | 'list';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface User {
|
|
23
|
-
email: string;
|
|
24
|
-
avatarUrl: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export type AuthContextType = {
|
|
28
|
-
user?: User;
|
|
29
|
-
signIn: (email: string, password: string) => Promise<{isOk: boolean, data?: User, message?: string}>;
|
|
30
|
-
signOut: () => void;
|
|
31
|
-
loading: boolean;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface SideNavToolbarProps {
|
|
35
|
-
title: string;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export interface SingleCardProps {
|
|
39
|
-
title?: string;
|
|
40
|
-
description?: string;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export type Handle = () => void;
|
|
44
|
-
|
|
45
|
-
interface NavigationData {
|
|
46
|
-
currentPath: string;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export type NavigationContextType = {
|
|
50
|
-
setNavigationData?: ({ currentPath }: NavigationData) => void;
|
|
51
|
-
navigationData: NavigationData;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export type ValidationType = {
|
|
55
|
-
value: string;
|
|
1
|
+
import { TreeViewTypes } from 'devextreme-react/tree-view';
|
|
2
|
+
import { ButtonTypes } from 'devextreme-react/button';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
|
|
5
|
+
export interface HeaderProps {
|
|
6
|
+
menuToggleEnabled: boolean;
|
|
7
|
+
title?: string;
|
|
8
|
+
toggleMenu: (e: ButtonTypes.ClickEvent) => void;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface SideNavigationMenuProps {
|
|
12
|
+
selectedItemChanged: (e: TreeViewTypes.ItemClickEvent) => void;
|
|
13
|
+
openMenu: (e: React.PointerEvent) => void;
|
|
14
|
+
compactMode: boolean;
|
|
15
|
+
onMenuReady: (e: TreeViewTypes.ContentReadyEvent) => void;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface UserPanelProps {
|
|
19
|
+
menuMode: 'context' | 'list';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface User {
|
|
23
|
+
email: string;
|
|
24
|
+
avatarUrl: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export type AuthContextType = {
|
|
28
|
+
user?: User;
|
|
29
|
+
signIn: (email: string, password: string) => Promise<{isOk: boolean, data?: User, message?: string}>;
|
|
30
|
+
signOut: () => void;
|
|
31
|
+
loading: boolean;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface SideNavToolbarProps {
|
|
35
|
+
title: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface SingleCardProps {
|
|
39
|
+
title?: string;
|
|
40
|
+
description?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export type Handle = () => void;
|
|
44
|
+
|
|
45
|
+
interface NavigationData {
|
|
46
|
+
currentPath: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type NavigationContextType = {
|
|
50
|
+
setNavigationData?: ({ currentPath }: NavigationData) => void;
|
|
51
|
+
navigationData: NavigationData;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export type ValidationType = {
|
|
55
|
+
value: string;
|
|
56
56
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const packageJson = require('../../package.json');
|
|
2
2
|
module.exports = {
|
|
3
|
-
'devextreme': '24.2.
|
|
4
|
-
'devextreme-react': '24.2.
|
|
5
|
-
'devextreme-vue': '24.2.
|
|
3
|
+
'devextreme': '24.2.3',
|
|
4
|
+
'devextreme-react': '24.2.3',
|
|
5
|
+
'devextreme-vue': '24.2.3',
|
|
6
6
|
'devextreme-cli': packageJson.version,
|
|
7
|
-
'devextreme-schematics': '
|
|
7
|
+
'devextreme-schematics': 'latest'
|
|
8
8
|
};
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/templates/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|