@fumadocs/base-ui 16.7.2 → 16.7.4
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/generated/docs.css +1 -8
- package/css/generated/flux.css +0 -3
- package/css/generated/home.css +26 -11
- package/css/generated/notebook.css +2 -4
- package/css/generated/shared.css +59 -10
- package/dist/components/sidebar/base.js +1 -2
- package/dist/components/tabs.d.ts +9 -4
- package/dist/components/tabs.js +12 -13
- package/dist/components/toc/clerk.js +66 -30
- package/dist/components/toc/default.js +2 -2
- package/dist/components/toc/index.d.ts +4 -2
- package/dist/components/toc/index.js +36 -18
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/components/ui/collapsible.js +1 -1
- package/dist/components/ui/navigation-menu.d.ts +24 -12
- package/dist/components/ui/navigation-menu.js +47 -32
- package/dist/components/ui/popover.d.ts +7 -1
- package/dist/components/ui/popover.js +13 -13
- package/dist/components/ui/scroll-area.d.ts +15 -4
- package/dist/components/ui/scroll-area.js +26 -27
- package/dist/layouts/docs/page/slots/toc.js +4 -2
- package/dist/layouts/docs/slots/sidebar.js +9 -19
- package/dist/layouts/flux/page/slots/toc.js +4 -2
- package/dist/layouts/flux/slots/sidebar.js +8 -13
- package/dist/layouts/home/index.js +6 -1
- package/dist/layouts/home/navbar.d.ts +2 -4
- package/dist/layouts/home/navbar.js +6 -9
- package/dist/layouts/home/slots/header.d.ts +2 -3
- package/dist/layouts/home/slots/header.js +122 -112
- package/dist/layouts/notebook/page/slots/toc.js +4 -2
- package/dist/layouts/notebook/slots/sidebar.js +9 -19
- package/dist/style.css +228 -60
- package/package.json +5 -5
package/dist/style.css
CHANGED
|
@@ -298,6 +298,9 @@
|
|
|
298
298
|
.inset-y-2 {
|
|
299
299
|
inset-block: calc(var(--spacing) * 2);
|
|
300
300
|
}
|
|
301
|
+
.inset-s-0 {
|
|
302
|
+
inset-inline-start: calc(var(--spacing) * 0);
|
|
303
|
+
}
|
|
301
304
|
.start {
|
|
302
305
|
inset-inline-start: var(--spacing);
|
|
303
306
|
}
|
|
@@ -313,6 +316,9 @@
|
|
|
313
316
|
.start-6 {
|
|
314
317
|
inset-inline-start: calc(var(--spacing) * 6);
|
|
315
318
|
}
|
|
319
|
+
.end {
|
|
320
|
+
inset-inline-end: var(--spacing);
|
|
321
|
+
}
|
|
316
322
|
.end-0 {
|
|
317
323
|
inset-inline-end: calc(var(--spacing) * 0);
|
|
318
324
|
}
|
|
@@ -880,6 +886,9 @@
|
|
|
880
886
|
.mb-auto {
|
|
881
887
|
margin-bottom: auto;
|
|
882
888
|
}
|
|
889
|
+
.box-border {
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
}
|
|
883
892
|
.fd-scroll-container {
|
|
884
893
|
&::-webkit-scrollbar {
|
|
885
894
|
width: 5px;
|
|
@@ -914,6 +923,10 @@
|
|
|
914
923
|
.table {
|
|
915
924
|
display: table;
|
|
916
925
|
}
|
|
926
|
+
.size-1 {
|
|
927
|
+
width: calc(var(--spacing) * 1);
|
|
928
|
+
height: calc(var(--spacing) * 1);
|
|
929
|
+
}
|
|
917
930
|
.size-3 {
|
|
918
931
|
width: calc(var(--spacing) * 3);
|
|
919
932
|
height: calc(var(--spacing) * 3);
|
|
@@ -964,6 +977,12 @@
|
|
|
964
977
|
.h-\(--fd-toc-popover-height\) {
|
|
965
978
|
height: var(--fd-toc-popover-height);
|
|
966
979
|
}
|
|
980
|
+
.h-\(--popup-height\) {
|
|
981
|
+
height: var(--popup-height);
|
|
982
|
+
}
|
|
983
|
+
.h-\(--positioner-height\) {
|
|
984
|
+
height: var(--positioner-height);
|
|
985
|
+
}
|
|
967
986
|
.h-1\.5 {
|
|
968
987
|
height: calc(var(--spacing) * 1.5);
|
|
969
988
|
}
|
|
@@ -1030,6 +1049,9 @@
|
|
|
1030
1049
|
.w-\(--fd-toc-width\) {
|
|
1031
1050
|
width: var(--fd-toc-width);
|
|
1032
1051
|
}
|
|
1052
|
+
.w-\(--popup-width\) {
|
|
1053
|
+
width: var(--popup-width);
|
|
1054
|
+
}
|
|
1033
1055
|
.w-\(--radix-popover-trigger-width\) {
|
|
1034
1056
|
width: var(--radix-popover-trigger-width);
|
|
1035
1057
|
}
|
|
@@ -1069,6 +1091,12 @@
|
|
|
1069
1091
|
.w-px {
|
|
1070
1092
|
width: 1px;
|
|
1071
1093
|
}
|
|
1094
|
+
.max-w-\(--available-width\) {
|
|
1095
|
+
max-width: var(--available-width);
|
|
1096
|
+
}
|
|
1097
|
+
.max-w-\(--fd-layout-width\) {
|
|
1098
|
+
max-width: var(--fd-layout-width);
|
|
1099
|
+
}
|
|
1072
1100
|
.max-w-\[98vw\] {
|
|
1073
1101
|
max-width: 98vw;
|
|
1074
1102
|
}
|
|
@@ -1169,6 +1197,9 @@
|
|
|
1169
1197
|
.animate-pulse {
|
|
1170
1198
|
animation: var(--animate-pulse);
|
|
1171
1199
|
}
|
|
1200
|
+
.scroll-m-4 {
|
|
1201
|
+
scroll-margin: calc(var(--spacing) * 4);
|
|
1202
|
+
}
|
|
1172
1203
|
.scroll-m-20 {
|
|
1173
1204
|
scroll-margin: calc(var(--spacing) * 20);
|
|
1174
1205
|
}
|
|
@@ -1325,9 +1356,9 @@
|
|
|
1325
1356
|
.rounded-xl {
|
|
1326
1357
|
border-radius: var(--radius-xl);
|
|
1327
1358
|
}
|
|
1328
|
-
.rounded-e-
|
|
1329
|
-
border-start-end-radius:
|
|
1330
|
-
border-end-end-radius:
|
|
1359
|
+
.rounded-e-full {
|
|
1360
|
+
border-start-end-radius: calc(infinity * 1px);
|
|
1361
|
+
border-end-end-radius: calc(infinity * 1px);
|
|
1331
1362
|
}
|
|
1332
1363
|
.border {
|
|
1333
1364
|
border-style: var(--tw-border-style);
|
|
@@ -1461,6 +1492,9 @@
|
|
|
1461
1492
|
.mask-\[linear-gradient\(to_bottom\,transparent\,white_--spacing\(14\)\,white_calc\(100\%---spacing\(14\)\)\,transparent\)\] {
|
|
1462
1493
|
mask-image: linear-gradient(to bottom,transparent,white calc(var(--spacing) * 14),white calc(100% - calc(var(--spacing) * 14)),transparent);
|
|
1463
1494
|
}
|
|
1495
|
+
.mask-\[linear-gradient\(to_bottom\,transparent\,white_12px\,white_calc\(100\%-12px\)\,transparent\)\] {
|
|
1496
|
+
mask-image: linear-gradient(to bottom,transparent,white 12px,white calc(100% - 12px),transparent);
|
|
1497
|
+
}
|
|
1464
1498
|
.mask-\[linear-gradient\(to_bottom\,transparent\,white_16px\,white_calc\(100\%-16px\)\,transparent\)\] {
|
|
1465
1499
|
mask-image: linear-gradient(to bottom,transparent,white 16px,white calc(100% - 16px),transparent);
|
|
1466
1500
|
}
|
|
@@ -1482,6 +1516,9 @@
|
|
|
1482
1516
|
stroke: color-mix(in oklab, var(--color-fd-foreground) 10%, transparent);
|
|
1483
1517
|
}
|
|
1484
1518
|
}
|
|
1519
|
+
.stroke-fd-primary {
|
|
1520
|
+
stroke: var(--color-fd-primary);
|
|
1521
|
+
}
|
|
1485
1522
|
.p-0 {
|
|
1486
1523
|
padding: calc(var(--spacing) * 0);
|
|
1487
1524
|
}
|
|
@@ -1599,6 +1636,9 @@
|
|
|
1599
1636
|
.pt-0 {
|
|
1600
1637
|
padding-top: calc(var(--spacing) * 0);
|
|
1601
1638
|
}
|
|
1639
|
+
.pt-0\.5 {
|
|
1640
|
+
padding-top: calc(var(--spacing) * 0.5);
|
|
1641
|
+
}
|
|
1602
1642
|
.pt-2 {
|
|
1603
1643
|
padding-top: calc(var(--spacing) * 2);
|
|
1604
1644
|
}
|
|
@@ -1801,11 +1841,26 @@
|
|
|
1801
1841
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1802
1842
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1803
1843
|
}
|
|
1844
|
+
.transition-\[box-shadow\,background-color\,border-radius\] {
|
|
1845
|
+
transition-property: box-shadow,background-color,border-radius;
|
|
1846
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1847
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1848
|
+
}
|
|
1849
|
+
.transition-\[clip-path\] {
|
|
1850
|
+
transition-property: clip-path;
|
|
1851
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1852
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1853
|
+
}
|
|
1804
1854
|
.transition-\[grid-template-columns\] {
|
|
1805
1855
|
transition-property: grid-template-columns;
|
|
1806
1856
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1807
1857
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1808
1858
|
}
|
|
1859
|
+
.transition-\[height\,opacity\] {
|
|
1860
|
+
transition-property: height,opacity;
|
|
1861
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1862
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1863
|
+
}
|
|
1809
1864
|
.transition-\[height\] {
|
|
1810
1865
|
transition-property: height;
|
|
1811
1866
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1816,6 +1871,11 @@
|
|
|
1816
1871
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1817
1872
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1818
1873
|
}
|
|
1874
|
+
.transition-\[opacity\,transform\,width\,height\,scale\,translate\] {
|
|
1875
|
+
transition-property: opacity,transform,width,height,scale,translate;
|
|
1876
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1877
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1878
|
+
}
|
|
1819
1879
|
.transition-\[opacity\,translate\,color\] {
|
|
1820
1880
|
transition-property: opacity,translate,color;
|
|
1821
1881
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1872,10 +1932,6 @@
|
|
|
1872
1932
|
--tw-duration: 250ms;
|
|
1873
1933
|
transition-duration: 250ms;
|
|
1874
1934
|
}
|
|
1875
|
-
.duration-300 {
|
|
1876
|
-
--tw-duration: 300ms;
|
|
1877
|
-
transition-duration: 300ms;
|
|
1878
|
-
}
|
|
1879
1935
|
.duration-400 {
|
|
1880
1936
|
--tw-duration: 400ms;
|
|
1881
1937
|
transition-duration: 400ms;
|
|
@@ -1884,10 +1940,6 @@
|
|
|
1884
1940
|
--tw-ease: var(--easing);
|
|
1885
1941
|
transition-timing-function: var(--easing);
|
|
1886
1942
|
}
|
|
1887
|
-
.ease-linear {
|
|
1888
|
-
--tw-ease: linear;
|
|
1889
|
-
transition-timing-function: linear;
|
|
1890
|
-
}
|
|
1891
1943
|
.ease-out {
|
|
1892
1944
|
--tw-ease: var(--ease-out);
|
|
1893
1945
|
transition-timing-function: var(--ease-out);
|
|
@@ -1951,11 +2003,6 @@
|
|
|
1951
2003
|
grid-row-start: 1;
|
|
1952
2004
|
}
|
|
1953
2005
|
}
|
|
1954
|
-
.\*\:mx-auto {
|
|
1955
|
-
:is(& > *) {
|
|
1956
|
-
margin-inline: auto;
|
|
1957
|
-
}
|
|
1958
|
-
}
|
|
1959
2006
|
.\*\:my-auto {
|
|
1960
2007
|
:is(& > *) {
|
|
1961
2008
|
margin-block: auto;
|
|
@@ -1966,21 +2013,11 @@
|
|
|
1966
2013
|
display: flex;
|
|
1967
2014
|
}
|
|
1968
2015
|
}
|
|
1969
|
-
.\*\:flex\! {
|
|
1970
|
-
:is(& > *) {
|
|
1971
|
-
display: flex !important;
|
|
1972
|
-
}
|
|
1973
|
-
}
|
|
1974
2016
|
.\*\:w-\(--fd-sidebar-width\) {
|
|
1975
2017
|
:is(& > *) {
|
|
1976
2018
|
width: var(--fd-sidebar-width);
|
|
1977
2019
|
}
|
|
1978
2020
|
}
|
|
1979
|
-
.\*\:max-w-\(--fd-layout-width\) {
|
|
1980
|
-
:is(& > *) {
|
|
1981
|
-
max-width: var(--fd-layout-width);
|
|
1982
|
-
}
|
|
1983
|
-
}
|
|
1984
2021
|
.\*\:max-w-\[900px\] {
|
|
1985
2022
|
:is(& > *) {
|
|
1986
2023
|
max-width: 900px;
|
|
@@ -1996,16 +2033,6 @@
|
|
|
1996
2033
|
flex-direction: column;
|
|
1997
2034
|
}
|
|
1998
2035
|
}
|
|
1999
|
-
.\*\:flex-col\! {
|
|
2000
|
-
:is(& > *) {
|
|
2001
|
-
flex-direction: column !important;
|
|
2002
|
-
}
|
|
2003
|
-
}
|
|
2004
|
-
.\*\:gap-0\.5\! {
|
|
2005
|
-
:is(& > *) {
|
|
2006
|
-
gap: calc(var(--spacing) * 0.5) !important;
|
|
2007
|
-
}
|
|
2008
|
-
}
|
|
2009
2036
|
.\*\:rounded-full {
|
|
2010
2037
|
:is(& > *) {
|
|
2011
2038
|
border-radius: calc(infinity * 1px);
|
|
@@ -2042,11 +2069,6 @@
|
|
|
2042
2069
|
rotate: 90deg;
|
|
2043
2070
|
}
|
|
2044
2071
|
}
|
|
2045
|
-
.group-data-\[state\=open\]\:rotate-180 {
|
|
2046
|
-
&:is(:where(.group)[data-state="open"] *) {
|
|
2047
|
-
rotate: 180deg;
|
|
2048
|
-
}
|
|
2049
|
-
}
|
|
2050
2072
|
.peer-hover\:opacity-100 {
|
|
2051
2073
|
&:is(:where(.peer):hover ~ *) {
|
|
2052
2074
|
@media (hover: hover) {
|
|
@@ -2110,13 +2132,6 @@
|
|
|
2110
2132
|
padding-top: calc(var(--spacing) * 0);
|
|
2111
2133
|
}
|
|
2112
2134
|
}
|
|
2113
|
-
.\*\:first\:mt-0\.5 {
|
|
2114
|
-
:is(& > *) {
|
|
2115
|
-
&:first-child {
|
|
2116
|
-
margin-top: calc(var(--spacing) * 0.5);
|
|
2117
|
-
}
|
|
2118
|
-
}
|
|
2119
|
-
}
|
|
2120
2135
|
.last\:me-0 {
|
|
2121
2136
|
&:last-child {
|
|
2122
2137
|
margin-inline-end: calc(var(--spacing) * 0);
|
|
@@ -2294,11 +2309,35 @@
|
|
|
2294
2309
|
animation: var(--animate-fd-fade-out);
|
|
2295
2310
|
}
|
|
2296
2311
|
}
|
|
2312
|
+
.data-ending-style\:h-0 {
|
|
2313
|
+
&[data-ending-style] {
|
|
2314
|
+
height: calc(var(--spacing) * 0);
|
|
2315
|
+
}
|
|
2316
|
+
}
|
|
2317
|
+
.data-ending-style\:scale-90 {
|
|
2318
|
+
&[data-ending-style] {
|
|
2319
|
+
--tw-scale-x: 90%;
|
|
2320
|
+
--tw-scale-y: 90%;
|
|
2321
|
+
--tw-scale-z: 90%;
|
|
2322
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2297
2325
|
.data-ending-style\:opacity-0 {
|
|
2298
2326
|
&[data-ending-style] {
|
|
2299
2327
|
opacity: 0%;
|
|
2300
2328
|
}
|
|
2301
2329
|
}
|
|
2330
|
+
.data-ending-style\:duration-150 {
|
|
2331
|
+
&[data-ending-style] {
|
|
2332
|
+
--tw-duration: 150ms;
|
|
2333
|
+
transition-duration: 150ms;
|
|
2334
|
+
}
|
|
2335
|
+
}
|
|
2336
|
+
.data-instant\:transition-none {
|
|
2337
|
+
&[data-instant] {
|
|
2338
|
+
transition-property: none;
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2302
2341
|
.data-open\:animate-fd-dialog-in {
|
|
2303
2342
|
&[data-open] {
|
|
2304
2343
|
animation: var(--animate-fd-dialog-in);
|
|
@@ -2319,6 +2358,19 @@
|
|
|
2319
2358
|
color: var(--color-fd-accent-foreground);
|
|
2320
2359
|
}
|
|
2321
2360
|
}
|
|
2361
|
+
.data-starting-style\:h-0 {
|
|
2362
|
+
&[data-starting-style] {
|
|
2363
|
+
height: calc(var(--spacing) * 0);
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
.data-starting-style\:scale-90 {
|
|
2367
|
+
&[data-starting-style] {
|
|
2368
|
+
--tw-scale-x: 90%;
|
|
2369
|
+
--tw-scale-y: 90%;
|
|
2370
|
+
--tw-scale-z: 90%;
|
|
2371
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2322
2374
|
.data-starting-style\:opacity-0 {
|
|
2323
2375
|
&[data-starting-style] {
|
|
2324
2376
|
opacity: 0%;
|
|
@@ -2477,6 +2529,134 @@
|
|
|
2477
2529
|
animation: var(--animate-fd-popover-in);
|
|
2478
2530
|
}
|
|
2479
2531
|
}
|
|
2532
|
+
.data-\[side\=bottom\]\:before\:top-\[-10px\] {
|
|
2533
|
+
&[data-side="bottom"] {
|
|
2534
|
+
&::before {
|
|
2535
|
+
content: var(--tw-content);
|
|
2536
|
+
top: -10px;
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
.data-\[side\=bottom\]\:before\:right-0 {
|
|
2541
|
+
&[data-side="bottom"] {
|
|
2542
|
+
&::before {
|
|
2543
|
+
content: var(--tw-content);
|
|
2544
|
+
right: calc(var(--spacing) * 0);
|
|
2545
|
+
}
|
|
2546
|
+
}
|
|
2547
|
+
}
|
|
2548
|
+
.data-\[side\=bottom\]\:before\:left-0 {
|
|
2549
|
+
&[data-side="bottom"] {
|
|
2550
|
+
&::before {
|
|
2551
|
+
content: var(--tw-content);
|
|
2552
|
+
left: calc(var(--spacing) * 0);
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2556
|
+
.data-\[side\=bottom\]\:before\:h-2\.5 {
|
|
2557
|
+
&[data-side="bottom"] {
|
|
2558
|
+
&::before {
|
|
2559
|
+
content: var(--tw-content);
|
|
2560
|
+
height: calc(var(--spacing) * 2.5);
|
|
2561
|
+
}
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
.data-\[side\=left\]\:before\:top-0 {
|
|
2565
|
+
&[data-side="left"] {
|
|
2566
|
+
&::before {
|
|
2567
|
+
content: var(--tw-content);
|
|
2568
|
+
top: calc(var(--spacing) * 0);
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
.data-\[side\=left\]\:before\:right-\[-10px\] {
|
|
2573
|
+
&[data-side="left"] {
|
|
2574
|
+
&::before {
|
|
2575
|
+
content: var(--tw-content);
|
|
2576
|
+
right: -10px;
|
|
2577
|
+
}
|
|
2578
|
+
}
|
|
2579
|
+
}
|
|
2580
|
+
.data-\[side\=left\]\:before\:bottom-0 {
|
|
2581
|
+
&[data-side="left"] {
|
|
2582
|
+
&::before {
|
|
2583
|
+
content: var(--tw-content);
|
|
2584
|
+
bottom: calc(var(--spacing) * 0);
|
|
2585
|
+
}
|
|
2586
|
+
}
|
|
2587
|
+
}
|
|
2588
|
+
.data-\[side\=left\]\:before\:w-2\.5 {
|
|
2589
|
+
&[data-side="left"] {
|
|
2590
|
+
&::before {
|
|
2591
|
+
content: var(--tw-content);
|
|
2592
|
+
width: calc(var(--spacing) * 2.5);
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2596
|
+
.data-\[side\=right\]\:before\:top-0 {
|
|
2597
|
+
&[data-side="right"] {
|
|
2598
|
+
&::before {
|
|
2599
|
+
content: var(--tw-content);
|
|
2600
|
+
top: calc(var(--spacing) * 0);
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
.data-\[side\=right\]\:before\:bottom-0 {
|
|
2605
|
+
&[data-side="right"] {
|
|
2606
|
+
&::before {
|
|
2607
|
+
content: var(--tw-content);
|
|
2608
|
+
bottom: calc(var(--spacing) * 0);
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
.data-\[side\=right\]\:before\:left-\[-10px\] {
|
|
2613
|
+
&[data-side="right"] {
|
|
2614
|
+
&::before {
|
|
2615
|
+
content: var(--tw-content);
|
|
2616
|
+
left: -10px;
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
}
|
|
2620
|
+
.data-\[side\=right\]\:before\:w-2\.5 {
|
|
2621
|
+
&[data-side="right"] {
|
|
2622
|
+
&::before {
|
|
2623
|
+
content: var(--tw-content);
|
|
2624
|
+
width: calc(var(--spacing) * 2.5);
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
.data-\[side\=top\]\:before\:right-0 {
|
|
2629
|
+
&[data-side="top"] {
|
|
2630
|
+
&::before {
|
|
2631
|
+
content: var(--tw-content);
|
|
2632
|
+
right: calc(var(--spacing) * 0);
|
|
2633
|
+
}
|
|
2634
|
+
}
|
|
2635
|
+
}
|
|
2636
|
+
.data-\[side\=top\]\:before\:bottom-\[-10px\] {
|
|
2637
|
+
&[data-side="top"] {
|
|
2638
|
+
&::before {
|
|
2639
|
+
content: var(--tw-content);
|
|
2640
|
+
bottom: -10px;
|
|
2641
|
+
}
|
|
2642
|
+
}
|
|
2643
|
+
}
|
|
2644
|
+
.data-\[side\=top\]\:before\:left-0 {
|
|
2645
|
+
&[data-side="top"] {
|
|
2646
|
+
&::before {
|
|
2647
|
+
content: var(--tw-content);
|
|
2648
|
+
left: calc(var(--spacing) * 0);
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
}
|
|
2652
|
+
.data-\[side\=top\]\:before\:h-2\.5 {
|
|
2653
|
+
&[data-side="top"] {
|
|
2654
|
+
&::before {
|
|
2655
|
+
content: var(--tw-content);
|
|
2656
|
+
height: calc(var(--spacing) * 2.5);
|
|
2657
|
+
}
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2480
2660
|
.data-\[starting-style\]\:h-0 {
|
|
2481
2661
|
&[data-starting-style] {
|
|
2482
2662
|
height: calc(var(--spacing) * 0);
|
|
@@ -2740,12 +2920,6 @@
|
|
|
2740
2920
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2741
2921
|
}
|
|
2742
2922
|
}
|
|
2743
|
-
.rtl\:-scale-x-100 {
|
|
2744
|
-
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
2745
|
-
--tw-scale-x: calc(100% * -1);
|
|
2746
|
-
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2747
|
-
}
|
|
2748
|
-
}
|
|
2749
2923
|
.rtl\:rotate-90 {
|
|
2750
2924
|
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
2751
2925
|
rotate: 90deg;
|
|
@@ -2825,12 +2999,6 @@
|
|
|
2825
2999
|
height: calc(var(--spacing) * 5);
|
|
2826
3000
|
}
|
|
2827
3001
|
}
|
|
2828
|
-
.\[\&_svg\]\:size-5\.5 {
|
|
2829
|
-
& svg {
|
|
2830
|
-
width: calc(var(--spacing) * 5.5);
|
|
2831
|
-
height: calc(var(--spacing) * 5.5);
|
|
2832
|
-
}
|
|
2833
|
-
}
|
|
2834
3002
|
.\[\&_svg\]\:size-full {
|
|
2835
3003
|
& svg {
|
|
2836
3004
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fumadocs/base-ui",
|
|
3
|
-
"version": "16.7.
|
|
3
|
+
"version": "16.7.4",
|
|
4
4
|
"description": "The Base UI version of Fumadocs UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -140,10 +140,10 @@
|
|
|
140
140
|
"tailwindcss": "^4.2.2",
|
|
141
141
|
"tsdown": "0.21.4",
|
|
142
142
|
"unified": "^11.0.5",
|
|
143
|
-
"eslint-config-custom": "0.0.0",
|
|
144
143
|
"@fumadocs/cli": "1.3.1",
|
|
145
|
-
"
|
|
146
|
-
"tsconfig": "0.0.0"
|
|
144
|
+
"eslint-config-custom": "0.0.0",
|
|
145
|
+
"tsconfig": "0.0.0",
|
|
146
|
+
"fumadocs-core": "16.7.4"
|
|
147
147
|
},
|
|
148
148
|
"peerDependencies": {
|
|
149
149
|
"@takumi-rs/image-response": "*",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"react": "^19.2.0",
|
|
154
154
|
"react-dom": "^19.2.0",
|
|
155
155
|
"shiki": "*",
|
|
156
|
-
"fumadocs-core": "16.7.
|
|
156
|
+
"fumadocs-core": "16.7.4"
|
|
157
157
|
},
|
|
158
158
|
"peerDependenciesMeta": {
|
|
159
159
|
"shiki": {
|