fumadocs-ui 15.2.14 → 15.3.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/css/black.css +2 -2
- package/css/neutral.css +2 -2
- package/css/ocean.css +3 -3
- package/css/preset.css +194 -5
- package/css/purple.css +10 -10
- package/css/shiki.css +14 -23
- package/dist/components/accordion.js +1 -1
- package/dist/components/codeblock.d.ts.map +1 -1
- package/dist/components/codeblock.js +5 -5
- package/dist/components/layout/root-toggle.d.ts +3 -3
- package/dist/components/layout/root-toggle.d.ts.map +1 -1
- package/dist/components/layout/root-toggle.js +1 -1
- package/dist/components/layout/sidebar.d.ts +14 -11
- package/dist/components/layout/sidebar.d.ts.map +1 -1
- package/dist/components/layout/sidebar.js +42 -33
- package/dist/components/tabs.d.ts +3 -1
- package/dist/components/tabs.d.ts.map +1 -1
- package/dist/components/tabs.js +25 -36
- package/dist/components/ui/tabs.d.ts.map +1 -1
- package/dist/components/ui/tabs.js +4 -4
- package/dist/contexts/sidebar.d.ts.map +1 -1
- package/dist/contexts/sidebar.js +2 -3
- package/dist/layouts/docs/shared.d.ts +0 -1
- package/dist/layouts/docs/shared.d.ts.map +1 -1
- package/dist/layouts/docs-client.d.ts.map +1 -1
- package/dist/layouts/docs-client.js +8 -8
- package/dist/layouts/docs.d.ts.map +1 -1
- package/dist/layouts/docs.js +2 -3
- package/dist/layouts/home/navbar.d.ts +2 -2
- package/dist/layouts/home/navbar.d.ts.map +1 -1
- package/dist/layouts/home/navbar.js +6 -3
- package/dist/layouts/notebook-client.d.ts.map +1 -1
- package/dist/layouts/notebook-client.js +4 -5
- package/dist/layouts/notebook.d.ts.map +1 -1
- package/dist/layouts/notebook.js +8 -8
- package/dist/page-client.d.ts.map +1 -1
- package/dist/page-client.js +3 -5
- package/dist/page.d.ts +2 -2
- package/dist/page.d.ts.map +1 -1
- package/dist/style.css +133 -131
- package/package.json +15 -13
- package/css/animations.css +0 -199
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-ui",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.0",
|
|
4
4
|
"description": "The framework for building a documentation website in Next.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -72,35 +72,37 @@
|
|
|
72
72
|
"css/*"
|
|
73
73
|
],
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@radix-ui/react-accordion": "^1.2.
|
|
76
|
-
"@radix-ui/react-collapsible": "^1.1.
|
|
77
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
75
|
+
"@radix-ui/react-accordion": "^1.2.10",
|
|
76
|
+
"@radix-ui/react-collapsible": "^1.1.10",
|
|
77
|
+
"@radix-ui/react-dialog": "^1.1.13",
|
|
78
78
|
"@radix-ui/react-direction": "^1.1.1",
|
|
79
|
-
"@radix-ui/react-navigation-menu": "^1.2.
|
|
80
|
-
"@radix-ui/react-popover": "^1.1.
|
|
81
|
-
"@radix-ui/react-
|
|
82
|
-
"@radix-ui/react-
|
|
83
|
-
"@radix-ui/react-
|
|
79
|
+
"@radix-ui/react-navigation-menu": "^1.2.12",
|
|
80
|
+
"@radix-ui/react-popover": "^1.1.13",
|
|
81
|
+
"@radix-ui/react-presence": "^1.1.4",
|
|
82
|
+
"@radix-ui/react-scroll-area": "^1.2.8",
|
|
83
|
+
"@radix-ui/react-slot": "^1.2.2",
|
|
84
|
+
"@radix-ui/react-tabs": "^1.1.11",
|
|
84
85
|
"class-variance-authority": "^0.7.1",
|
|
85
86
|
"lodash.merge": "^4.6.2",
|
|
86
87
|
"next-themes": "^0.4.6",
|
|
87
88
|
"postcss-selector-parser": "^7.1.0",
|
|
88
89
|
"react-medium-image-zoom": "^5.2.14",
|
|
90
|
+
"react-remove-scroll": "^2.6.3",
|
|
89
91
|
"tailwind-merge": "^3.2.0",
|
|
90
|
-
"fumadocs-core": "15.
|
|
92
|
+
"fumadocs-core": "15.3.0"
|
|
91
93
|
},
|
|
92
94
|
"devDependencies": {
|
|
93
95
|
"@next/eslint-plugin-next": "^15.3.1",
|
|
94
96
|
"@tailwindcss/cli": "^4.1.5",
|
|
95
97
|
"@types/lodash.merge": "^4.6.9",
|
|
96
|
-
"@types/react": "^19.1.
|
|
98
|
+
"@types/react": "^19.1.3",
|
|
97
99
|
"@types/react-dom": "^19.1.3",
|
|
98
100
|
"next": "15.3.1",
|
|
99
101
|
"tailwindcss": "^4.1.5",
|
|
100
|
-
"tsc-alias": "^1.8.
|
|
102
|
+
"tsc-alias": "^1.8.16",
|
|
101
103
|
"@fumadocs/cli": "0.1.1",
|
|
102
104
|
"eslint-config-custom": "0.0.0",
|
|
103
|
-
"fumadocs-core": "15.
|
|
105
|
+
"fumadocs-core": "15.3.0",
|
|
104
106
|
"tsconfig": "0.0.0"
|
|
105
107
|
},
|
|
106
108
|
"peerDependencies": {
|
package/css/animations.css
DELETED
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
@theme {
|
|
2
|
-
--animate-fd-fade-in: fd-fade-in 300ms ease;
|
|
3
|
-
|
|
4
|
-
--animate-fd-fade-out: fd-fade-out 300ms ease;
|
|
5
|
-
|
|
6
|
-
--animate-fd-dialog-in: fd-dialog-in 200ms cubic-bezier(0.32, 0.72, 0, 1);
|
|
7
|
-
|
|
8
|
-
--animate-fd-dialog-out: fd-dialog-out 300ms cubic-bezier(0.32, 0.72, 0, 1);
|
|
9
|
-
|
|
10
|
-
--animate-fd-popover-in: fd-popover-in 150ms ease;
|
|
11
|
-
|
|
12
|
-
--animate-fd-popover-out: fd-popover-out 150ms ease;
|
|
13
|
-
|
|
14
|
-
--animate-fd-collapsible-down: fd-collapsible-down 150ms ease-out;
|
|
15
|
-
|
|
16
|
-
--animate-fd-collapsible-up: fd-collapsible-up 150ms ease-out;
|
|
17
|
-
|
|
18
|
-
--animate-fd-accordion-down: fd-accordion-down 200ms ease-out;
|
|
19
|
-
|
|
20
|
-
--animate-fd-accordion-up: fd-accordion-up 200ms ease-out;
|
|
21
|
-
|
|
22
|
-
--animate-fd-nav-menu-in: fd-nav-menu-in 200ms ease;
|
|
23
|
-
|
|
24
|
-
--animate-fd-nav-menu-out: fd-nav-menu-out 200ms ease;
|
|
25
|
-
|
|
26
|
-
--animate-fd-enterFromLeft: fd-enterFromLeft 250ms ease;
|
|
27
|
-
|
|
28
|
-
--animate-fd-enterFromRight: fd-enterFromRight 250ms ease;
|
|
29
|
-
|
|
30
|
-
--animate-fd-exitToLeft: fd-exitToLeft 250ms ease;
|
|
31
|
-
|
|
32
|
-
--animate-fd-exitToRight: fd-exitToRight 250ms ease;
|
|
33
|
-
|
|
34
|
-
@keyframes fd-collapsible-down {
|
|
35
|
-
from {
|
|
36
|
-
height: 0;
|
|
37
|
-
opacity: 0;
|
|
38
|
-
}
|
|
39
|
-
to {
|
|
40
|
-
height: var(--radix-collapsible-content-height);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@keyframes fd-collapsible-up {
|
|
45
|
-
from {
|
|
46
|
-
height: var(--radix-collapsible-content-height);
|
|
47
|
-
}
|
|
48
|
-
to {
|
|
49
|
-
height: 0;
|
|
50
|
-
opacity: 0;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
@keyframes fd-accordion-down {
|
|
55
|
-
from {
|
|
56
|
-
height: 0;
|
|
57
|
-
opacity: 0.5;
|
|
58
|
-
}
|
|
59
|
-
to {
|
|
60
|
-
height: var(--radix-accordion-content-height);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@keyframes fd-accordion-up {
|
|
65
|
-
from {
|
|
66
|
-
height: var(--radix-accordion-content-height);
|
|
67
|
-
}
|
|
68
|
-
to {
|
|
69
|
-
height: 0;
|
|
70
|
-
opacity: 0.5;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
@keyframes fd-dialog-in {
|
|
75
|
-
from {
|
|
76
|
-
transform: scale(0.95);
|
|
77
|
-
opacity: 0;
|
|
78
|
-
}
|
|
79
|
-
to {
|
|
80
|
-
transform: scale(1);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
@keyframes fd-dialog-out {
|
|
85
|
-
from {
|
|
86
|
-
transform: scale(1);
|
|
87
|
-
}
|
|
88
|
-
to {
|
|
89
|
-
transform: scale(0.95);
|
|
90
|
-
opacity: 0;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
@keyframes fd-popover-in {
|
|
95
|
-
from {
|
|
96
|
-
opacity: 0;
|
|
97
|
-
transform: scale(0.98) translateY(-4px);
|
|
98
|
-
}
|
|
99
|
-
to {
|
|
100
|
-
opacity: 1;
|
|
101
|
-
transform: scale(1) translateY(0);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@keyframes fd-popover-out {
|
|
106
|
-
from {
|
|
107
|
-
opacity: 1;
|
|
108
|
-
transform: translateY(0);
|
|
109
|
-
}
|
|
110
|
-
to {
|
|
111
|
-
opacity: 0;
|
|
112
|
-
transform: translateY(-4px);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
@keyframes fd-fade-in {
|
|
117
|
-
from {
|
|
118
|
-
opacity: 0;
|
|
119
|
-
}
|
|
120
|
-
to {
|
|
121
|
-
opacity: 1;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
@keyframes fd-fade-out {
|
|
126
|
-
from {
|
|
127
|
-
opacity: 1;
|
|
128
|
-
}
|
|
129
|
-
to {
|
|
130
|
-
opacity: 0;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
@keyframes fd-enterFromRight {
|
|
135
|
-
from {
|
|
136
|
-
opacity: 0;
|
|
137
|
-
transform: translateX(200px);
|
|
138
|
-
}
|
|
139
|
-
to {
|
|
140
|
-
opacity: 1;
|
|
141
|
-
transform: translateX(0);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
@keyframes fd-enterFromLeft {
|
|
146
|
-
from {
|
|
147
|
-
opacity: 0;
|
|
148
|
-
transform: translateX(-200px);
|
|
149
|
-
}
|
|
150
|
-
to {
|
|
151
|
-
opacity: 1;
|
|
152
|
-
transform: translateX(0);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
@keyframes fd-exitToRight {
|
|
157
|
-
from {
|
|
158
|
-
opacity: 1;
|
|
159
|
-
transform: translateX(0);
|
|
160
|
-
}
|
|
161
|
-
to {
|
|
162
|
-
opacity: 0;
|
|
163
|
-
transform: translateX(200px);
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
@keyframes fd-exitToLeft {
|
|
168
|
-
from {
|
|
169
|
-
opacity: 1;
|
|
170
|
-
transform: translateX(0);
|
|
171
|
-
}
|
|
172
|
-
to {
|
|
173
|
-
opacity: 0;
|
|
174
|
-
transform: translateX(-200px);
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
@keyframes fd-nav-menu-in {
|
|
179
|
-
from {
|
|
180
|
-
opacity: 0;
|
|
181
|
-
height: 0px;
|
|
182
|
-
}
|
|
183
|
-
to {
|
|
184
|
-
opacity: 1;
|
|
185
|
-
height: var(--radix-navigation-menu-viewport-height);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
@keyframes fd-nav-menu-out {
|
|
190
|
-
from {
|
|
191
|
-
opacity: 1;
|
|
192
|
-
height: var(--radix-navigation-menu-viewport-height);
|
|
193
|
-
}
|
|
194
|
-
to {
|
|
195
|
-
opacity: 0;
|
|
196
|
-
height: 0px;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
}
|