@tramvai/tokens-core 2.56.2 → 2.56.5
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/lib/command.d.ts +36 -12
- package/lib/index.d.ts +7 -3
- package/package.json +3 -3
package/lib/command.d.ts
CHANGED
|
@@ -9,17 +9,41 @@ export type CommandLines = {
|
|
|
9
9
|
server: CommandLineDescription;
|
|
10
10
|
client: CommandLineDescription;
|
|
11
11
|
};
|
|
12
|
-
export declare const COMMAND_LINE_RUNNER_TOKEN:
|
|
13
|
-
|
|
12
|
+
export declare const COMMAND_LINE_RUNNER_TOKEN: CommandLineRunner & {
|
|
13
|
+
__type?: "base token" | undefined;
|
|
14
|
+
};
|
|
15
|
+
export declare const COMMAND_LINES_TOKEN: CommandLines & {
|
|
16
|
+
__type?: "base token" | undefined;
|
|
17
|
+
};
|
|
14
18
|
export declare const commandLineListTokens: {
|
|
15
|
-
init:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
init: Command & {
|
|
20
|
+
__type?: "multi token" | undefined;
|
|
21
|
+
};
|
|
22
|
+
listen: Command & {
|
|
23
|
+
__type?: "multi token" | undefined;
|
|
24
|
+
};
|
|
25
|
+
customerStart: Command & {
|
|
26
|
+
__type?: "multi token" | undefined;
|
|
27
|
+
};
|
|
28
|
+
resolveUserDeps: Command & {
|
|
29
|
+
__type?: "multi token" | undefined;
|
|
30
|
+
};
|
|
31
|
+
resolvePageDeps: Command & {
|
|
32
|
+
__type?: "multi token" | undefined;
|
|
33
|
+
};
|
|
34
|
+
generatePage: Command & {
|
|
35
|
+
__type?: "multi token" | undefined;
|
|
36
|
+
};
|
|
37
|
+
clear: Command & {
|
|
38
|
+
__type?: "multi token" | undefined;
|
|
39
|
+
};
|
|
40
|
+
spaTransition: Command & {
|
|
41
|
+
__type?: "multi token" | undefined;
|
|
42
|
+
};
|
|
43
|
+
afterSpaTransition: Command & {
|
|
44
|
+
__type?: "multi token" | undefined;
|
|
45
|
+
};
|
|
46
|
+
close: Command & {
|
|
47
|
+
__type?: "multi token" | undefined;
|
|
48
|
+
};
|
|
25
49
|
};
|
package/lib/index.d.ts
CHANGED
|
@@ -3,9 +3,13 @@ export * from './action';
|
|
|
3
3
|
export * from './command';
|
|
4
4
|
export * from './bundle';
|
|
5
5
|
export declare const BUNDLE_LIST_TOKEN: any;
|
|
6
|
-
export declare const ACTIONS_LIST_TOKEN:
|
|
6
|
+
export declare const ACTIONS_LIST_TOKEN: Action<any, any, any>[] & {
|
|
7
|
+
__type?: "base token" | undefined;
|
|
8
|
+
};
|
|
7
9
|
export declare const MODULES_LIST_TOKEN: any;
|
|
8
|
-
export declare const APP_INFO_TOKEN:
|
|
10
|
+
export declare const APP_INFO_TOKEN: {
|
|
9
11
|
[key: string]: string;
|
|
10
12
|
appName: string;
|
|
11
|
-
}
|
|
13
|
+
} & {
|
|
14
|
+
__type?: "base token" | undefined;
|
|
15
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/tokens-core",
|
|
3
|
-
"version": "2.56.
|
|
3
|
+
"version": "2.56.5",
|
|
4
4
|
"description": "Tramvai core tokens",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.es.js",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"build-for-publish": "true"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@tramvai/types-actions-state-context": "2.56.
|
|
22
|
+
"@tramvai/types-actions-state-context": "2.56.5"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@tinkoff/dippy": "0.8.
|
|
25
|
+
"@tinkoff/dippy": "0.8.11",
|
|
26
26
|
"tslib": "^2.4.0"
|
|
27
27
|
},
|
|
28
28
|
"license": "Apache-2.0"
|