@tramvai/tokens-child-app 1.82.2 → 1.84.2

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 CHANGED
@@ -13,6 +13,7 @@ export declare const commandLineListTokens: {
13
13
  resolvePageDeps: Command;
14
14
  clear: Command;
15
15
  spaTransition: Command;
16
+ afterSpaTransition: Command;
16
17
  };
17
18
  /**
18
19
  * @public
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(): ChildAppRequestConfig[];
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.82.2",
3
+ "version": "1.84.2",
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.82.2",
26
- "@tramvai/state": "1.82.2",
27
- "@tramvai/tokens-common": "1.82.2",
25
+ "@tramvai/core": "1.84.2",
26
+ "@tramvai/state": "1.84.2",
27
+ "@tramvai/tokens-common": "1.84.2",
28
28
  "react": ">=16.8.0"
29
29
  },
30
30
  "module": "lib/index.es.js"