@superinterface/react 3.4.0 → 3.4.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.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +5 -7
package/dist/index.d.cts
CHANGED
|
@@ -573,7 +573,7 @@ declare const Suggestions: {
|
|
|
573
573
|
declare const MarkdownContext: react.Context<{
|
|
574
574
|
components: {
|
|
575
575
|
p: ({ children }: JSX.IntrinsicElements["p"]) => react_jsx_runtime.JSX.Element;
|
|
576
|
-
a: ({ children, href, download, target, }:
|
|
576
|
+
a: ({ children, href, download, target, }: react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>) => react_jsx_runtime.JSX.Element;
|
|
577
577
|
strong: ({ children }: JSX.IntrinsicElements["strong"]) => react_jsx_runtime.JSX.Element;
|
|
578
578
|
ul: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
579
579
|
ol: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
@@ -610,7 +610,7 @@ declare const MarkdownProvider: ({ children, ...rest }: {
|
|
|
610
610
|
declare const useMarkdownContext: () => {
|
|
611
611
|
components: {
|
|
612
612
|
p: ({ children }: JSX.IntrinsicElements["p"]) => react_jsx_runtime.JSX.Element;
|
|
613
|
-
a: ({ children, href, download, target, }:
|
|
613
|
+
a: ({ children, href, download, target, }: react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>) => react_jsx_runtime.JSX.Element;
|
|
614
614
|
strong: ({ children }: JSX.IntrinsicElements["strong"]) => react_jsx_runtime.JSX.Element;
|
|
615
615
|
ul: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
616
616
|
ol: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -573,7 +573,7 @@ declare const Suggestions: {
|
|
|
573
573
|
declare const MarkdownContext: react.Context<{
|
|
574
574
|
components: {
|
|
575
575
|
p: ({ children }: JSX.IntrinsicElements["p"]) => react_jsx_runtime.JSX.Element;
|
|
576
|
-
a: ({ children, href, download, target, }:
|
|
576
|
+
a: ({ children, href, download, target, }: react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>) => react_jsx_runtime.JSX.Element;
|
|
577
577
|
strong: ({ children }: JSX.IntrinsicElements["strong"]) => react_jsx_runtime.JSX.Element;
|
|
578
578
|
ul: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
579
579
|
ol: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
@@ -610,7 +610,7 @@ declare const MarkdownProvider: ({ children, ...rest }: {
|
|
|
610
610
|
declare const useMarkdownContext: () => {
|
|
611
611
|
components: {
|
|
612
612
|
p: ({ children }: JSX.IntrinsicElements["p"]) => react_jsx_runtime.JSX.Element;
|
|
613
|
-
a: ({ children, href, download, target, }:
|
|
613
|
+
a: ({ children, href, download, target, }: react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>) => react_jsx_runtime.JSX.Element;
|
|
614
614
|
strong: ({ children }: JSX.IntrinsicElements["strong"]) => react_jsx_runtime.JSX.Element;
|
|
615
615
|
ul: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
|
616
616
|
ol: ({ children }: JSX.IntrinsicElements["ul"]) => react_jsx_runtime.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superinterface/react",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@radix-ui/themes": ">=3.0.0",
|
|
52
52
|
"@tanstack/query-core": ">=5.0.0",
|
|
53
53
|
"@tanstack/react-query": ">=5.0.0",
|
|
54
|
-
"react": "*",
|
|
55
54
|
"@types/react": "*",
|
|
56
|
-
"@types/react-dom": "*"
|
|
55
|
+
"@types/react-dom": "*",
|
|
56
|
+
"react": "*"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@tanstack/react-query": ">=5.60.6",
|
|
@@ -62,11 +62,9 @@
|
|
|
62
62
|
"@types/lodash": "^4.17.13",
|
|
63
63
|
"@types/react": "npm:types-react@rc",
|
|
64
64
|
"@types/react-dom": "npm:types-react-dom@rc",
|
|
65
|
-
"react": "19.0.0-rc-66855b96-20241106",
|
|
66
65
|
"@types/unist": "^3.0.3",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"typedoc-plugin-markdown": "^4.2.10"
|
|
66
|
+
"react": "19.0.0-rc-7670501b-20241124",
|
|
67
|
+
"tsup": "^8.3.5"
|
|
70
68
|
},
|
|
71
69
|
"overrides": {
|
|
72
70
|
"react": "*",
|