@tramvai/module-common 1.82.1 → 1.84.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/lib/child-app/command.d.ts +2 -0
- package/lib/command/defaultLines.d.ts +2 -0
- package/lib/index.browser.js +2 -0
- package/lib/index.es.js +2 -0
- package/lib/index.js +2 -0
- package/package.json +15 -15
|
@@ -4,11 +4,13 @@ export declare const lines: {
|
|
|
4
4
|
customer: import("@tramvai/core").Command[];
|
|
5
5
|
clear: import("@tramvai/core").Command[];
|
|
6
6
|
spa: import("@tramvai/core").Command[];
|
|
7
|
+
afterSpa: import("@tramvai/core").Command[];
|
|
7
8
|
};
|
|
8
9
|
client: {
|
|
9
10
|
customer: import("@tramvai/core").Command[];
|
|
10
11
|
clear: import("@tramvai/core").Command[];
|
|
11
12
|
spa: import("@tramvai/core").Command[];
|
|
13
|
+
afterSpa: import("@tramvai/core").Command[];
|
|
12
14
|
};
|
|
13
15
|
};
|
|
14
16
|
export declare const commandProviders: Provider[];
|
|
@@ -4,11 +4,13 @@ export declare const lines: {
|
|
|
4
4
|
close: import("@tramvai/core").Command[];
|
|
5
5
|
customer: import("@tramvai/core").Command[];
|
|
6
6
|
spa: import("@tramvai/core").Command[];
|
|
7
|
+
afterSpa: import("@tramvai/core").Command[];
|
|
7
8
|
};
|
|
8
9
|
client: {
|
|
9
10
|
init: import("@tramvai/core").Command[];
|
|
10
11
|
close: import("@tramvai/core").Command[];
|
|
11
12
|
customer: import("@tramvai/core").Command[];
|
|
12
13
|
spa: import("@tramvai/core").Command[];
|
|
14
|
+
afterSpa: import("@tramvai/core").Command[];
|
|
13
15
|
};
|
|
14
16
|
};
|
package/lib/index.browser.js
CHANGED
|
@@ -504,6 +504,7 @@ const command$1 = {
|
|
|
504
504
|
commandLineListTokens.resolvePageDeps,
|
|
505
505
|
commandLineListTokens.spaTransition,
|
|
506
506
|
],
|
|
507
|
+
afterSpa: [commandLineListTokens.afterSpaTransition],
|
|
507
508
|
};
|
|
508
509
|
const lines$1 = {
|
|
509
510
|
server: command$1,
|
|
@@ -1077,6 +1078,7 @@ const command = {
|
|
|
1077
1078
|
commandLineListTokens$1.resolvePageDeps,
|
|
1078
1079
|
commandLineListTokens$1.spaTransition,
|
|
1079
1080
|
],
|
|
1081
|
+
afterSpa: [commandLineListTokens$1.afterSpaTransition],
|
|
1080
1082
|
};
|
|
1081
1083
|
const lines = {
|
|
1082
1084
|
server: command,
|
package/lib/index.es.js
CHANGED
|
@@ -501,6 +501,7 @@ const command$1 = {
|
|
|
501
501
|
commandLineListTokens.resolvePageDeps,
|
|
502
502
|
commandLineListTokens.spaTransition,
|
|
503
503
|
],
|
|
504
|
+
afterSpa: [commandLineListTokens.afterSpaTransition],
|
|
504
505
|
};
|
|
505
506
|
const lines$1 = {
|
|
506
507
|
server: command$1,
|
|
@@ -1099,6 +1100,7 @@ const command = {
|
|
|
1099
1100
|
commandLineListTokens$1.resolvePageDeps,
|
|
1100
1101
|
commandLineListTokens$1.spaTransition,
|
|
1101
1102
|
],
|
|
1103
|
+
afterSpa: [commandLineListTokens$1.afterSpaTransition],
|
|
1102
1104
|
};
|
|
1103
1105
|
const lines = {
|
|
1104
1106
|
server: command,
|
package/lib/index.js
CHANGED
|
@@ -520,6 +520,7 @@ const command$1 = {
|
|
|
520
520
|
core.commandLineListTokens.resolvePageDeps,
|
|
521
521
|
core.commandLineListTokens.spaTransition,
|
|
522
522
|
],
|
|
523
|
+
afterSpa: [core.commandLineListTokens.afterSpaTransition],
|
|
523
524
|
};
|
|
524
525
|
const lines$1 = {
|
|
525
526
|
server: command$1,
|
|
@@ -1118,6 +1119,7 @@ const command = {
|
|
|
1118
1119
|
tokensChildApp.commandLineListTokens.resolvePageDeps,
|
|
1119
1120
|
tokensChildApp.commandLineListTokens.spaTransition,
|
|
1120
1121
|
],
|
|
1122
|
+
afterSpa: [tokensChildApp.commandLineListTokens.afterSpaTransition],
|
|
1121
1123
|
};
|
|
1122
1124
|
const lines = {
|
|
1123
1125
|
server: command,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/module-common",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.84.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -28,28 +28,28 @@
|
|
|
28
28
|
"build-for-publish": "true"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@tinkoff/errors": "0.2.
|
|
31
|
+
"@tinkoff/errors": "0.2.20",
|
|
32
32
|
"@tinkoff/pubsub": "0.4.23",
|
|
33
33
|
"@tinkoff/url": "0.7.37",
|
|
34
|
-
"@tramvai/module-cookie": "1.
|
|
35
|
-
"@tramvai/module-environment": "1.
|
|
36
|
-
"@tramvai/module-log": "1.
|
|
37
|
-
"@tramvai/tokens-child-app": "1.
|
|
38
|
-
"@tramvai/tokens-common": "1.
|
|
39
|
-
"@tramvai/tokens-render": "1.
|
|
40
|
-
"@tramvai/experiments": "1.
|
|
34
|
+
"@tramvai/module-cookie": "1.84.0",
|
|
35
|
+
"@tramvai/module-environment": "1.84.0",
|
|
36
|
+
"@tramvai/module-log": "1.84.0",
|
|
37
|
+
"@tramvai/tokens-child-app": "1.84.0",
|
|
38
|
+
"@tramvai/tokens-common": "1.84.0",
|
|
39
|
+
"@tramvai/tokens-render": "1.84.0",
|
|
40
|
+
"@tramvai/experiments": "1.84.0",
|
|
41
41
|
"@tinkoff/hook-runner": "0.3.21",
|
|
42
42
|
"hoist-non-react-statics": "^3.3.1",
|
|
43
43
|
"lru-cache": "^6.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@tinkoff/utils": "^2.1.2",
|
|
47
|
-
"@tramvai/cli": "1.
|
|
48
|
-
"@tramvai/core": "1.
|
|
49
|
-
"@tramvai/papi": "1.
|
|
50
|
-
"@tramvai/state": "1.
|
|
51
|
-
"@tramvai/tokens-metrics": "1.
|
|
52
|
-
"@tramvai/tokens-server": "1.
|
|
47
|
+
"@tramvai/cli": "1.84.0",
|
|
48
|
+
"@tramvai/core": "1.84.0",
|
|
49
|
+
"@tramvai/papi": "1.84.0",
|
|
50
|
+
"@tramvai/state": "1.84.0",
|
|
51
|
+
"@tramvai/tokens-metrics": "1.84.0",
|
|
52
|
+
"@tramvai/tokens-server": "1.84.0",
|
|
53
53
|
"@tinkoff/dippy": "0.7.39",
|
|
54
54
|
"react": ">=16.8.0",
|
|
55
55
|
"tslib": "^2.0.3"
|