fumadocs-ui 16.4.0 → 16.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/components/callout.d.ts.map +1 -1
- package/dist/components/callout.js +2 -2
- package/dist/components/codeblock.js +1 -1
- package/dist/layouts/docs/sidebar.d.ts +1 -1
- package/dist/layouts/docs/sidebar.d.ts.map +1 -1
- package/dist/layouts/docs/sidebar.js +4 -4
- package/dist/layouts/notebook/sidebar.d.ts +5 -1
- package/dist/layouts/notebook/sidebar.d.ts.map +1 -1
- package/dist/layouts/notebook/sidebar.js +15 -1
- package/dist/style.css +22 -2
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callout.d.ts","sourceRoot":"","sources":["../../src/components/callout.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvD,MAAM,MAAM,WAAW,GACnB,MAAM,GACN,MAAM,GACN,OAAO,GACP,SAAS,GACT,SAAS,GACT,MAAM,CAAC;AAIX,wBAAgB,OAAO,CAAC,EACtB,QAAQ,EACR,KAAK,EACL,GAAG,KAAK,EACT,EAAE;IAAE,KAAK,CAAC,EAAE,SAAS,CAAA;CAAE,GAAG,IAAI,CAAC,qBAAqB,EAAE,OAAO,CAAC,2CAO9D;AAED,MAAM,WAAW,qBAAsB,SAAQ,cAAc,CAAC,KAAK,CAAC;IAClE;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AAQD,wBAAgB,gBAAgB,CAAC,EAC/B,IAAI,EAAE,SAAkB,EACxB,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,qBAAqB,
|
|
1
|
+
{"version":3,"file":"callout.d.ts","sourceRoot":"","sources":["../../src/components/callout.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvD,MAAM,MAAM,WAAW,GACnB,MAAM,GACN,MAAM,GACN,OAAO,GACP,SAAS,GACT,SAAS,GACT,MAAM,CAAC;AAIX,wBAAgB,OAAO,CAAC,EACtB,QAAQ,EACR,KAAK,EACL,GAAG,KAAK,EACT,EAAE;IAAE,KAAK,CAAC,EAAE,SAAS,CAAA;CAAE,GAAG,IAAI,CAAC,qBAAqB,EAAE,OAAO,CAAC,2CAO9D;AAED,MAAM,WAAW,qBAAsB,SAAQ,cAAc,CAAC,KAAK,CAAC;IAClE;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AAQD,wBAAgB,gBAAgB,CAAC,EAC/B,IAAI,EAAE,SAAkB,EACxB,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,qBAAqB,2CA+BvB;AAED,wBAAgB,YAAY,CAAC,EAC3B,QAAQ,EACR,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,GAAG,CAAC,2CAMrB;AAED,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,GAAG,CAAC,2CAYrB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { CircleCheck, CircleX, Info,
|
|
2
|
+
import { CircleCheck, CircleX, Info, LightBulb, TriangleAlert, } from '@fumadocs/ui/icons';
|
|
3
3
|
import { cn } from '@fumadocs/ui/cn';
|
|
4
4
|
const iconClass = 'size-5 -me-0.5 fill-(--callout-color) text-fd-card';
|
|
5
5
|
export function Callout({ children, title, ...props }) {
|
|
@@ -23,7 +23,7 @@ export function CalloutContainer({ type: inputType = 'info', icon, children, cla
|
|
|
23
23
|
warning: _jsx(TriangleAlert, { className: iconClass }),
|
|
24
24
|
error: _jsx(CircleX, { className: iconClass }),
|
|
25
25
|
success: _jsx(CircleCheck, { className: iconClass }),
|
|
26
|
-
idea: _jsx(
|
|
26
|
+
idea: (_jsx(LightBulb, { className: "size-5 -me-0.5 fill-(--callout-color) text-(--callout-color)" })),
|
|
27
27
|
}[type], _jsx("div", { className: "flex flex-col gap-2 min-w-0 flex-1", children: children })] }));
|
|
28
28
|
}
|
|
29
29
|
export function CalloutTitle({ children, className, ...props }) {
|
|
@@ -22,7 +22,7 @@ export function CodeBlock({ ref, title, allowCopy = true, keepBackground = false
|
|
|
22
22
|
className: '-me-2',
|
|
23
23
|
children: allowCopy && _jsx(CopyButton, { containerRef: areaRef }),
|
|
24
24
|
})] })) : (Actions({
|
|
25
|
-
className: 'absolute top-
|
|
25
|
+
className: 'absolute top-3 right-2 z-2 backdrop-blur-lg rounded-lg text-fd-muted-foreground',
|
|
26
26
|
children: allowCopy && _jsx(CopyButton, { containerRef: areaRef }),
|
|
27
27
|
})), _jsx("div", { ref: areaRef, ...viewportProps, role: "region", tabIndex: 0, className: cn('text-[0.8125rem] py-3.5 overflow-auto max-h-[600px] fd-scroll-container focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-fd-ring', viewportProps.className), style: {
|
|
28
28
|
// space for toolbar
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Base from '../../components/sidebar/base.js';
|
|
2
2
|
import { type ComponentProps } from 'react';
|
|
3
|
-
export
|
|
3
|
+
export { SidebarProvider as Sidebar, SidebarFolder, SidebarCollapseTrigger, SidebarViewport, SidebarTrigger, } from '../../components/sidebar/base.js';
|
|
4
4
|
export declare function SidebarContent({ ref: refProp, className, children, ...props }: ComponentProps<'aside'>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare function SidebarDrawer({ children, className, ...props }: ComponentProps<typeof Base.SidebarDrawerContent>): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare function SidebarSeparator({ className, style, children, ...props }: ComponentProps<'p'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/layouts/docs/sidebar.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAE,KAAK,cAAc,EAAU,MAAM,OAAO,CAAC;AA6BpD,
|
|
1
|
+
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/layouts/docs/sidebar.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAE,KAAK,cAAc,EAAU,MAAM,OAAO,CAAC;AA6BpD,OAAO,EACL,eAAe,IAAI,OAAO,EAC1B,aAAa,EACb,sBAAsB,EACtB,eAAe,EACf,cAAc,GACf,MAAM,2BAA2B,CAAC;AAEnC,wBAAgB,cAAc,CAAC,EAC7B,GAAG,EAAE,OAAO,EACZ,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,CAAC,2CA+DzB;AAED,wBAAgB,aAAa,CAAC,EAC5B,QAAQ,EACR,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAelD;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,GAAG,CAAC,2CAerB;AAED,wBAAgB,WAAW,CAAC,EAC1B,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,WAAW,CAAC,2CAkBzC;AAED,wBAAgB,oBAAoB,CAAC,EACnC,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAmBlD;AAED,wBAAgB,iBAAiB,CAAC,EAChC,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,iBAAiB,CAAC,2CAmB/C;AAED,wBAAgB,oBAAoB,CAAC,EACnC,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAgBlD;AAED,eAAO,MAAM,eAAe,sIAO1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;6CAM1B,CAAC"}
|
|
@@ -24,7 +24,7 @@ const itemVariants = cva('relative flex flex-row items-center gap-2 rounded-lg p
|
|
|
24
24
|
function getItemOffset(depth) {
|
|
25
25
|
return `calc(${2 + 3 * depth} * var(--spacing))`;
|
|
26
26
|
}
|
|
27
|
-
export
|
|
27
|
+
export { SidebarProvider as Sidebar, SidebarFolder, SidebarCollapseTrigger, SidebarViewport, SidebarTrigger, } from '../../components/sidebar/base.js';
|
|
28
28
|
export function SidebarContent({ ref: refProp, className, children, ...props }) {
|
|
29
29
|
const ref = useRef(null);
|
|
30
30
|
return (_jsx(Base.SidebarContent, { children: ({ collapsed, hovered, ref: asideRef, ...rest }) => (_jsxs(_Fragment, { children: [_jsxs("div", { "data-sidebar-placeholder": "", className: "sticky top-(--fd-docs-row-1) z-20 [grid-area:sidebar] pointer-events-none *:pointer-events-auto h-[calc(var(--fd-docs-height)-var(--fd-docs-row-1))] md:layout:[--fd-sidebar-width:268px] max-md:hidden", children: [collapsed && (_jsx("div", { className: "absolute start-0 inset-y-0 w-4", ...rest })), _jsx("aside", { id: "nd-sidebar", ref: mergeRefs(ref, refProp, asideRef), "data-collapsed": collapsed, "data-hovered": collapsed && hovered, className: cn('absolute flex flex-col w-full start-0 inset-y-0 items-end bg-fd-card text-sm border-e duration-250 *:w-(--fd-sidebar-width)', collapsed && [
|
|
@@ -35,7 +35,7 @@ export function SidebarContent({ ref: refProp, className, children, ...props })
|
|
|
35
35
|
], ref.current &&
|
|
36
36
|
(ref.current.getAttribute('data-collapsed') === 'true') !==
|
|
37
37
|
collapsed &&
|
|
38
|
-
'transition-[width,inset-block,translate,background-color]', className), ...props, ...rest, children: children })] }), _jsxs("div", { "data-sidebar-panel": "", className: cn('fixed flex top-[calc(--spacing(4)+var(--fd-docs-row-3))] start-4 shadow-lg transition-opacity rounded-xl p-0.5 border bg-fd-muted text-fd-muted-foreground z-10', (!collapsed || hovered) && 'pointer-events-none opacity-0'), children: [_jsx(SidebarCollapseTrigger, { className: cn(buttonVariants({
|
|
38
|
+
'transition-[width,inset-block,translate,background-color]', className), ...props, ...rest, children: children })] }), _jsxs("div", { "data-sidebar-panel": "", className: cn('fixed flex top-[calc(--spacing(4)+var(--fd-docs-row-3))] start-4 shadow-lg transition-opacity rounded-xl p-0.5 border bg-fd-muted text-fd-muted-foreground z-10', (!collapsed || hovered) && 'pointer-events-none opacity-0'), children: [_jsx(Base.SidebarCollapseTrigger, { className: cn(buttonVariants({
|
|
39
39
|
color: 'ghost',
|
|
40
40
|
size: 'icon-sm',
|
|
41
41
|
className: 'rounded-lg',
|
|
@@ -78,7 +78,7 @@ export function SidebarFolderContent({ className, children, ...props }) {
|
|
|
78
78
|
"before:content-[''] before:absolute before:w-px before:inset-y-1 before:bg-fd-border before:start-2.5", className), ...props, children: children }));
|
|
79
79
|
}
|
|
80
80
|
export const SidebarPageTree = createPageTreeRenderer({
|
|
81
|
-
SidebarFolder,
|
|
81
|
+
SidebarFolder: Base.SidebarFolder,
|
|
82
82
|
SidebarFolderContent,
|
|
83
83
|
SidebarFolderLink,
|
|
84
84
|
SidebarFolderTrigger,
|
|
@@ -86,7 +86,7 @@ export const SidebarPageTree = createPageTreeRenderer({
|
|
|
86
86
|
SidebarSeparator,
|
|
87
87
|
});
|
|
88
88
|
export const SidebarLinkItem = createLinkItemRenderer({
|
|
89
|
-
SidebarFolder,
|
|
89
|
+
SidebarFolder: Base.SidebarFolder,
|
|
90
90
|
SidebarFolderContent,
|
|
91
91
|
SidebarFolderLink,
|
|
92
92
|
SidebarFolderTrigger,
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as Base from '../../components/sidebar/base.js';
|
|
2
2
|
import { type ComponentProps } from 'react';
|
|
3
|
-
export declare
|
|
3
|
+
export declare function Sidebar(props: ComponentProps<typeof Base.SidebarProvider>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare function SidebarFolder(props: ComponentProps<typeof Base.SidebarFolder>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function SidebarCollapseTrigger(props: ComponentProps<typeof Base.SidebarCollapseTrigger>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function SidebarViewport(props: ComponentProps<typeof Base.SidebarViewport>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare function SidebarTrigger(props: ComponentProps<typeof Base.SidebarTrigger>): import("react/jsx-runtime").JSX.Element;
|
|
4
8
|
export declare function SidebarContent({ ref: refProp, className, children, ...props }: ComponentProps<'aside'>): import("react/jsx-runtime").JSX.Element;
|
|
5
9
|
export declare function SidebarDrawer({ children, className, ...props }: ComponentProps<typeof Base.SidebarDrawerContent>): import("react/jsx-runtime").JSX.Element;
|
|
6
10
|
export declare function SidebarSeparator({ className, style, children, ...props }: ComponentProps<'p'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/layouts/notebook/sidebar.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAE,KAAK,cAAc,EAAe,MAAM,OAAO,CAAC;AA2BzD,
|
|
1
|
+
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/layouts/notebook/sidebar.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAE,KAAK,cAAc,EAAe,MAAM,OAAO,CAAC;AA2BzD,wBAAgB,OAAO,CAAC,KAAK,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,eAAe,CAAC,2CAEzE;AAED,wBAAgB,aAAa,CAC3B,KAAK,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,aAAa,CAAC,2CAGjD;AAED,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,sBAAsB,CAAC,2CAG1D;AAED,wBAAgB,eAAe,CAC7B,KAAK,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,eAAe,CAAC,2CAGnD;AAED,wBAAgB,cAAc,CAC5B,KAAK,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,2CAGlD;AAED,wBAAgB,cAAc,CAAC,EAC7B,GAAG,EAAE,OAAO,EACZ,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,CAAC,2CAgDzB;AAED,wBAAgB,aAAa,CAAC,EAC5B,QAAQ,EACR,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAelD;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,GAAG,CAAC,2CAerB;AAED,wBAAgB,WAAW,CAAC,EAC1B,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,WAAW,CAAC,2CAkBzC;AAED,wBAAgB,oBAAoB,CAAC,EACnC,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAmBlD;AAED,wBAAgB,iBAAiB,CAAC,EAChC,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,iBAAiB,CAAC,2CAmB/C;AAED,wBAAgB,oBAAoB,CAAC,EACnC,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,IAAI,CAAC,oBAAoB,CAAC,2CAgBlD;AACD,eAAO,MAAM,eAAe,sIAO1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;6CAM1B,CAAC"}
|
|
@@ -22,7 +22,21 @@ const itemVariants = cva('relative flex flex-row items-center gap-2 rounded-lg p
|
|
|
22
22
|
function getItemOffset(depth) {
|
|
23
23
|
return `calc(${2 + 3 * depth} * var(--spacing))`;
|
|
24
24
|
}
|
|
25
|
-
export
|
|
25
|
+
export function Sidebar(props) {
|
|
26
|
+
return _jsx(Base.SidebarProvider, { ...props });
|
|
27
|
+
}
|
|
28
|
+
export function SidebarFolder(props) {
|
|
29
|
+
return _jsx(Base.SidebarFolder, { ...props });
|
|
30
|
+
}
|
|
31
|
+
export function SidebarCollapseTrigger(props) {
|
|
32
|
+
return _jsx(Base.SidebarCollapseTrigger, { ...props });
|
|
33
|
+
}
|
|
34
|
+
export function SidebarViewport(props) {
|
|
35
|
+
return _jsx(Base.SidebarViewport, { ...props });
|
|
36
|
+
}
|
|
37
|
+
export function SidebarTrigger(props) {
|
|
38
|
+
return _jsx(Base.SidebarTrigger, { ...props });
|
|
39
|
+
}
|
|
26
40
|
export function SidebarContent({ ref: refProp, className, children, ...props }) {
|
|
27
41
|
const { navMode } = use(LayoutContext);
|
|
28
42
|
const ref = useRef(null);
|
package/dist/style.css
CHANGED
|
@@ -337,6 +337,9 @@
|
|
|
337
337
|
.top-\(--fd-docs-row-3\) {
|
|
338
338
|
top: var(--fd-docs-row-3);
|
|
339
339
|
}
|
|
340
|
+
.top-\(--fd-top\) {
|
|
341
|
+
top: var(--fd-top);
|
|
342
|
+
}
|
|
340
343
|
.top-0 {
|
|
341
344
|
top: calc(var(--spacing) * 0);
|
|
342
345
|
}
|
|
@@ -346,8 +349,8 @@
|
|
|
346
349
|
.top-1\/2 {
|
|
347
350
|
top: calc(1/2 * 100%);
|
|
348
351
|
}
|
|
349
|
-
.top-
|
|
350
|
-
top: calc(var(--spacing) *
|
|
352
|
+
.top-3 {
|
|
353
|
+
top: calc(var(--spacing) * 3);
|
|
351
354
|
}
|
|
352
355
|
.top-4 {
|
|
353
356
|
top: calc(var(--spacing) * 4);
|
|
@@ -1580,6 +1583,9 @@
|
|
|
1580
1583
|
.whitespace-nowrap {
|
|
1581
1584
|
white-space: nowrap;
|
|
1582
1585
|
}
|
|
1586
|
+
.text-\(--callout-color\) {
|
|
1587
|
+
color: var(--callout-color);
|
|
1588
|
+
}
|
|
1583
1589
|
.text-fd-accent-foreground {
|
|
1584
1590
|
color: var(--color-fd-accent-foreground);
|
|
1585
1591
|
}
|
|
@@ -1704,6 +1710,11 @@
|
|
|
1704
1710
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1705
1711
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1706
1712
|
}
|
|
1713
|
+
.transition-\[top\,height\] {
|
|
1714
|
+
transition-property: top,height;
|
|
1715
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1716
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1717
|
+
}
|
|
1707
1718
|
.transition-\[translate\,height\] {
|
|
1708
1719
|
transition-property: translate,height;
|
|
1709
1720
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1759,6 +1770,10 @@
|
|
|
1759
1770
|
--tw-duration: 400ms;
|
|
1760
1771
|
transition-duration: 400ms;
|
|
1761
1772
|
}
|
|
1773
|
+
.ease-linear {
|
|
1774
|
+
--tw-ease: linear;
|
|
1775
|
+
transition-timing-function: linear;
|
|
1776
|
+
}
|
|
1762
1777
|
.outline-none {
|
|
1763
1778
|
--tw-outline-style: none;
|
|
1764
1779
|
outline-style: none;
|
|
@@ -3006,6 +3021,10 @@
|
|
|
3006
3021
|
syntax: "*";
|
|
3007
3022
|
inherits: false;
|
|
3008
3023
|
}
|
|
3024
|
+
@property --tw-ease {
|
|
3025
|
+
syntax: "*";
|
|
3026
|
+
inherits: false;
|
|
3027
|
+
}
|
|
3009
3028
|
@property --tw-content {
|
|
3010
3029
|
syntax: "*";
|
|
3011
3030
|
initial-value: "";
|
|
@@ -3236,6 +3255,7 @@
|
|
|
3236
3255
|
--tw-backdrop-saturate: initial;
|
|
3237
3256
|
--tw-backdrop-sepia: initial;
|
|
3238
3257
|
--tw-duration: initial;
|
|
3258
|
+
--tw-ease: initial;
|
|
3239
3259
|
--tw-content: "";
|
|
3240
3260
|
--tw-scale-x: 1;
|
|
3241
3261
|
--tw-scale-y: 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-ui",
|
|
3
|
-
"version": "16.4.
|
|
3
|
+
"version": "16.4.1",
|
|
4
4
|
"description": "The Radix UI version of Fumadocs UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Fumadocs",
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
"next-themes": "^0.4.6",
|
|
106
106
|
"react-medium-image-zoom": "^5.4.0",
|
|
107
107
|
"scroll-into-view-if-needed": "^3.1.0",
|
|
108
|
-
"@fumadocs/ui": "16.4.
|
|
109
|
-
"fumadocs-core": "16.4.
|
|
108
|
+
"@fumadocs/ui": "16.4.1",
|
|
109
|
+
"fumadocs-core": "16.4.1"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
112
|
"@tailwindcss/cli": "^4.1.18",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"tsc-alias": "^1.8.16",
|
|
118
118
|
"@fumadocs/cli": "1.2.0",
|
|
119
119
|
"eslint-config-custom": "0.0.0",
|
|
120
|
-
"fumadocs-core": "16.4.
|
|
120
|
+
"fumadocs-core": "16.4.1",
|
|
121
121
|
"tsconfig": "0.0.0"
|
|
122
122
|
},
|
|
123
123
|
"peerDependencies": {
|