@unhead/react 2.0.1 → 2.0.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/dist/client.d.mts CHANGED
@@ -2,6 +2,7 @@ import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
3
  import * as unhead_types from 'unhead/types';
4
4
  import { CreateClientHeadOptions, Unhead } from 'unhead/types';
5
+ export { CreateClientHeadOptions, Unhead } from 'unhead/types';
5
6
  export { renderDOMHead } from 'unhead/client';
6
7
 
7
8
  declare function createHead(options?: CreateClientHeadOptions): Unhead;
package/dist/client.d.ts CHANGED
@@ -2,6 +2,7 @@ import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
3
  import * as unhead_types from 'unhead/types';
4
4
  import { CreateClientHeadOptions, Unhead } from 'unhead/types';
5
+ export { CreateClientHeadOptions, Unhead } from 'unhead/types';
5
6
  export { renderDOMHead } from 'unhead/client';
6
7
 
7
8
  declare function createHead(options?: CreateClientHeadOptions): Unhead;
package/dist/server.d.mts CHANGED
@@ -2,7 +2,8 @@ import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
3
  import * as unhead_types from 'unhead/types';
4
4
  import { Unhead } from 'unhead/types';
5
- export { SSRHeadPayload, createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
5
+ export { CreateServerHeadOptions, SSRHeadPayload, Unhead } from 'unhead/types';
6
+ export { createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
6
7
 
7
8
  declare function UnheadProvider({ children, value }: {
8
9
  children: ReactNode;
package/dist/server.d.ts CHANGED
@@ -2,7 +2,8 @@ import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
3
  import * as unhead_types from 'unhead/types';
4
4
  import { Unhead } from 'unhead/types';
5
- export { SSRHeadPayload, createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
5
+ export { CreateServerHeadOptions, SSRHeadPayload, Unhead } from 'unhead/types';
6
+ export { createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
6
7
 
7
8
  declare function UnheadProvider({ children, value }: {
8
9
  children: ReactNode;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/react",
3
3
  "type": "module",
4
- "version": "2.0.1",
4
+ "version": "2.0.2",
5
5
  "author": "Harlan Wilton <harlan@harlanzw.com>",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/harlan-zw",
@@ -69,7 +69,7 @@
69
69
  ]
70
70
  },
71
71
  "dependencies": {
72
- "unhead": "2.0.1"
72
+ "unhead": "2.0.2"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@testing-library/react": "^16.2.0",