@fumadocs/base-ui 16.7.2 → 16.7.3

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.
Files changed (33) hide show
  1. package/css/generated/docs.css +1 -8
  2. package/css/generated/flux.css +0 -3
  3. package/css/generated/home.css +26 -11
  4. package/css/generated/notebook.css +2 -4
  5. package/css/generated/shared.css +63 -10
  6. package/dist/components/sidebar/base.js +1 -2
  7. package/dist/components/tabs.d.ts +9 -4
  8. package/dist/components/tabs.js +12 -13
  9. package/dist/components/toc/clerk.js +65 -29
  10. package/dist/components/toc/default.js +5 -3
  11. package/dist/components/toc/index.d.ts +4 -2
  12. package/dist/components/toc/index.js +36 -18
  13. package/dist/components/ui/button.d.ts +1 -1
  14. package/dist/components/ui/collapsible.js +1 -1
  15. package/dist/components/ui/navigation-menu.d.ts +24 -12
  16. package/dist/components/ui/navigation-menu.js +47 -32
  17. package/dist/components/ui/popover.d.ts +7 -1
  18. package/dist/components/ui/popover.js +13 -13
  19. package/dist/components/ui/scroll-area.d.ts +15 -4
  20. package/dist/components/ui/scroll-area.js +26 -27
  21. package/dist/layouts/docs/page/slots/toc.js +3 -3
  22. package/dist/layouts/docs/slots/sidebar.js +9 -19
  23. package/dist/layouts/flux/page/slots/toc.js +3 -3
  24. package/dist/layouts/flux/slots/sidebar.js +8 -13
  25. package/dist/layouts/home/index.js +6 -1
  26. package/dist/layouts/home/navbar.d.ts +2 -4
  27. package/dist/layouts/home/navbar.js +6 -9
  28. package/dist/layouts/home/slots/header.d.ts +2 -3
  29. package/dist/layouts/home/slots/header.js +122 -112
  30. package/dist/layouts/notebook/page/slots/toc.js +3 -3
  31. package/dist/layouts/notebook/slots/sidebar.js +9 -19
  32. package/dist/style.css +302 -60
  33. package/package.json +4 -4
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
  }
@@ -1150,6 +1178,10 @@
1150
1178
  --tw-translate-y: -100%;
1151
1179
  translate: var(--tw-translate-x) var(--tw-translate-y);
1152
1180
  }
1181
+ .translate-y-1\/2 {
1182
+ --tw-translate-y: calc(1 / 2 * 100%);
1183
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1184
+ }
1153
1185
  .translate-y-full {
1154
1186
  --tw-translate-y: 100%;
1155
1187
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -1325,9 +1357,9 @@
1325
1357
  .rounded-xl {
1326
1358
  border-radius: var(--radius-xl);
1327
1359
  }
1328
- .rounded-e-sm {
1329
- border-start-end-radius: var(--radius-sm);
1330
- border-end-end-radius: var(--radius-sm);
1360
+ .rounded-e-full {
1361
+ border-start-end-radius: calc(infinity * 1px);
1362
+ border-end-end-radius: calc(infinity * 1px);
1331
1363
  }
1332
1364
  .border {
1333
1365
  border-style: var(--tw-border-style);
@@ -1458,9 +1490,24 @@
1458
1490
  .bg-transparent {
1459
1491
  background-color: transparent;
1460
1492
  }
1493
+ .bg-linear-to-t {
1494
+ --tw-gradient-position: to top;
1495
+ @supports (background-image: linear-gradient(in lab, red, red)) {
1496
+ --tw-gradient-position: to top in oklab;
1497
+ }
1498
+ background-image: linear-gradient(var(--tw-gradient-stops));
1499
+ }
1500
+ .via-fd-primary {
1501
+ --tw-gradient-via: var(--color-fd-primary);
1502
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
1503
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1504
+ }
1461
1505
  .mask-\[linear-gradient\(to_bottom\,transparent\,white_--spacing\(14\)\,white_calc\(100\%---spacing\(14\)\)\,transparent\)\] {
1462
1506
  mask-image: linear-gradient(to bottom,transparent,white calc(var(--spacing) * 14),white calc(100% - calc(var(--spacing) * 14)),transparent);
1463
1507
  }
1508
+ .mask-\[linear-gradient\(to_bottom\,transparent\,white_12px\,white_calc\(100\%-12px\)\,transparent\)\] {
1509
+ mask-image: linear-gradient(to bottom,transparent,white 12px,white calc(100% - 12px),transparent);
1510
+ }
1464
1511
  .mask-\[linear-gradient\(to_bottom\,transparent\,white_16px\,white_calc\(100\%-16px\)\,transparent\)\] {
1465
1512
  mask-image: linear-gradient(to bottom,transparent,white 16px,white calc(100% - 16px),transparent);
1466
1513
  }
@@ -1482,6 +1529,9 @@
1482
1529
  stroke: color-mix(in oklab, var(--color-fd-foreground) 10%, transparent);
1483
1530
  }
1484
1531
  }
1532
+ .stroke-fd-primary {
1533
+ stroke: var(--color-fd-primary);
1534
+ }
1485
1535
  .p-0 {
1486
1536
  padding: calc(var(--spacing) * 0);
1487
1537
  }
@@ -1599,6 +1649,9 @@
1599
1649
  .pt-0 {
1600
1650
  padding-top: calc(var(--spacing) * 0);
1601
1651
  }
1652
+ .pt-0\.5 {
1653
+ padding-top: calc(var(--spacing) * 0.5);
1654
+ }
1602
1655
  .pt-2 {
1603
1656
  padding-top: calc(var(--spacing) * 2);
1604
1657
  }
@@ -1801,11 +1854,26 @@
1801
1854
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1802
1855
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1803
1856
  }
1857
+ .transition-\[box-shadow\,background-color\,border-radius\] {
1858
+ transition-property: box-shadow,background-color,border-radius;
1859
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1860
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1861
+ }
1862
+ .transition-\[clip-path\] {
1863
+ transition-property: clip-path;
1864
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1865
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1866
+ }
1804
1867
  .transition-\[grid-template-columns\] {
1805
1868
  transition-property: grid-template-columns;
1806
1869
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1807
1870
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1808
1871
  }
1872
+ .transition-\[height\,opacity\] {
1873
+ transition-property: height,opacity;
1874
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1875
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1876
+ }
1809
1877
  .transition-\[height\] {
1810
1878
  transition-property: height;
1811
1879
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -1816,6 +1884,11 @@
1816
1884
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1817
1885
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1818
1886
  }
1887
+ .transition-\[opacity\,transform\,width\,height\,scale\,translate\] {
1888
+ transition-property: opacity,transform,width,height,scale,translate;
1889
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1890
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1891
+ }
1819
1892
  .transition-\[opacity\,translate\,color\] {
1820
1893
  transition-property: opacity,translate,color;
1821
1894
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -1856,6 +1929,9 @@
1856
1929
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1857
1930
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1858
1931
  }
1932
+ .delay-25 {
1933
+ transition-delay: 25ms;
1934
+ }
1859
1935
  .duration-\(--duration\) {
1860
1936
  --tw-duration: var(--duration);
1861
1937
  transition-duration: var(--duration);
@@ -1872,10 +1948,6 @@
1872
1948
  --tw-duration: 250ms;
1873
1949
  transition-duration: 250ms;
1874
1950
  }
1875
- .duration-300 {
1876
- --tw-duration: 300ms;
1877
- transition-duration: 300ms;
1878
- }
1879
1951
  .duration-400 {
1880
1952
  --tw-duration: 400ms;
1881
1953
  transition-duration: 400ms;
@@ -1884,10 +1956,6 @@
1884
1956
  --tw-ease: var(--easing);
1885
1957
  transition-timing-function: var(--easing);
1886
1958
  }
1887
- .ease-linear {
1888
- --tw-ease: linear;
1889
- transition-timing-function: linear;
1890
- }
1891
1959
  .ease-out {
1892
1960
  --tw-ease: var(--ease-out);
1893
1961
  transition-timing-function: var(--ease-out);
@@ -1951,11 +2019,6 @@
1951
2019
  grid-row-start: 1;
1952
2020
  }
1953
2021
  }
1954
- .\*\:mx-auto {
1955
- :is(& > *) {
1956
- margin-inline: auto;
1957
- }
1958
- }
1959
2022
  .\*\:my-auto {
1960
2023
  :is(& > *) {
1961
2024
  margin-block: auto;
@@ -1966,21 +2029,11 @@
1966
2029
  display: flex;
1967
2030
  }
1968
2031
  }
1969
- .\*\:flex\! {
1970
- :is(& > *) {
1971
- display: flex !important;
1972
- }
1973
- }
1974
2032
  .\*\:w-\(--fd-sidebar-width\) {
1975
2033
  :is(& > *) {
1976
2034
  width: var(--fd-sidebar-width);
1977
2035
  }
1978
2036
  }
1979
- .\*\:max-w-\(--fd-layout-width\) {
1980
- :is(& > *) {
1981
- max-width: var(--fd-layout-width);
1982
- }
1983
- }
1984
2037
  .\*\:max-w-\[900px\] {
1985
2038
  :is(& > *) {
1986
2039
  max-width: 900px;
@@ -1996,16 +2049,6 @@
1996
2049
  flex-direction: column;
1997
2050
  }
1998
2051
  }
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
2052
  .\*\:rounded-full {
2010
2053
  :is(& > *) {
2011
2054
  border-radius: calc(infinity * 1px);
@@ -2042,11 +2085,6 @@
2042
2085
  rotate: 90deg;
2043
2086
  }
2044
2087
  }
2045
- .group-data-\[state\=open\]\:rotate-180 {
2046
- &:is(:where(.group)[data-state="open"] *) {
2047
- rotate: 180deg;
2048
- }
2049
- }
2050
2088
  .peer-hover\:opacity-100 {
2051
2089
  &:is(:where(.peer):hover ~ *) {
2052
2090
  @media (hover: hover) {
@@ -2110,13 +2148,6 @@
2110
2148
  padding-top: calc(var(--spacing) * 0);
2111
2149
  }
2112
2150
  }
2113
- .\*\:first\:mt-0\.5 {
2114
- :is(& > *) {
2115
- &:first-child {
2116
- margin-top: calc(var(--spacing) * 0.5);
2117
- }
2118
- }
2119
- }
2120
2151
  .last\:me-0 {
2121
2152
  &:last-child {
2122
2153
  margin-inline-end: calc(var(--spacing) * 0);
@@ -2229,6 +2260,13 @@
2229
2260
  }
2230
2261
  }
2231
2262
  }
2263
+ .hover\:delay-0 {
2264
+ &:hover {
2265
+ @media (hover: hover) {
2266
+ transition-delay: 0ms;
2267
+ }
2268
+ }
2269
+ }
2232
2270
  .focus-visible\:ring-2 {
2233
2271
  &:focus-visible {
2234
2272
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -2294,11 +2332,35 @@
2294
2332
  animation: var(--animate-fd-fade-out);
2295
2333
  }
2296
2334
  }
2335
+ .data-ending-style\:h-0 {
2336
+ &[data-ending-style] {
2337
+ height: calc(var(--spacing) * 0);
2338
+ }
2339
+ }
2340
+ .data-ending-style\:scale-90 {
2341
+ &[data-ending-style] {
2342
+ --tw-scale-x: 90%;
2343
+ --tw-scale-y: 90%;
2344
+ --tw-scale-z: 90%;
2345
+ scale: var(--tw-scale-x) var(--tw-scale-y);
2346
+ }
2347
+ }
2297
2348
  .data-ending-style\:opacity-0 {
2298
2349
  &[data-ending-style] {
2299
2350
  opacity: 0%;
2300
2351
  }
2301
2352
  }
2353
+ .data-ending-style\:duration-150 {
2354
+ &[data-ending-style] {
2355
+ --tw-duration: 150ms;
2356
+ transition-duration: 150ms;
2357
+ }
2358
+ }
2359
+ .data-instant\:transition-none {
2360
+ &[data-instant] {
2361
+ transition-property: none;
2362
+ }
2363
+ }
2302
2364
  .data-open\:animate-fd-dialog-in {
2303
2365
  &[data-open] {
2304
2366
  animation: var(--animate-fd-dialog-in);
@@ -2319,6 +2381,19 @@
2319
2381
  color: var(--color-fd-accent-foreground);
2320
2382
  }
2321
2383
  }
2384
+ .data-starting-style\:h-0 {
2385
+ &[data-starting-style] {
2386
+ height: calc(var(--spacing) * 0);
2387
+ }
2388
+ }
2389
+ .data-starting-style\:scale-90 {
2390
+ &[data-starting-style] {
2391
+ --tw-scale-x: 90%;
2392
+ --tw-scale-y: 90%;
2393
+ --tw-scale-z: 90%;
2394
+ scale: var(--tw-scale-x) var(--tw-scale-y);
2395
+ }
2396
+ }
2322
2397
  .data-starting-style\:opacity-0 {
2323
2398
  &[data-starting-style] {
2324
2399
  opacity: 0%;
@@ -2477,6 +2552,134 @@
2477
2552
  animation: var(--animate-fd-popover-in);
2478
2553
  }
2479
2554
  }
2555
+ .data-\[side\=bottom\]\:before\:top-\[-10px\] {
2556
+ &[data-side="bottom"] {
2557
+ &::before {
2558
+ content: var(--tw-content);
2559
+ top: -10px;
2560
+ }
2561
+ }
2562
+ }
2563
+ .data-\[side\=bottom\]\:before\:right-0 {
2564
+ &[data-side="bottom"] {
2565
+ &::before {
2566
+ content: var(--tw-content);
2567
+ right: calc(var(--spacing) * 0);
2568
+ }
2569
+ }
2570
+ }
2571
+ .data-\[side\=bottom\]\:before\:left-0 {
2572
+ &[data-side="bottom"] {
2573
+ &::before {
2574
+ content: var(--tw-content);
2575
+ left: calc(var(--spacing) * 0);
2576
+ }
2577
+ }
2578
+ }
2579
+ .data-\[side\=bottom\]\:before\:h-2\.5 {
2580
+ &[data-side="bottom"] {
2581
+ &::before {
2582
+ content: var(--tw-content);
2583
+ height: calc(var(--spacing) * 2.5);
2584
+ }
2585
+ }
2586
+ }
2587
+ .data-\[side\=left\]\:before\:top-0 {
2588
+ &[data-side="left"] {
2589
+ &::before {
2590
+ content: var(--tw-content);
2591
+ top: calc(var(--spacing) * 0);
2592
+ }
2593
+ }
2594
+ }
2595
+ .data-\[side\=left\]\:before\:right-\[-10px\] {
2596
+ &[data-side="left"] {
2597
+ &::before {
2598
+ content: var(--tw-content);
2599
+ right: -10px;
2600
+ }
2601
+ }
2602
+ }
2603
+ .data-\[side\=left\]\:before\:bottom-0 {
2604
+ &[data-side="left"] {
2605
+ &::before {
2606
+ content: var(--tw-content);
2607
+ bottom: calc(var(--spacing) * 0);
2608
+ }
2609
+ }
2610
+ }
2611
+ .data-\[side\=left\]\:before\:w-2\.5 {
2612
+ &[data-side="left"] {
2613
+ &::before {
2614
+ content: var(--tw-content);
2615
+ width: calc(var(--spacing) * 2.5);
2616
+ }
2617
+ }
2618
+ }
2619
+ .data-\[side\=right\]\:before\:top-0 {
2620
+ &[data-side="right"] {
2621
+ &::before {
2622
+ content: var(--tw-content);
2623
+ top: calc(var(--spacing) * 0);
2624
+ }
2625
+ }
2626
+ }
2627
+ .data-\[side\=right\]\:before\:bottom-0 {
2628
+ &[data-side="right"] {
2629
+ &::before {
2630
+ content: var(--tw-content);
2631
+ bottom: calc(var(--spacing) * 0);
2632
+ }
2633
+ }
2634
+ }
2635
+ .data-\[side\=right\]\:before\:left-\[-10px\] {
2636
+ &[data-side="right"] {
2637
+ &::before {
2638
+ content: var(--tw-content);
2639
+ left: -10px;
2640
+ }
2641
+ }
2642
+ }
2643
+ .data-\[side\=right\]\:before\:w-2\.5 {
2644
+ &[data-side="right"] {
2645
+ &::before {
2646
+ content: var(--tw-content);
2647
+ width: calc(var(--spacing) * 2.5);
2648
+ }
2649
+ }
2650
+ }
2651
+ .data-\[side\=top\]\:before\:right-0 {
2652
+ &[data-side="top"] {
2653
+ &::before {
2654
+ content: var(--tw-content);
2655
+ right: calc(var(--spacing) * 0);
2656
+ }
2657
+ }
2658
+ }
2659
+ .data-\[side\=top\]\:before\:bottom-\[-10px\] {
2660
+ &[data-side="top"] {
2661
+ &::before {
2662
+ content: var(--tw-content);
2663
+ bottom: -10px;
2664
+ }
2665
+ }
2666
+ }
2667
+ .data-\[side\=top\]\:before\:left-0 {
2668
+ &[data-side="top"] {
2669
+ &::before {
2670
+ content: var(--tw-content);
2671
+ left: calc(var(--spacing) * 0);
2672
+ }
2673
+ }
2674
+ }
2675
+ .data-\[side\=top\]\:before\:h-2\.5 {
2676
+ &[data-side="top"] {
2677
+ &::before {
2678
+ content: var(--tw-content);
2679
+ height: calc(var(--spacing) * 2.5);
2680
+ }
2681
+ }
2682
+ }
2480
2683
  .data-\[starting-style\]\:h-0 {
2481
2684
  &[data-starting-style] {
2482
2685
  height: calc(var(--spacing) * 0);
@@ -2740,12 +2943,6 @@
2740
2943
  translate: var(--tw-translate-x) var(--tw-translate-y);
2741
2944
  }
2742
2945
  }
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
2946
  .rtl\:rotate-90 {
2750
2947
  &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
2751
2948
  rotate: 90deg;
@@ -2825,12 +3022,6 @@
2825
3022
  height: calc(var(--spacing) * 5);
2826
3023
  }
2827
3024
  }
2828
- .\[\&_svg\]\:size-5\.5 {
2829
- & svg {
2830
- width: calc(var(--spacing) * 5.5);
2831
- height: calc(var(--spacing) * 5.5);
2832
- }
2833
- }
2834
3025
  .\[\&_svg\]\:size-full {
2835
3026
  & svg {
2836
3027
  width: 100%;
@@ -3066,6 +3257,48 @@
3066
3257
  inherits: false;
3067
3258
  initial-value: 0;
3068
3259
  }
3260
+ @property --tw-gradient-position {
3261
+ syntax: "*";
3262
+ inherits: false;
3263
+ }
3264
+ @property --tw-gradient-from {
3265
+ syntax: "<color>";
3266
+ inherits: false;
3267
+ initial-value: #0000;
3268
+ }
3269
+ @property --tw-gradient-via {
3270
+ syntax: "<color>";
3271
+ inherits: false;
3272
+ initial-value: #0000;
3273
+ }
3274
+ @property --tw-gradient-to {
3275
+ syntax: "<color>";
3276
+ inherits: false;
3277
+ initial-value: #0000;
3278
+ }
3279
+ @property --tw-gradient-stops {
3280
+ syntax: "*";
3281
+ inherits: false;
3282
+ }
3283
+ @property --tw-gradient-via-stops {
3284
+ syntax: "*";
3285
+ inherits: false;
3286
+ }
3287
+ @property --tw-gradient-from-position {
3288
+ syntax: "<length-percentage>";
3289
+ inherits: false;
3290
+ initial-value: 0%;
3291
+ }
3292
+ @property --tw-gradient-via-position {
3293
+ syntax: "<length-percentage>";
3294
+ inherits: false;
3295
+ initial-value: 50%;
3296
+ }
3297
+ @property --tw-gradient-to-position {
3298
+ syntax: "<length-percentage>";
3299
+ inherits: false;
3300
+ initial-value: 100%;
3301
+ }
3069
3302
  @property --tw-leading {
3070
3303
  syntax: "*";
3071
3304
  inherits: false;
@@ -3336,6 +3569,15 @@
3336
3569
  --tw-skew-y: initial;
3337
3570
  --tw-divide-x-reverse: 0;
3338
3571
  --tw-divide-y-reverse: 0;
3572
+ --tw-gradient-position: initial;
3573
+ --tw-gradient-from: #0000;
3574
+ --tw-gradient-via: #0000;
3575
+ --tw-gradient-to: #0000;
3576
+ --tw-gradient-stops: initial;
3577
+ --tw-gradient-via-stops: initial;
3578
+ --tw-gradient-from-position: 0%;
3579
+ --tw-gradient-via-position: 50%;
3580
+ --tw-gradient-to-position: 100%;
3339
3581
  --tw-leading: initial;
3340
3582
  --tw-font-weight: initial;
3341
3583
  --tw-shadow: 0 0 #0000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fumadocs/base-ui",
3
- "version": "16.7.2",
3
+ "version": "16.7.3",
4
4
  "description": "The Base UI version of Fumadocs UI",
5
5
  "keywords": [
6
6
  "Docs",
@@ -140,9 +140,9 @@
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
- "fumadocs-core": "16.7.2",
144
+ "eslint-config-custom": "0.0.0",
145
+ "fumadocs-core": "16.7.3",
146
146
  "tsconfig": "0.0.0"
147
147
  },
148
148
  "peerDependencies": {
@@ -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.2"
156
+ "fumadocs-core": "16.7.3"
157
157
  },
158
158
  "peerDependenciesMeta": {
159
159
  "shiki": {