@tramvai/tokens-child-app 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/index.d.ts +1 -0
- package/lib/index.es.js +2 -0
- package/lib/index.js +2 -0
- package/lib/types.d.ts +1 -1
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
package/lib/index.es.js
CHANGED
|
@@ -14,6 +14,8 @@ const commandLineListTokens = {
|
|
|
14
14
|
clear: createToken('child-app clear', multiOptions),
|
|
15
15
|
// section: spa transitions
|
|
16
16
|
spaTransition: createToken('child-app spa_transition', multiOptions),
|
|
17
|
+
// section: after spa transitions
|
|
18
|
+
afterSpaTransition: createToken('child-app after_spa_transition', multiOptions),
|
|
17
19
|
};
|
|
18
20
|
/**
|
|
19
21
|
* @public
|
package/lib/index.js
CHANGED
|
@@ -18,6 +18,8 @@ const commandLineListTokens = {
|
|
|
18
18
|
clear: dippy.createToken('child-app clear', multiOptions),
|
|
19
19
|
// section: spa transitions
|
|
20
20
|
spaTransition: dippy.createToken('child-app spa_transition', multiOptions),
|
|
21
|
+
// section: after spa transitions
|
|
22
|
+
afterSpaTransition: dippy.createToken('child-app after_spa_transition', multiOptions),
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* @public
|
package/lib/types.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export interface ChildAppPreloadManager {
|
|
|
48
48
|
runPreloaded(): Promise<void>;
|
|
49
49
|
pageRender(): void;
|
|
50
50
|
clearPreloaded(): Promise<void>;
|
|
51
|
-
getPreloadedList():
|
|
51
|
+
getPreloadedList(): ChildAppFinalConfig[];
|
|
52
52
|
}
|
|
53
53
|
export interface ChildAppRenderManager {
|
|
54
54
|
getChildDi(request: ChildAppRequestConfig): [Container | null, Promise<Container | null> | null];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/tokens-child-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.84.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@tinkoff/dippy": "0.7.39",
|
|
25
|
-
"@tramvai/core": "1.
|
|
26
|
-
"@tramvai/state": "1.
|
|
27
|
-
"@tramvai/tokens-common": "1.
|
|
25
|
+
"@tramvai/core": "1.84.0",
|
|
26
|
+
"@tramvai/state": "1.84.0",
|
|
27
|
+
"@tramvai/tokens-common": "1.84.0",
|
|
28
28
|
"react": ">=16.8.0"
|
|
29
29
|
},
|
|
30
30
|
"module": "lib/index.es.js"
|