fulldev-ui 0.11.1 → 0.13.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.
Files changed (166) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +29 -21
  3. package/public/r/accordion.json +2 -2
  4. package/public/r/alert-dialog.json +2 -2
  5. package/public/r/aspect-ratio.json +23 -0
  6. package/public/r/attachment.json +66 -0
  7. package/public/r/banner.json +0 -4
  8. package/public/r/blocks-1.json +1 -1
  9. package/public/r/button-group.json +41 -0
  10. package/public/r/button.json +1 -1
  11. package/public/r/carousel.json +8 -8
  12. package/public/r/collapsible.json +2 -2
  13. package/public/r/combobox.json +6 -5
  14. package/public/r/command.json +5 -4
  15. package/public/r/components.json +8 -0
  16. package/public/r/dialog.json +2 -2
  17. package/public/r/doc-1.json +1 -1
  18. package/public/r/drawer.json +109 -0
  19. package/public/r/dropdown-menu.json +4 -4
  20. package/public/r/hover-card.json +4 -4
  21. package/public/r/init.json +1 -1
  22. package/public/r/input-group.json +0 -1
  23. package/public/r/layout.json +3 -0
  24. package/public/r/navigation-menu.json +3 -3
  25. package/public/r/pagination.json +59 -0
  26. package/public/r/popover.json +3 -3
  27. package/public/r/radio-group.json +2 -2
  28. package/public/r/registry.json +418 -28
  29. package/public/r/resizable.json +36 -0
  30. package/public/r/reviews-3.json +1 -1
  31. package/public/r/select.json +3 -3
  32. package/public/r/sheet.json +2 -2
  33. package/public/r/sidebar-1.json +1 -1
  34. package/public/r/sidebar.json +1 -1
  35. package/public/r/slider.json +2 -2
  36. package/public/r/switch.json +2 -2
  37. package/public/r/tabs.json +4 -4
  38. package/public/r/toast.json +80 -0
  39. package/public/r/toggle-group.json +34 -0
  40. package/public/r/toggle.json +2 -2
  41. package/public/r/tooltip.json +3 -3
  42. package/public/r/typography.json +21 -16
  43. package/registry/init/global.css +2 -0
  44. package/registry.json +384 -23
  45. package/src/components/blocks/blocks-1.astro +23 -23
  46. package/src/components/blocks/doc-1.astro +116 -26
  47. package/src/components/blocks/reviews-3.astro +1 -1
  48. package/src/components/blocks/sidebar-1.astro +46 -44
  49. package/src/components/ui/accordion/accordion.astro +8 -2
  50. package/src/components/ui/alert-dialog/alert-dialog.astro +8 -2
  51. package/src/components/ui/aspect-ratio/aspect-ratio.astro +25 -0
  52. package/src/components/ui/aspect-ratio/index.ts +1 -0
  53. package/src/components/ui/attachment/attachment-action.astro +20 -0
  54. package/src/components/ui/attachment/attachment-actions.astro +20 -0
  55. package/src/components/ui/attachment/attachment-content.astro +20 -0
  56. package/src/components/ui/attachment/attachment-description.astro +20 -0
  57. package/src/components/ui/attachment/attachment-group.astro +20 -0
  58. package/src/components/ui/attachment/attachment-media.astro +36 -0
  59. package/src/components/ui/attachment/attachment-title.astro +20 -0
  60. package/src/components/ui/attachment/attachment-trigger.astro +24 -0
  61. package/src/components/ui/attachment/attachment.astro +52 -0
  62. package/src/components/ui/attachment/index.ts +9 -0
  63. package/src/components/ui/button/button.astro +4 -1
  64. package/src/components/ui/button-group/button-group-separator.astro +29 -0
  65. package/src/components/ui/button-group/button-group-text.astro +20 -0
  66. package/src/components/ui/button-group/button-group-variants.ts +20 -0
  67. package/src/components/ui/button-group/button-group.astro +30 -0
  68. package/src/components/ui/button-group/index.ts +7 -0
  69. package/src/components/ui/carousel/carousel-content.astro +11 -13
  70. package/src/components/ui/carousel/carousel-item.astro +2 -5
  71. package/src/components/ui/carousel/carousel-next.astro +0 -3
  72. package/src/components/ui/carousel/carousel-previous.astro +0 -3
  73. package/src/components/ui/carousel/carousel.astro +19 -219
  74. package/src/components/ui/carousel/index.ts +1 -5
  75. package/src/components/ui/collapsible/collapsible.astro +8 -2
  76. package/src/components/ui/combobox/combobox-content.astro +1 -1
  77. package/src/components/ui/combobox/combobox-input.astro +11 -4
  78. package/src/components/ui/combobox/combobox-trigger.astro +7 -7
  79. package/src/components/ui/combobox/combobox.astro +9 -17
  80. package/src/components/ui/command/command-dialog.astro +1 -0
  81. package/src/components/ui/command/command.astro +40 -25
  82. package/src/components/ui/dialog/dialog.astro +8 -2
  83. package/src/components/ui/drawer/drawer-close.astro +13 -0
  84. package/src/components/ui/drawer/drawer-content.astro +43 -0
  85. package/src/components/ui/drawer/drawer-description.astro +17 -0
  86. package/src/components/ui/drawer/drawer-footer.astro +17 -0
  87. package/src/components/ui/drawer/drawer-header.astro +17 -0
  88. package/src/components/ui/drawer/drawer-indent-background.astro +11 -0
  89. package/src/components/ui/drawer/drawer-indent.astro +11 -0
  90. package/src/components/ui/drawer/drawer-overlay.astro +21 -0
  91. package/src/components/ui/drawer/drawer-popup.astro +36 -0
  92. package/src/components/ui/drawer/drawer-portal.astro +27 -0
  93. package/src/components/ui/drawer/drawer-provider.astro +11 -0
  94. package/src/components/ui/drawer/drawer-swipe-handle.astro +20 -0
  95. package/src/components/ui/drawer/drawer-title.astro +17 -0
  96. package/src/components/ui/drawer/drawer-trigger.astro +21 -0
  97. package/src/components/ui/drawer/drawer-viewport.astro +21 -0
  98. package/src/components/ui/drawer/drawer-virtual-keyboard-provider.astro +11 -0
  99. package/src/components/ui/drawer/drawer.astro +60 -0
  100. package/src/components/ui/drawer/index.ts +28 -0
  101. package/src/components/ui/dropdown-menu/dropdown-menu-content.astro +1 -1
  102. package/src/components/ui/dropdown-menu/dropdown-menu-item.astro +40 -9
  103. package/src/components/ui/dropdown-menu/dropdown-menu.astro +8 -2
  104. package/src/components/ui/hover-card/hover-card-content.astro +1 -1
  105. package/src/components/ui/hover-card/hover-card.astro +15 -4
  106. package/src/components/ui/navigation-menu/navigation-menu-positioner.astro +1 -1
  107. package/src/components/ui/navigation-menu/navigation-menu.astro +13 -4
  108. package/src/components/ui/pagination/index.ts +7 -0
  109. package/src/components/ui/pagination/pagination-content.astro +17 -0
  110. package/src/components/ui/pagination/pagination-ellipsis.astro +22 -0
  111. package/src/components/ui/pagination/pagination-item.astro +11 -0
  112. package/src/components/ui/pagination/pagination-link.astro +41 -0
  113. package/src/components/ui/pagination/pagination-next.astro +27 -0
  114. package/src/components/ui/pagination/pagination-previous.astro +27 -0
  115. package/src/components/ui/pagination/pagination.astro +19 -0
  116. package/src/components/ui/popover/popover-content.astro +2 -1
  117. package/src/components/ui/popover/popover.astro +9 -2
  118. package/src/components/ui/radio-group/radio-group.astro +8 -2
  119. package/src/components/ui/resizable/index.ts +4 -0
  120. package/src/components/ui/resizable/resizable-handle.astro +32 -0
  121. package/src/components/ui/resizable/resizable-panel.astro +36 -0
  122. package/src/components/ui/resizable/resizable.astro +43 -0
  123. package/src/components/ui/select/select-content.astro +2 -2
  124. package/src/components/ui/select/select.astro +11 -7
  125. package/src/components/ui/sheet/sheet.astro +8 -2
  126. package/src/components/ui/slider/slider.astro +9 -3
  127. package/src/components/ui/switch/switch.astro +8 -2
  128. package/src/components/ui/tabs/tabs-content.astro +1 -1
  129. package/src/components/ui/tabs/tabs-trigger.astro +3 -2
  130. package/src/components/ui/tabs/tabs.astro +8 -2
  131. package/src/components/ui/toast/index.ts +26 -0
  132. package/src/components/ui/toast/toast-action.astro +25 -0
  133. package/src/components/ui/toast/toast-close.astro +27 -0
  134. package/src/components/ui/toast/toast-content.astro +20 -0
  135. package/src/components/ui/toast/toast-description.astro +18 -0
  136. package/src/components/ui/toast/toast-icon.astro +37 -0
  137. package/src/components/ui/toast/toast-item.astro +28 -0
  138. package/src/components/ui/toast/toast-template.astro +11 -0
  139. package/src/components/ui/toast/toast-title.astro +17 -0
  140. package/src/components/ui/toast/toast-viewport.astro +20 -0
  141. package/src/components/ui/toast/toast.astro +51 -0
  142. package/src/components/ui/toast/toaster.astro +37 -0
  143. package/src/components/ui/toggle/toggle.astro +8 -2
  144. package/src/components/ui/toggle-group/index.ts +2 -0
  145. package/src/components/ui/toggle-group/toggle-group-item.astro +44 -0
  146. package/src/components/ui/toggle-group/toggle-group.astro +74 -0
  147. package/src/components/ui/tooltip/tooltip-content.astro +1 -1
  148. package/src/components/ui/tooltip/tooltip.astro +11 -2
  149. package/src/components/ui/typography/typeset.css +441 -0
  150. package/src/components/ui/typography/typography-a.astro +13 -22
  151. package/src/components/ui/typography/typography-blockquote.astro +4 -23
  152. package/src/components/ui/typography/typography-h1.astro +13 -26
  153. package/src/components/ui/typography/typography-h2.astro +13 -31
  154. package/src/components/ui/typography/typography-h3.astro +9 -26
  155. package/src/components/ui/typography/typography-h4.astro +9 -26
  156. package/src/components/ui/typography/typography-inline-code.astro +8 -27
  157. package/src/components/ui/typography/typography-lead.astro +4 -26
  158. package/src/components/ui/typography/typography-list-item.astro +4 -24
  159. package/src/components/ui/typography/typography-list.astro +10 -40
  160. package/src/components/ui/typography/typography-p.astro +9 -28
  161. package/src/components/ui/typography/typography-table-cell.astro +9 -40
  162. package/src/components/ui/typography/typography-table-head.astro +9 -35
  163. package/src/components/ui/typography/typography-table-row.astro +4 -23
  164. package/src/components/ui/typography/typography-table.astro +8 -28
  165. package/src/components/ui/typography/typography.astro +10 -283
  166. package/src/styles/global.css +2 -0
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "docs": "https://ui.full.dev/components/accordion/",
15
15
  "dependencies": [
16
- "@data-slot/accordion",
16
+ "@data-slot/accordion@^1.0.2",
17
17
  "@lucide/astro"
18
18
  ],
19
19
  "files": [
@@ -77,7 +77,7 @@
77
77
  ],
78
78
  "docs": "https://ui.full.dev/components/alert-dialog/",
79
79
  "dependencies": [
80
- "@data-slot/alert-dialog"
80
+ "@data-slot/alert-dialog@^1.0.2"
81
81
  ],
82
82
  "registryDependencies": [
83
83
  "@fulldev/button"
@@ -201,10 +201,6 @@
201
201
  "dependencies": [
202
202
  "@lucide/astro"
203
203
  ],
204
- "registryDependencies": [
205
- "@fulldev/button",
206
- "@fulldev/dropdown-menu"
207
- ],
208
204
  "files": [
209
205
  {
210
206
  "path": "src/components/ui/banner/banner.astro",
@@ -365,7 +361,7 @@
365
361
  ],
366
362
  "docs": "https://ui.full.dev/components/collapsible/",
367
363
  "dependencies": [
368
- "@data-slot/collapsible"
364
+ "@data-slot/collapsible@^1.0.2"
369
365
  ],
370
366
  "files": [
371
367
  {
@@ -396,7 +392,8 @@
396
392
  ],
397
393
  "docs": "https://ui.full.dev/components/combobox/",
398
394
  "dependencies": [
399
- "@data-slot/combobox",
395
+ "@data-slot/combobox@^1.0.2",
396
+ "@data-slot/core@^1.0.2",
400
397
  "@lucide/astro"
401
398
  ],
402
399
  "registryDependencies": [
@@ -463,8 +460,9 @@
463
460
  ],
464
461
  "docs": "https://ui.full.dev/components/command/",
465
462
  "dependencies": [
466
- "@data-slot/command",
467
- "@lucide/astro"
463
+ "@data-slot/command@^1.0.2",
464
+ "@lucide/astro",
465
+ "@data-slot/core@^1.0.2"
468
466
  ],
469
467
  "registryDependencies": [
470
468
  "@fulldev/dialog"
@@ -522,7 +520,7 @@
522
520
  ],
523
521
  "docs": "https://ui.full.dev/components/dialog/",
524
522
  "dependencies": [
525
- "@data-slot/dialog",
523
+ "@data-slot/dialog@^1.0.2",
526
524
  "@lucide/astro"
527
525
  ],
528
526
  "registryDependencies": [
@@ -585,7 +583,7 @@
585
583
  ],
586
584
  "docs": "https://ui.full.dev/components/dropdown-menu/",
587
585
  "dependencies": [
588
- "@data-slot/dropdown-menu",
586
+ "@data-slot/dropdown-menu@^1.0.2",
589
587
  "@lucide/astro"
590
588
  ],
591
589
  "files": [
@@ -800,8 +798,8 @@
800
798
  ],
801
799
  "docs": "https://ui.full.dev/components/hover-card/",
802
800
  "dependencies": [
803
- "@data-slot/hover-card",
804
- "@data-slot/core"
801
+ "@data-slot/hover-card@^1.0.2",
802
+ "@data-slot/core@^1.0.2"
805
803
  ],
806
804
  "files": [
807
805
  {
@@ -877,7 +875,6 @@
877
875
  "docs": "https://ui.full.dev/components/input-group/",
878
876
  "registryDependencies": [
879
877
  "@fulldev/button",
880
- "@fulldev/dropdown-menu",
881
878
  "@fulldev/input",
882
879
  "@fulldev/textarea"
883
880
  ],
@@ -1082,13 +1079,13 @@
1082
1079
  "name": "carousel",
1083
1080
  "type": "registry:ui",
1084
1081
  "title": "Carousel",
1085
- "description": "A carousel with motion and swipe built using Embla.",
1082
+ "description": "An accessible carousel built on native scrolling with Data Slot.",
1086
1083
  "categories": [
1087
1084
  "ui"
1088
1085
  ],
1089
1086
  "docs": "https://ui.full.dev/components/carousel/",
1090
1087
  "dependencies": [
1091
- "embla-carousel",
1088
+ "@data-slot/carousel@^1.0.2",
1092
1089
  "@lucide/astro"
1093
1090
  ],
1094
1091
  "registryDependencies": [
@@ -1131,7 +1128,7 @@
1131
1128
  ],
1132
1129
  "docs": "https://ui.full.dev/components/navigation-menu/",
1133
1130
  "dependencies": [
1134
- "@data-slot/navigation-menu",
1131
+ "@data-slot/navigation-menu@^1.0.2",
1135
1132
  "@lucide/astro"
1136
1133
  ],
1137
1134
  "files": [
@@ -1218,7 +1215,7 @@
1218
1215
  ],
1219
1216
  "docs": "https://ui.full.dev/components/popover/",
1220
1217
  "dependencies": [
1221
- "@data-slot/popover"
1218
+ "@data-slot/popover@^1.0.2"
1222
1219
  ],
1223
1220
  "files": [
1224
1221
  {
@@ -1293,7 +1290,7 @@
1293
1290
  ],
1294
1291
  "docs": "https://ui.full.dev/components/radio-group/",
1295
1292
  "dependencies": [
1296
- "@data-slot/radio-group"
1293
+ "@data-slot/radio-group@^1.0.2"
1297
1294
  ],
1298
1295
  "files": [
1299
1296
  {
@@ -1343,7 +1340,7 @@
1343
1340
  ],
1344
1341
  "docs": "https://ui.full.dev/components/select/",
1345
1342
  "dependencies": [
1346
- "@data-slot/select",
1343
+ "@data-slot/select@^1.0.2",
1347
1344
  "@lucide/astro"
1348
1345
  ],
1349
1346
  "files": [
@@ -1447,7 +1444,7 @@
1447
1444
  ],
1448
1445
  "docs": "https://ui.full.dev/components/sheet/",
1449
1446
  "dependencies": [
1450
- "@data-slot/dialog",
1447
+ "@data-slot/dialog@^1.0.2",
1451
1448
  "@lucide/astro"
1452
1449
  ],
1453
1450
  "registryDependencies": [
@@ -1503,7 +1500,7 @@
1503
1500
  ],
1504
1501
  "docs": "https://ui.full.dev/components/sidebar/",
1505
1502
  "dependencies": [
1506
- "@data-slot/tooltip",
1503
+ "@data-slot/tooltip@^1.0.2",
1507
1504
  "@lucide/astro"
1508
1505
  ],
1509
1506
  "registryDependencies": [
@@ -1624,7 +1621,7 @@
1624
1621
  ],
1625
1622
  "docs": "https://ui.full.dev/components/slider/",
1626
1623
  "dependencies": [
1627
- "@data-slot/slider"
1624
+ "@data-slot/slider@^1.0.2"
1628
1625
  ],
1629
1626
  "files": [
1630
1627
  {
@@ -1690,7 +1687,7 @@
1690
1687
  ],
1691
1688
  "docs": "https://ui.full.dev/components/switch/",
1692
1689
  "dependencies": [
1693
- "@data-slot/switch"
1690
+ "@data-slot/switch@^1.0.2"
1694
1691
  ],
1695
1692
  "files": [
1696
1693
  {
@@ -1761,7 +1758,7 @@
1761
1758
  ],
1762
1759
  "docs": "https://ui.full.dev/components/tabs/",
1763
1760
  "dependencies": [
1764
- "@data-slot/tabs"
1761
+ "@data-slot/tabs@^1.0.2"
1765
1762
  ],
1766
1763
  "files": [
1767
1764
  {
@@ -1836,7 +1833,7 @@
1836
1833
  ],
1837
1834
  "docs": "https://ui.full.dev/components/toggle/",
1838
1835
  "dependencies": [
1839
- "@data-slot/toggle"
1836
+ "@data-slot/toggle@^1.0.2"
1840
1837
  ],
1841
1838
  "files": [
1842
1839
  {
@@ -1883,7 +1880,7 @@
1883
1880
  ],
1884
1881
  "docs": "https://ui.full.dev/components/tooltip/",
1885
1882
  "dependencies": [
1886
- "@data-slot/tooltip"
1883
+ "@data-slot/tooltip@^1.0.2"
1887
1884
  ],
1888
1885
  "files": [
1889
1886
  {
@@ -1981,6 +1978,10 @@
1981
1978
  {
1982
1979
  "path": "src/components/ui/typography/index.ts",
1983
1980
  "type": "registry:ui"
1981
+ },
1982
+ {
1983
+ "path": "src/components/ui/typography/typeset.css",
1984
+ "type": "registry:ui"
1984
1985
  }
1985
1986
  ]
1986
1987
  },
@@ -2004,6 +2005,384 @@
2004
2005
  }
2005
2006
  ]
2006
2007
  },
2008
+ {
2009
+ "name": "drawer",
2010
+ "type": "registry:ui",
2011
+ "title": "Drawer",
2012
+ "description": "A swipeable panel that opens from an edge of the screen.",
2013
+ "categories": [
2014
+ "ui"
2015
+ ],
2016
+ "docs": "https://ui.full.dev/components/drawer/",
2017
+ "dependencies": [
2018
+ "@data-slot/drawer@^1.0.2"
2019
+ ],
2020
+ "registryDependencies": [
2021
+ "@fulldev/button"
2022
+ ],
2023
+ "files": [
2024
+ {
2025
+ "path": "src/components/ui/drawer/drawer-close.astro",
2026
+ "type": "registry:ui"
2027
+ },
2028
+ {
2029
+ "path": "src/components/ui/drawer/drawer-content.astro",
2030
+ "type": "registry:ui"
2031
+ },
2032
+ {
2033
+ "path": "src/components/ui/drawer/drawer-description.astro",
2034
+ "type": "registry:ui"
2035
+ },
2036
+ {
2037
+ "path": "src/components/ui/drawer/drawer-footer.astro",
2038
+ "type": "registry:ui"
2039
+ },
2040
+ {
2041
+ "path": "src/components/ui/drawer/drawer-header.astro",
2042
+ "type": "registry:ui"
2043
+ },
2044
+ {
2045
+ "path": "src/components/ui/drawer/drawer-indent-background.astro",
2046
+ "type": "registry:ui"
2047
+ },
2048
+ {
2049
+ "path": "src/components/ui/drawer/drawer-indent.astro",
2050
+ "type": "registry:ui"
2051
+ },
2052
+ {
2053
+ "path": "src/components/ui/drawer/drawer-overlay.astro",
2054
+ "type": "registry:ui"
2055
+ },
2056
+ {
2057
+ "path": "src/components/ui/drawer/drawer-popup.astro",
2058
+ "type": "registry:ui"
2059
+ },
2060
+ {
2061
+ "path": "src/components/ui/drawer/drawer-portal.astro",
2062
+ "type": "registry:ui"
2063
+ },
2064
+ {
2065
+ "path": "src/components/ui/drawer/drawer-provider.astro",
2066
+ "type": "registry:ui"
2067
+ },
2068
+ {
2069
+ "path": "src/components/ui/drawer/drawer-swipe-handle.astro",
2070
+ "type": "registry:ui"
2071
+ },
2072
+ {
2073
+ "path": "src/components/ui/drawer/drawer-title.astro",
2074
+ "type": "registry:ui"
2075
+ },
2076
+ {
2077
+ "path": "src/components/ui/drawer/drawer-trigger.astro",
2078
+ "type": "registry:ui"
2079
+ },
2080
+ {
2081
+ "path": "src/components/ui/drawer/drawer-viewport.astro",
2082
+ "type": "registry:ui"
2083
+ },
2084
+ {
2085
+ "path": "src/components/ui/drawer/drawer-virtual-keyboard-provider.astro",
2086
+ "type": "registry:ui"
2087
+ },
2088
+ {
2089
+ "path": "src/components/ui/drawer/drawer.astro",
2090
+ "type": "registry:ui"
2091
+ },
2092
+ {
2093
+ "path": "src/components/ui/drawer/index.ts",
2094
+ "type": "registry:ui"
2095
+ }
2096
+ ]
2097
+ },
2098
+ {
2099
+ "name": "resizable",
2100
+ "type": "registry:ui",
2101
+ "title": "Resizable",
2102
+ "description": "Accessible panel groups with pointer and keyboard resizing.",
2103
+ "categories": [
2104
+ "ui"
2105
+ ],
2106
+ "docs": "https://ui.full.dev/components/resizable/",
2107
+ "dependencies": [
2108
+ "@data-slot/resizable@^1.0.2"
2109
+ ],
2110
+ "files": [
2111
+ {
2112
+ "path": "src/components/ui/resizable/index.ts",
2113
+ "type": "registry:ui"
2114
+ },
2115
+ {
2116
+ "path": "src/components/ui/resizable/resizable-handle.astro",
2117
+ "type": "registry:ui"
2118
+ },
2119
+ {
2120
+ "path": "src/components/ui/resizable/resizable-panel.astro",
2121
+ "type": "registry:ui"
2122
+ },
2123
+ {
2124
+ "path": "src/components/ui/resizable/resizable.astro",
2125
+ "type": "registry:ui"
2126
+ }
2127
+ ]
2128
+ },
2129
+ {
2130
+ "name": "toast",
2131
+ "type": "registry:ui",
2132
+ "title": "Toast",
2133
+ "description": "A brief notification that appears without interrupting the user.",
2134
+ "categories": [
2135
+ "ui"
2136
+ ],
2137
+ "docs": "https://ui.full.dev/components/toast/",
2138
+ "dependencies": [
2139
+ "@data-slot/toast@^1.0.2",
2140
+ "@lucide/astro"
2141
+ ],
2142
+ "registryDependencies": [
2143
+ "@fulldev/button"
2144
+ ],
2145
+ "files": [
2146
+ {
2147
+ "path": "src/components/ui/toast/index.ts",
2148
+ "type": "registry:ui"
2149
+ },
2150
+ {
2151
+ "path": "src/components/ui/toast/toast-action.astro",
2152
+ "type": "registry:ui"
2153
+ },
2154
+ {
2155
+ "path": "src/components/ui/toast/toast-close.astro",
2156
+ "type": "registry:ui"
2157
+ },
2158
+ {
2159
+ "path": "src/components/ui/toast/toast-content.astro",
2160
+ "type": "registry:ui"
2161
+ },
2162
+ {
2163
+ "path": "src/components/ui/toast/toast-description.astro",
2164
+ "type": "registry:ui"
2165
+ },
2166
+ {
2167
+ "path": "src/components/ui/toast/toast-icon.astro",
2168
+ "type": "registry:ui"
2169
+ },
2170
+ {
2171
+ "path": "src/components/ui/toast/toast-item.astro",
2172
+ "type": "registry:ui"
2173
+ },
2174
+ {
2175
+ "path": "src/components/ui/toast/toast-template.astro",
2176
+ "type": "registry:ui"
2177
+ },
2178
+ {
2179
+ "path": "src/components/ui/toast/toast-title.astro",
2180
+ "type": "registry:ui"
2181
+ },
2182
+ {
2183
+ "path": "src/components/ui/toast/toast-viewport.astro",
2184
+ "type": "registry:ui"
2185
+ },
2186
+ {
2187
+ "path": "src/components/ui/toast/toast.astro",
2188
+ "type": "registry:ui"
2189
+ },
2190
+ {
2191
+ "path": "src/components/ui/toast/toaster.astro",
2192
+ "type": "registry:ui"
2193
+ }
2194
+ ]
2195
+ },
2196
+ {
2197
+ "name": "toggle-group",
2198
+ "type": "registry:ui",
2199
+ "title": "Toggle Group",
2200
+ "description": "A set of two-state buttons that can be toggled independently or as a single choice.",
2201
+ "categories": [
2202
+ "ui"
2203
+ ],
2204
+ "docs": "https://ui.full.dev/components/toggle-group/",
2205
+ "dependencies": [
2206
+ "@data-slot/toggle-group@^1.0.2"
2207
+ ],
2208
+ "registryDependencies": [
2209
+ "@fulldev/toggle"
2210
+ ],
2211
+ "files": [
2212
+ {
2213
+ "path": "src/components/ui/toggle-group/index.ts",
2214
+ "type": "registry:ui"
2215
+ },
2216
+ {
2217
+ "path": "src/components/ui/toggle-group/toggle-group-item.astro",
2218
+ "type": "registry:ui"
2219
+ },
2220
+ {
2221
+ "path": "src/components/ui/toggle-group/toggle-group.astro",
2222
+ "type": "registry:ui"
2223
+ }
2224
+ ]
2225
+ },
2226
+ {
2227
+ "name": "attachment",
2228
+ "type": "registry:ui",
2229
+ "title": "Attachment",
2230
+ "description": "Displays a file or image attachment with media, metadata, state, and actions.",
2231
+ "categories": [
2232
+ "ui"
2233
+ ],
2234
+ "docs": "https://ui.full.dev/components/attachment/",
2235
+ "registryDependencies": [
2236
+ "@fulldev/button"
2237
+ ],
2238
+ "files": [
2239
+ {
2240
+ "path": "src/components/ui/attachment/attachment-action.astro",
2241
+ "type": "registry:ui"
2242
+ },
2243
+ {
2244
+ "path": "src/components/ui/attachment/attachment-actions.astro",
2245
+ "type": "registry:ui"
2246
+ },
2247
+ {
2248
+ "path": "src/components/ui/attachment/attachment-content.astro",
2249
+ "type": "registry:ui"
2250
+ },
2251
+ {
2252
+ "path": "src/components/ui/attachment/attachment-description.astro",
2253
+ "type": "registry:ui"
2254
+ },
2255
+ {
2256
+ "path": "src/components/ui/attachment/attachment-group.astro",
2257
+ "type": "registry:ui"
2258
+ },
2259
+ {
2260
+ "path": "src/components/ui/attachment/attachment-media.astro",
2261
+ "type": "registry:ui"
2262
+ },
2263
+ {
2264
+ "path": "src/components/ui/attachment/attachment-title.astro",
2265
+ "type": "registry:ui"
2266
+ },
2267
+ {
2268
+ "path": "src/components/ui/attachment/attachment-trigger.astro",
2269
+ "type": "registry:ui"
2270
+ },
2271
+ {
2272
+ "path": "src/components/ui/attachment/attachment.astro",
2273
+ "type": "registry:ui"
2274
+ },
2275
+ {
2276
+ "path": "src/components/ui/attachment/index.ts",
2277
+ "type": "registry:ui"
2278
+ }
2279
+ ]
2280
+ },
2281
+ {
2282
+ "name": "button-group",
2283
+ "type": "registry:ui",
2284
+ "title": "Button Group",
2285
+ "description": "Groups related controls with connected edges and consistent focus behavior.",
2286
+ "categories": [
2287
+ "ui"
2288
+ ],
2289
+ "docs": "https://ui.full.dev/components/button-group/",
2290
+ "registryDependencies": [
2291
+ "@fulldev/separator"
2292
+ ],
2293
+ "files": [
2294
+ {
2295
+ "path": "src/components/ui/button-group/button-group-separator.astro",
2296
+ "type": "registry:ui"
2297
+ },
2298
+ {
2299
+ "path": "src/components/ui/button-group/button-group-text.astro",
2300
+ "type": "registry:ui"
2301
+ },
2302
+ {
2303
+ "path": "src/components/ui/button-group/button-group-variants.ts",
2304
+ "type": "registry:ui"
2305
+ },
2306
+ {
2307
+ "path": "src/components/ui/button-group/button-group.astro",
2308
+ "type": "registry:ui"
2309
+ },
2310
+ {
2311
+ "path": "src/components/ui/button-group/index.ts",
2312
+ "type": "registry:ui"
2313
+ }
2314
+ ]
2315
+ },
2316
+ {
2317
+ "name": "pagination",
2318
+ "type": "registry:ui",
2319
+ "title": "Pagination",
2320
+ "description": "Page navigation with previous, next, numbered, and overflow links.",
2321
+ "categories": [
2322
+ "ui"
2323
+ ],
2324
+ "docs": "https://ui.full.dev/components/pagination/",
2325
+ "dependencies": [
2326
+ "@lucide/astro"
2327
+ ],
2328
+ "registryDependencies": [
2329
+ "@fulldev/button"
2330
+ ],
2331
+ "files": [
2332
+ {
2333
+ "path": "src/components/ui/pagination/index.ts",
2334
+ "type": "registry:ui"
2335
+ },
2336
+ {
2337
+ "path": "src/components/ui/pagination/pagination-content.astro",
2338
+ "type": "registry:ui"
2339
+ },
2340
+ {
2341
+ "path": "src/components/ui/pagination/pagination-ellipsis.astro",
2342
+ "type": "registry:ui"
2343
+ },
2344
+ {
2345
+ "path": "src/components/ui/pagination/pagination-item.astro",
2346
+ "type": "registry:ui"
2347
+ },
2348
+ {
2349
+ "path": "src/components/ui/pagination/pagination-link.astro",
2350
+ "type": "registry:ui"
2351
+ },
2352
+ {
2353
+ "path": "src/components/ui/pagination/pagination-next.astro",
2354
+ "type": "registry:ui"
2355
+ },
2356
+ {
2357
+ "path": "src/components/ui/pagination/pagination-previous.astro",
2358
+ "type": "registry:ui"
2359
+ },
2360
+ {
2361
+ "path": "src/components/ui/pagination/pagination.astro",
2362
+ "type": "registry:ui"
2363
+ }
2364
+ ]
2365
+ },
2366
+ {
2367
+ "name": "aspect-ratio",
2368
+ "type": "registry:ui",
2369
+ "title": "Aspect Ratio",
2370
+ "description": "Displays content within a desired ratio.",
2371
+ "categories": [
2372
+ "ui"
2373
+ ],
2374
+ "docs": "https://ui.full.dev/components/aspect-ratio/",
2375
+ "files": [
2376
+ {
2377
+ "path": "src/components/ui/aspect-ratio/aspect-ratio.astro",
2378
+ "type": "registry:ui"
2379
+ },
2380
+ {
2381
+ "path": "src/components/ui/aspect-ratio/index.ts",
2382
+ "type": "registry:ui"
2383
+ }
2384
+ ]
2385
+ },
2007
2386
  {
2008
2387
  "name": "components",
2009
2388
  "type": "registry:item",
@@ -2014,11 +2393,14 @@
2014
2393
  "@fulldev/accordion",
2015
2394
  "@fulldev/alert",
2016
2395
  "@fulldev/alert-dialog",
2396
+ "@fulldev/aspect-ratio",
2397
+ "@fulldev/attachment",
2017
2398
  "@fulldev/avatar",
2018
2399
  "@fulldev/badge",
2019
2400
  "@fulldev/banner",
2020
2401
  "@fulldev/breadcrumb",
2021
2402
  "@fulldev/button",
2403
+ "@fulldev/button-group",
2022
2404
  "@fulldev/card",
2023
2405
  "@fulldev/carousel",
2024
2406
  "@fulldev/checkbox",
@@ -2026,6 +2408,7 @@
2026
2408
  "@fulldev/combobox",
2027
2409
  "@fulldev/command",
2028
2410
  "@fulldev/dialog",
2411
+ "@fulldev/drawer",
2029
2412
  "@fulldev/dropdown-menu",
2030
2413
  "@fulldev/empty",
2031
2414
  "@fulldev/field",
@@ -2043,10 +2426,12 @@
2043
2426
  "@fulldev/marquee",
2044
2427
  "@fulldev/native-select",
2045
2428
  "@fulldev/navigation-menu",
2429
+ "@fulldev/pagination",
2046
2430
  "@fulldev/popover",
2047
2431
  "@fulldev/price",
2048
2432
  "@fulldev/radio-group",
2049
2433
  "@fulldev/rating",
2434
+ "@fulldev/resizable",
2050
2435
  "@fulldev/section",
2051
2436
  "@fulldev/select",
2052
2437
  "@fulldev/separator",
@@ -2060,8 +2445,10 @@
2060
2445
  "@fulldev/tabs",
2061
2446
  "@fulldev/textarea",
2062
2447
  "@fulldev/theme-toggle",
2448
+ "@fulldev/toast",
2063
2449
  "@fulldev/toc",
2064
2450
  "@fulldev/toggle",
2451
+ "@fulldev/toggle-group",
2065
2452
  "@fulldev/tooltip",
2066
2453
  "@fulldev/typography",
2067
2454
  "@fulldev/video"
@@ -2076,6 +2463,9 @@
2076
2463
  "ui"
2077
2464
  ],
2078
2465
  "docs": "https://ui.full.dev/components/layout/",
2466
+ "dependencies": [
2467
+ "@lexingtonthemes/seo@^0.2.0"
2468
+ ],
2079
2469
  "files": [
2080
2470
  {
2081
2471
  "path": "src/components/ui/layout/layout.astro",