@docusaurus/module-type-aliases 3.2.1 → 3.3.1

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.
Files changed (2) hide show
  1. package/package.json +4 -5
  2. package/src/index.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/module-type-aliases",
3
- "version": "3.2.1",
3
+ "version": "3.3.1",
4
4
  "description": "Docusaurus module type aliases.",
5
5
  "types": "./src/index.d.ts",
6
6
  "publishConfig": {
@@ -12,19 +12,18 @@
12
12
  "directory": "packages/docusaurus-module-type-aliases"
13
13
  },
14
14
  "dependencies": {
15
- "@docusaurus/react-loadable": "5.5.2",
16
- "@docusaurus/types": "3.2.1",
15
+ "@docusaurus/types": "3.3.0",
17
16
  "@types/history": "^4.7.11",
18
17
  "@types/react": "*",
19
18
  "@types/react-router-config": "*",
20
19
  "@types/react-router-dom": "*",
21
20
  "react-helmet-async": "*",
22
- "react-loadable": "npm:@docusaurus/react-loadable@5.5.2"
21
+ "react-loadable": "npm:@docusaurus/react-loadable@6.0.0"
23
22
  },
24
23
  "peerDependencies": {
25
24
  "react": "*",
26
25
  "react-dom": "*"
27
26
  },
28
27
  "license": "MIT",
29
- "gitHead": "f268e15264e208e6faf26117258162e988b53773"
28
+ "gitHead": "f3524cf332e803ff82783ee9c1c86c4342fc1f71"
30
29
  }
package/src/index.d.ts CHANGED
@@ -387,4 +387,5 @@ interface Window {
387
387
  prefetch: (url: string) => false | Promise<void[]>;
388
388
  preload: (url: string) => false | Promise<void[]>;
389
389
  };
390
+ docusaurusRoot?: import('react-dom/client').Root;
390
391
  }