fumadocs-ui 12.3.1 → 12.3.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.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const Callout: React.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "
|
|
4
|
+
declare const Callout: React.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "icon" | "type"> & {
|
|
5
5
|
title?: ReactNode;
|
|
6
6
|
/**
|
|
7
7
|
* @defaultValue info
|
|
8
8
|
*/
|
|
9
|
-
type?: "info" | "warn" | "error"
|
|
9
|
+
type?: "info" | "warn" | "error";
|
|
10
10
|
icon?: ReactNode;
|
|
11
11
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ declare const CodeBlock: React.ForwardRefExoticComponent<HTMLAttributes<HTMLElem
|
|
|
18
18
|
* When passed as a string, it assumes the value is the HTML of icon
|
|
19
19
|
*/
|
|
20
20
|
icon?: ReactNode;
|
|
21
|
-
allowCopy?: boolean
|
|
21
|
+
allowCopy?: boolean;
|
|
22
22
|
} & React.RefAttributes<HTMLElement>>;
|
|
23
23
|
|
|
24
24
|
export { CodeBlock, type CodeBlockProps, Pre };
|
|
@@ -33,7 +33,7 @@ interface Preset {
|
|
|
33
33
|
declare const docsUi: {
|
|
34
34
|
(options: DocsUIOptions): {
|
|
35
35
|
handler: tailwindcss_types_config.PluginCreator;
|
|
36
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
36
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
37
37
|
};
|
|
38
38
|
__isOptionsFunction: true;
|
|
39
39
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-ui",
|
|
3
|
-
"version": "12.3.
|
|
3
|
+
"version": "12.3.2",
|
|
4
4
|
"description": "The framework for building a documentation website in Next.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -81,28 +81,28 @@
|
|
|
81
81
|
"dist/*"
|
|
82
82
|
],
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@radix-ui/react-accordion": "^1.
|
|
85
|
-
"@radix-ui/react-collapsible": "^1.0
|
|
86
|
-
"@radix-ui/react-dialog": "^1.
|
|
87
|
-
"@radix-ui/react-direction": "^1.0
|
|
88
|
-
"@radix-ui/react-popover": "^1.
|
|
89
|
-
"@radix-ui/react-scroll-area": "^1.0
|
|
90
|
-
"@radix-ui/react-tabs": "^1.0
|
|
84
|
+
"@radix-ui/react-accordion": "^1.2.0",
|
|
85
|
+
"@radix-ui/react-collapsible": "^1.1.0",
|
|
86
|
+
"@radix-ui/react-dialog": "^1.1.1",
|
|
87
|
+
"@radix-ui/react-direction": "^1.1.0",
|
|
88
|
+
"@radix-ui/react-popover": "^1.1.1",
|
|
89
|
+
"@radix-ui/react-scroll-area": "^1.1.0",
|
|
90
|
+
"@radix-ui/react-tabs": "^1.1.0",
|
|
91
91
|
"@tailwindcss/typography": "^0.5.13",
|
|
92
92
|
"class-variance-authority": "^0.7.0",
|
|
93
93
|
"cmdk": "^1.0.0",
|
|
94
|
-
"lucide-react": "^0.
|
|
94
|
+
"lucide-react": "^0.399.0",
|
|
95
95
|
"next-themes": "^0.3.0",
|
|
96
|
-
"react-medium-image-zoom": "^5.2.
|
|
96
|
+
"react-medium-image-zoom": "^5.2.5",
|
|
97
97
|
"tailwind-merge": "^2.3.0",
|
|
98
|
-
"fumadocs-core": "12.3.
|
|
98
|
+
"fumadocs-core": "12.3.2"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
|
-
"@algolia/client-search": "^4.
|
|
101
|
+
"@algolia/client-search": "^4.24.0",
|
|
102
102
|
"@next/eslint-plugin-next": "^14.2.4",
|
|
103
103
|
"@types/react": "^18.3.3",
|
|
104
104
|
"@types/react-dom": "^18.3.0",
|
|
105
|
-
"algoliasearch": "^4.
|
|
105
|
+
"algoliasearch": "^4.24.0",
|
|
106
106
|
"next": "^14.2.4",
|
|
107
107
|
"postcss": "^8.4.38",
|
|
108
108
|
"postcss-cli": "^11.0.0",
|