gatsby-link 5.0.0-next.4 → 5.0.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/index.d.ts +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface GatsbyLinkProps<TState> extends LinkProps<TState> {
|
|
|
24
24
|
* This component is intended _only_ for links to pages handled by Gatsby. For links to pages on other
|
|
25
25
|
* domains or pages on the same domain not handled by the current Gatsby site, use the normal `<a>` element.
|
|
26
26
|
*/
|
|
27
|
-
export class
|
|
27
|
+
export class Link<TState> extends React.Component<
|
|
28
28
|
GatsbyLinkProps<TState>,
|
|
29
29
|
any
|
|
30
30
|
> {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-link",
|
|
3
3
|
"description": "An enhanced Link component for Gatsby sites with support for resource prefetching",
|
|
4
|
-
"version": "5.0.0
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@types/reach__router": "^1.3.10",
|
|
26
|
-
"gatsby-page-utils": "^3.0.0
|
|
26
|
+
"gatsby-page-utils": "^3.0.0",
|
|
27
27
|
"prop-types": "^15.8.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=18.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "0c6cd6126c9ccb7fbd62ad3aa3a75efaa7bc7427"
|
|
55
55
|
}
|