@sitecore-jss/sitecore-jss-nextjs 21.6.0-canary.4 → 21.6.0-canary.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitecore-jss/sitecore-jss-nextjs",
3
- "version": "21.6.0-canary.4",
3
+ "version": "21.6.0-canary.6",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "sideEffects": false,
@@ -72,9 +72,9 @@
72
72
  "react-dom": "^18.2.0"
73
73
  },
74
74
  "dependencies": {
75
- "@sitecore-jss/sitecore-jss": "^21.6.0-canary.4",
76
- "@sitecore-jss/sitecore-jss-dev-tools": "^21.6.0-canary.4",
77
- "@sitecore-jss/sitecore-jss-react": "^21.6.0-canary.4",
75
+ "@sitecore-jss/sitecore-jss": "^21.6.0-canary.6",
76
+ "@sitecore-jss/sitecore-jss-dev-tools": "^21.6.0-canary.6",
77
+ "@sitecore-jss/sitecore-jss-react": "^21.6.0-canary.6",
78
78
  "@vercel/kv": "^0.2.1",
79
79
  "node-html-parser": "^6.1.4",
80
80
  "prop-types": "^15.8.1",
@@ -83,7 +83,7 @@
83
83
  },
84
84
  "description": "",
85
85
  "types": "types/index.d.ts",
86
- "gitHead": "8c8d6e4b2399bbf959fe452692b88f07c85bccf1",
86
+ "gitHead": "6540faee4154fa2fa6bcb89f0861f0406c00212e",
87
87
  "files": [
88
88
  "dist",
89
89
  "types",
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import { ComponentFactory } from '@sitecore-jss/sitecore-jss-react';
2
3
  import { Module, ModuleFactory } from './sharedTypes/module-factory';
3
4
  import { ComponentType } from 'react';
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React, { ReactNode } from 'react';
2
3
  import { ComponentPropsCollection } from '../sharedTypes/component-props';
3
4
  /**
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import { LinkProps as ReactLinkProps } from '@sitecore-jss/sitecore-jss-react';
3
4
  export type LinkProps = ReactLinkProps & {
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import { ImageProps } from '@sitecore-jss/sitecore-jss-react';
3
4
  import { ImageLoader, ImageProps as NextImageProperties } from 'next/image';
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import React from 'react';
2
3
  import { PlaceholderComponentProps } from '@sitecore-jss/sitecore-jss-react';
3
4
  export declare const Placeholder: (props: PlaceholderComponentProps) => React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="@types/react" />
1
2
  import { ComponentType } from 'react';
2
3
  import { GetServerSideComponentProps, GetStaticComponentProps } from './component-props';
3
4
  /**