@koine/next 1.1.11 → 1.1.12
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/Link.d.ts +1 -1
- package/package.json +34 -30
package/Link.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ export type LinkProps = Omit<React.ComponentPropsWithRef<"a">, "href"> & Omit<Ne
|
|
|
6
6
|
/**
|
|
7
7
|
* @see https://next.js.org/docs/api-reference/next/link
|
|
8
8
|
*/
|
|
9
|
-
export declare const Link: React.ForwardRefExoticComponent<
|
|
9
|
+
export declare const Link: React.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
10
10
|
export default Link;
|
package/package.json
CHANGED
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
"name": "@koine/next",
|
|
3
3
|
"sideEffects": false,
|
|
4
4
|
"peerDependenciesMeta": {
|
|
5
|
-
"@
|
|
5
|
+
"@emotion/react": {
|
|
6
6
|
"optional": true
|
|
7
7
|
},
|
|
8
|
-
"@
|
|
8
|
+
"@emotion/server": {
|
|
9
9
|
"optional": true
|
|
10
10
|
},
|
|
11
|
-
"@
|
|
11
|
+
"@emotion/styled": {
|
|
12
12
|
"optional": true
|
|
13
13
|
},
|
|
14
|
-
"@
|
|
14
|
+
"@hookform/resolvers": {
|
|
15
15
|
"optional": true
|
|
16
16
|
},
|
|
17
|
-
"@
|
|
17
|
+
"@kuus/yup": {
|
|
18
18
|
"optional": true
|
|
19
19
|
},
|
|
20
|
-
"@
|
|
20
|
+
"@mui/base": {
|
|
21
21
|
"optional": true
|
|
22
22
|
},
|
|
23
|
-
"@
|
|
23
|
+
"@mui/material": {
|
|
24
24
|
"optional": true
|
|
25
25
|
},
|
|
26
26
|
"@tiptap/react": {
|
|
@@ -66,31 +66,35 @@
|
|
|
66
66
|
"optional": true
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
-
"
|
|
70
|
-
"types": "./index.d.ts",
|
|
71
|
-
"dependencies": {},
|
|
72
|
-
"peerDependencies": {
|
|
73
|
-
"react": "18.2.0",
|
|
74
|
-
"next": "13.1.6",
|
|
75
|
-
"framer-motion": "8.5.5",
|
|
76
|
-
"next-auth": "4.19.0",
|
|
77
|
-
"@mui/material": "5.11.6",
|
|
78
|
-
"@emotion/react": "11.10.5",
|
|
79
|
-
"styled-components": "5.3.6",
|
|
80
|
-
"@koine/utils": "1.1.11",
|
|
81
|
-
"react-hook-form": "7.42.1",
|
|
69
|
+
"dependencies": {
|
|
82
70
|
"@emotion/cache": "11.10.5",
|
|
83
|
-
"@emotion/
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"type-fest": "3.5.3",
|
|
88
|
-
"next-seo": "5.15.0",
|
|
89
|
-
"date-fns": "2.29.3",
|
|
71
|
+
"@emotion/react": "^11.10.6",
|
|
72
|
+
"@emotion/server": "^11.10.0",
|
|
73
|
+
"@emotion/styled": "^11.10.6",
|
|
74
|
+
"@hookform/resolvers": "^2.9.11",
|
|
90
75
|
"@kuus/yup": "1.0.0-beta.7",
|
|
91
|
-
"@
|
|
92
|
-
"
|
|
76
|
+
"@mui/material": "^5.11.9",
|
|
77
|
+
"clsx": "1.2.1",
|
|
78
|
+
"date-fns": "^2.29.3",
|
|
79
|
+
"framer-motion": "^9.0.4",
|
|
80
|
+
"next": "^13.1.6",
|
|
81
|
+
"next-auth": "^4.19.2",
|
|
82
|
+
"next-seo": "^5.15.0",
|
|
83
|
+
"next-translate": "^1.6.0",
|
|
84
|
+
"react": "^18.2.0",
|
|
85
|
+
"react-dom": "^18.2.0",
|
|
86
|
+
"react-hook-form": "^7.43.1",
|
|
87
|
+
"react-is": "^18.2.0",
|
|
88
|
+
"styled-components": "^5.3.6",
|
|
89
|
+
"ts-debounce": "^4.0.0",
|
|
90
|
+
"type-fest": "^3.5.7"
|
|
91
|
+
},
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"@koine/utils": "1.1.12",
|
|
94
|
+
"tslib": "^2.5.0"
|
|
93
95
|
},
|
|
94
|
-
"
|
|
96
|
+
"main": "./index.js",
|
|
97
|
+
"types": "./index.d.ts",
|
|
98
|
+
"version": "1.1.12",
|
|
95
99
|
"module": "./index.mjs"
|
|
96
100
|
}
|