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
package/registry.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "description": "A vertically stacked set of interactive headings that each reveal a section of content.",
11
11
  "categories": ["ui"],
12
12
  "docs": "https://ui.full.dev/components/accordion/",
13
- "dependencies": ["@data-slot/accordion", "@lucide/astro"],
13
+ "dependencies": ["@data-slot/accordion@^1.0.2", "@lucide/astro"],
14
14
  "files": [
15
15
  {
16
16
  "path": "src/components/ui/accordion/accordion.astro",
@@ -67,7 +67,7 @@
67
67
  "description": "A modal dialog for important confirmations that expects a response.",
68
68
  "categories": ["ui"],
69
69
  "docs": "https://ui.full.dev/components/alert-dialog/",
70
- "dependencies": ["@data-slot/alert-dialog"],
70
+ "dependencies": ["@data-slot/alert-dialog@^1.0.2"],
71
71
  "registryDependencies": ["@fulldev/button"],
72
72
  "files": [
73
73
  {
@@ -180,7 +180,6 @@
180
180
  "categories": ["ui"],
181
181
  "docs": "https://ui.full.dev/components/banner/",
182
182
  "dependencies": ["@lucide/astro"],
183
- "registryDependencies": ["@fulldev/button", "@fulldev/dropdown-menu"],
184
183
  "files": [
185
184
  {
186
185
  "path": "src/components/ui/banner/banner.astro",
@@ -328,7 +327,7 @@
328
327
  "description": "An interactive component which expands/collapses a panel.",
329
328
  "categories": ["ui"],
330
329
  "docs": "https://ui.full.dev/components/collapsible/",
331
- "dependencies": ["@data-slot/collapsible"],
330
+ "dependencies": ["@data-slot/collapsible@^1.0.2"],
332
331
  "files": [
333
332
  {
334
333
  "path": "src/components/ui/collapsible/collapsible.astro",
@@ -355,7 +354,11 @@
355
354
  "description": "Autocomplete input with a list of suggestions.",
356
355
  "categories": ["ui"],
357
356
  "docs": "https://ui.full.dev/components/combobox/",
358
- "dependencies": ["@data-slot/combobox", "@lucide/astro"],
357
+ "dependencies": [
358
+ "@data-slot/combobox@^1.0.2",
359
+ "@data-slot/core@^1.0.2",
360
+ "@lucide/astro"
361
+ ],
359
362
  "registryDependencies": ["@fulldev/input-group"],
360
363
  "files": [
361
364
  {
@@ -415,7 +418,11 @@
415
418
  "description": "Command menu for search and quick actions.",
416
419
  "categories": ["ui"],
417
420
  "docs": "https://ui.full.dev/components/command/",
418
- "dependencies": ["@data-slot/command", "@lucide/astro"],
421
+ "dependencies": [
422
+ "@data-slot/command@^1.0.2",
423
+ "@lucide/astro",
424
+ "@data-slot/core@^1.0.2"
425
+ ],
419
426
  "registryDependencies": ["@fulldev/dialog"],
420
427
  "files": [
421
428
  {
@@ -467,7 +474,7 @@
467
474
  "description": "A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.",
468
475
  "categories": ["ui"],
469
476
  "docs": "https://ui.full.dev/components/dialog/",
470
- "dependencies": ["@data-slot/dialog", "@lucide/astro"],
477
+ "dependencies": ["@data-slot/dialog@^1.0.2", "@lucide/astro"],
471
478
  "registryDependencies": ["@fulldev/button"],
472
479
  "files": [
473
480
  {
@@ -523,7 +530,7 @@
523
530
  "description": "Displays a menu to the user, such as a set of actions or functions, triggered by a button.",
524
531
  "categories": ["ui"],
525
532
  "docs": "https://ui.full.dev/components/dropdown-menu/",
526
- "dependencies": ["@data-slot/dropdown-menu", "@lucide/astro"],
533
+ "dependencies": ["@data-slot/dropdown-menu@^1.0.2", "@lucide/astro"],
527
534
  "files": [
528
535
  {
529
536
  "path": "src/components/ui/dropdown-menu/dropdown-menu.astro",
@@ -717,7 +724,10 @@
717
724
  "description": "For sighted users to preview content available behind a link.",
718
725
  "categories": ["ui"],
719
726
  "docs": "https://ui.full.dev/components/hover-card/",
720
- "dependencies": ["@data-slot/hover-card", "@data-slot/core"],
727
+ "dependencies": [
728
+ "@data-slot/hover-card@^1.0.2",
729
+ "@data-slot/core@^1.0.2"
730
+ ],
721
731
  "files": [
722
732
  {
723
733
  "path": "src/components/ui/hover-card/hover-card.astro",
@@ -783,7 +793,6 @@
783
793
  "docs": "https://ui.full.dev/components/input-group/",
784
794
  "registryDependencies": [
785
795
  "@fulldev/button",
786
- "@fulldev/dropdown-menu",
787
796
  "@fulldev/input",
788
797
  "@fulldev/textarea"
789
798
  ],
@@ -972,10 +981,10 @@
972
981
  "name": "carousel",
973
982
  "type": "registry:ui",
974
983
  "title": "Carousel",
975
- "description": "A carousel with motion and swipe built using Embla.",
984
+ "description": "An accessible carousel built on native scrolling with Data Slot.",
976
985
  "categories": ["ui"],
977
986
  "docs": "https://ui.full.dev/components/carousel/",
978
- "dependencies": ["embla-carousel", "@lucide/astro"],
987
+ "dependencies": ["@data-slot/carousel@^1.0.2", "@lucide/astro"],
979
988
  "registryDependencies": ["@fulldev/button"],
980
989
  "files": [
981
990
  {
@@ -1011,7 +1020,7 @@
1011
1020
  "description": "A collection of links for navigating websites.",
1012
1021
  "categories": ["ui"],
1013
1022
  "docs": "https://ui.full.dev/components/navigation-menu/",
1014
- "dependencies": ["@data-slot/navigation-menu", "@lucide/astro"],
1023
+ "dependencies": ["@data-slot/navigation-menu@^1.0.2", "@lucide/astro"],
1015
1024
  "files": [
1016
1025
  {
1017
1026
  "path": "src/components/ui/navigation-menu/navigation-menu.astro",
@@ -1089,7 +1098,7 @@
1089
1098
  "description": "Displays rich content in a floating layer, triggered by a button.",
1090
1099
  "categories": ["ui"],
1091
1100
  "docs": "https://ui.full.dev/components/popover/",
1092
- "dependencies": ["@data-slot/popover"],
1101
+ "dependencies": ["@data-slot/popover@^1.0.2"],
1093
1102
  "files": [
1094
1103
  {
1095
1104
  "path": "src/components/ui/popover/popover.astro",
@@ -1158,7 +1167,7 @@
1158
1167
  "description": "A set of checkable buttons, known as radio buttons, where no more than one of the buttons can be checked at a time.",
1159
1168
  "categories": ["ui"],
1160
1169
  "docs": "https://ui.full.dev/components/radio-group/",
1161
- "dependencies": ["@data-slot/radio-group"],
1170
+ "dependencies": ["@data-slot/radio-group@^1.0.2"],
1162
1171
  "files": [
1163
1172
  {
1164
1173
  "path": "src/components/ui/radio-group/radio-group.astro",
@@ -1200,7 +1209,7 @@
1200
1209
  "description": "Displays a list of options for the user to pick from, triggered by a button.",
1201
1210
  "categories": ["ui"],
1202
1211
  "docs": "https://ui.full.dev/components/select/",
1203
- "dependencies": ["@data-slot/select", "@lucide/astro"],
1212
+ "dependencies": ["@data-slot/select@^1.0.2", "@lucide/astro"],
1204
1213
  "files": [
1205
1214
  {
1206
1215
  "path": "src/components/ui/select/select.astro",
@@ -1295,7 +1304,7 @@
1295
1304
  "description": "A sliding panel component that appears from the edge of the screen.",
1296
1305
  "categories": ["ui"],
1297
1306
  "docs": "https://ui.full.dev/components/sheet/",
1298
- "dependencies": ["@data-slot/dialog", "@lucide/astro"],
1307
+ "dependencies": ["@data-slot/dialog@^1.0.2", "@lucide/astro"],
1299
1308
  "registryDependencies": ["@fulldev/button", "@fulldev/dialog"],
1300
1309
  "files": [
1301
1310
  {
@@ -1343,7 +1352,7 @@
1343
1352
  "description": "A composable, themeable, and customizable Astro sidebar component.",
1344
1353
  "categories": ["ui"],
1345
1354
  "docs": "https://ui.full.dev/components/sidebar/",
1346
- "dependencies": ["@data-slot/tooltip", "@lucide/astro"],
1355
+ "dependencies": ["@data-slot/tooltip@^1.0.2", "@lucide/astro"],
1347
1356
  "registryDependencies": [
1348
1357
  "@fulldev/layout",
1349
1358
  "@fulldev/button",
@@ -1459,7 +1468,7 @@
1459
1468
  "description": "An input where the user selects a value from within a given range.",
1460
1469
  "categories": ["ui"],
1461
1470
  "docs": "https://ui.full.dev/components/slider/",
1462
- "dependencies": ["@data-slot/slider"],
1471
+ "dependencies": ["@data-slot/slider@^1.0.2"],
1463
1472
  "files": [
1464
1473
  {
1465
1474
  "path": "src/components/ui/slider/slider.astro",
@@ -1515,7 +1524,7 @@
1515
1524
  "description": "A control that allows the user to toggle between checked and not checked.",
1516
1525
  "categories": ["ui"],
1517
1526
  "docs": "https://ui.full.dev/components/switch/",
1518
- "dependencies": ["@data-slot/switch"],
1527
+ "dependencies": ["@data-slot/switch@^1.0.2"],
1519
1528
  "files": [
1520
1529
  {
1521
1530
  "path": "src/components/ui/switch/switch.astro",
@@ -1580,7 +1589,7 @@
1580
1589
  "description": "A set of layered sections of content, known as tabs, that display one panel of content at a time.",
1581
1590
  "categories": ["ui"],
1582
1591
  "docs": "https://ui.full.dev/components/tabs/",
1583
- "dependencies": ["@data-slot/tabs"],
1592
+ "dependencies": ["@data-slot/tabs@^1.0.2"],
1584
1593
  "files": [
1585
1594
  {
1586
1595
  "path": "src/components/ui/tabs/tabs.astro",
@@ -1649,7 +1658,7 @@
1649
1658
  "description": "A two-state button that can be either on or off.",
1650
1659
  "categories": ["ui"],
1651
1660
  "docs": "https://ui.full.dev/components/toggle/",
1652
- "dependencies": ["@data-slot/toggle"],
1661
+ "dependencies": ["@data-slot/toggle@^1.0.2"],
1653
1662
  "files": [
1654
1663
  {
1655
1664
  "path": "src/components/ui/toggle/toggle.astro",
@@ -1690,7 +1699,7 @@
1690
1699
  "description": "Displays contextual information when a user hovers or focuses a trigger.",
1691
1700
  "categories": ["ui"],
1692
1701
  "docs": "https://ui.full.dev/components/tooltip/",
1693
- "dependencies": ["@data-slot/tooltip"],
1702
+ "dependencies": ["@data-slot/tooltip@^1.0.2"],
1694
1703
  "files": [
1695
1704
  {
1696
1705
  "path": "src/components/ui/tooltip/tooltip.astro",
@@ -1785,6 +1794,10 @@
1785
1794
  {
1786
1795
  "path": "src/components/ui/typography/index.ts",
1787
1796
  "type": "registry:ui"
1797
+ },
1798
+ {
1799
+ "path": "src/components/ui/typography/typeset.css",
1800
+ "type": "registry:ui"
1788
1801
  }
1789
1802
  ]
1790
1803
  },
@@ -1806,6 +1819,345 @@
1806
1819
  }
1807
1820
  ]
1808
1821
  },
1822
+ {
1823
+ "name": "drawer",
1824
+ "type": "registry:ui",
1825
+ "title": "Drawer",
1826
+ "description": "A swipeable panel that opens from an edge of the screen.",
1827
+ "categories": ["ui"],
1828
+ "docs": "https://ui.full.dev/components/drawer/",
1829
+ "dependencies": ["@data-slot/drawer@^1.0.2"],
1830
+ "registryDependencies": ["@fulldev/button"],
1831
+ "files": [
1832
+ {
1833
+ "path": "src/components/ui/drawer/drawer-close.astro",
1834
+ "type": "registry:ui"
1835
+ },
1836
+ {
1837
+ "path": "src/components/ui/drawer/drawer-content.astro",
1838
+ "type": "registry:ui"
1839
+ },
1840
+ {
1841
+ "path": "src/components/ui/drawer/drawer-description.astro",
1842
+ "type": "registry:ui"
1843
+ },
1844
+ {
1845
+ "path": "src/components/ui/drawer/drawer-footer.astro",
1846
+ "type": "registry:ui"
1847
+ },
1848
+ {
1849
+ "path": "src/components/ui/drawer/drawer-header.astro",
1850
+ "type": "registry:ui"
1851
+ },
1852
+ {
1853
+ "path": "src/components/ui/drawer/drawer-indent-background.astro",
1854
+ "type": "registry:ui"
1855
+ },
1856
+ {
1857
+ "path": "src/components/ui/drawer/drawer-indent.astro",
1858
+ "type": "registry:ui"
1859
+ },
1860
+ {
1861
+ "path": "src/components/ui/drawer/drawer-overlay.astro",
1862
+ "type": "registry:ui"
1863
+ },
1864
+ {
1865
+ "path": "src/components/ui/drawer/drawer-popup.astro",
1866
+ "type": "registry:ui"
1867
+ },
1868
+ {
1869
+ "path": "src/components/ui/drawer/drawer-portal.astro",
1870
+ "type": "registry:ui"
1871
+ },
1872
+ {
1873
+ "path": "src/components/ui/drawer/drawer-provider.astro",
1874
+ "type": "registry:ui"
1875
+ },
1876
+ {
1877
+ "path": "src/components/ui/drawer/drawer-swipe-handle.astro",
1878
+ "type": "registry:ui"
1879
+ },
1880
+ {
1881
+ "path": "src/components/ui/drawer/drawer-title.astro",
1882
+ "type": "registry:ui"
1883
+ },
1884
+ {
1885
+ "path": "src/components/ui/drawer/drawer-trigger.astro",
1886
+ "type": "registry:ui"
1887
+ },
1888
+ {
1889
+ "path": "src/components/ui/drawer/drawer-viewport.astro",
1890
+ "type": "registry:ui"
1891
+ },
1892
+ {
1893
+ "path": "src/components/ui/drawer/drawer-virtual-keyboard-provider.astro",
1894
+ "type": "registry:ui"
1895
+ },
1896
+ {
1897
+ "path": "src/components/ui/drawer/drawer.astro",
1898
+ "type": "registry:ui"
1899
+ },
1900
+ {
1901
+ "path": "src/components/ui/drawer/index.ts",
1902
+ "type": "registry:ui"
1903
+ }
1904
+ ]
1905
+ },
1906
+ {
1907
+ "name": "resizable",
1908
+ "type": "registry:ui",
1909
+ "title": "Resizable",
1910
+ "description": "Accessible panel groups with pointer and keyboard resizing.",
1911
+ "categories": ["ui"],
1912
+ "docs": "https://ui.full.dev/components/resizable/",
1913
+ "dependencies": ["@data-slot/resizable@^1.0.2"],
1914
+ "files": [
1915
+ {
1916
+ "path": "src/components/ui/resizable/index.ts",
1917
+ "type": "registry:ui"
1918
+ },
1919
+ {
1920
+ "path": "src/components/ui/resizable/resizable-handle.astro",
1921
+ "type": "registry:ui"
1922
+ },
1923
+ {
1924
+ "path": "src/components/ui/resizable/resizable-panel.astro",
1925
+ "type": "registry:ui"
1926
+ },
1927
+ {
1928
+ "path": "src/components/ui/resizable/resizable.astro",
1929
+ "type": "registry:ui"
1930
+ }
1931
+ ]
1932
+ },
1933
+ {
1934
+ "name": "toast",
1935
+ "type": "registry:ui",
1936
+ "title": "Toast",
1937
+ "description": "A brief notification that appears without interrupting the user.",
1938
+ "categories": ["ui"],
1939
+ "docs": "https://ui.full.dev/components/toast/",
1940
+ "dependencies": ["@data-slot/toast@^1.0.2", "@lucide/astro"],
1941
+ "registryDependencies": ["@fulldev/button"],
1942
+ "files": [
1943
+ {
1944
+ "path": "src/components/ui/toast/index.ts",
1945
+ "type": "registry:ui"
1946
+ },
1947
+ {
1948
+ "path": "src/components/ui/toast/toast-action.astro",
1949
+ "type": "registry:ui"
1950
+ },
1951
+ {
1952
+ "path": "src/components/ui/toast/toast-close.astro",
1953
+ "type": "registry:ui"
1954
+ },
1955
+ {
1956
+ "path": "src/components/ui/toast/toast-content.astro",
1957
+ "type": "registry:ui"
1958
+ },
1959
+ {
1960
+ "path": "src/components/ui/toast/toast-description.astro",
1961
+ "type": "registry:ui"
1962
+ },
1963
+ {
1964
+ "path": "src/components/ui/toast/toast-icon.astro",
1965
+ "type": "registry:ui"
1966
+ },
1967
+ {
1968
+ "path": "src/components/ui/toast/toast-item.astro",
1969
+ "type": "registry:ui"
1970
+ },
1971
+ {
1972
+ "path": "src/components/ui/toast/toast-template.astro",
1973
+ "type": "registry:ui"
1974
+ },
1975
+ {
1976
+ "path": "src/components/ui/toast/toast-title.astro",
1977
+ "type": "registry:ui"
1978
+ },
1979
+ {
1980
+ "path": "src/components/ui/toast/toast-viewport.astro",
1981
+ "type": "registry:ui"
1982
+ },
1983
+ {
1984
+ "path": "src/components/ui/toast/toast.astro",
1985
+ "type": "registry:ui"
1986
+ },
1987
+ {
1988
+ "path": "src/components/ui/toast/toaster.astro",
1989
+ "type": "registry:ui"
1990
+ }
1991
+ ]
1992
+ },
1993
+ {
1994
+ "name": "toggle-group",
1995
+ "type": "registry:ui",
1996
+ "title": "Toggle Group",
1997
+ "description": "A set of two-state buttons that can be toggled independently or as a single choice.",
1998
+ "categories": ["ui"],
1999
+ "docs": "https://ui.full.dev/components/toggle-group/",
2000
+ "dependencies": ["@data-slot/toggle-group@^1.0.2"],
2001
+ "registryDependencies": ["@fulldev/toggle"],
2002
+ "files": [
2003
+ {
2004
+ "path": "src/components/ui/toggle-group/index.ts",
2005
+ "type": "registry:ui"
2006
+ },
2007
+ {
2008
+ "path": "src/components/ui/toggle-group/toggle-group-item.astro",
2009
+ "type": "registry:ui"
2010
+ },
2011
+ {
2012
+ "path": "src/components/ui/toggle-group/toggle-group.astro",
2013
+ "type": "registry:ui"
2014
+ }
2015
+ ]
2016
+ },
2017
+ {
2018
+ "name": "attachment",
2019
+ "type": "registry:ui",
2020
+ "title": "Attachment",
2021
+ "description": "Displays a file or image attachment with media, metadata, state, and actions.",
2022
+ "categories": ["ui"],
2023
+ "docs": "https://ui.full.dev/components/attachment/",
2024
+ "registryDependencies": ["@fulldev/button"],
2025
+ "files": [
2026
+ {
2027
+ "path": "src/components/ui/attachment/attachment-action.astro",
2028
+ "type": "registry:ui"
2029
+ },
2030
+ {
2031
+ "path": "src/components/ui/attachment/attachment-actions.astro",
2032
+ "type": "registry:ui"
2033
+ },
2034
+ {
2035
+ "path": "src/components/ui/attachment/attachment-content.astro",
2036
+ "type": "registry:ui"
2037
+ },
2038
+ {
2039
+ "path": "src/components/ui/attachment/attachment-description.astro",
2040
+ "type": "registry:ui"
2041
+ },
2042
+ {
2043
+ "path": "src/components/ui/attachment/attachment-group.astro",
2044
+ "type": "registry:ui"
2045
+ },
2046
+ {
2047
+ "path": "src/components/ui/attachment/attachment-media.astro",
2048
+ "type": "registry:ui"
2049
+ },
2050
+ {
2051
+ "path": "src/components/ui/attachment/attachment-title.astro",
2052
+ "type": "registry:ui"
2053
+ },
2054
+ {
2055
+ "path": "src/components/ui/attachment/attachment-trigger.astro",
2056
+ "type": "registry:ui"
2057
+ },
2058
+ {
2059
+ "path": "src/components/ui/attachment/attachment.astro",
2060
+ "type": "registry:ui"
2061
+ },
2062
+ {
2063
+ "path": "src/components/ui/attachment/index.ts",
2064
+ "type": "registry:ui"
2065
+ }
2066
+ ]
2067
+ },
2068
+ {
2069
+ "name": "button-group",
2070
+ "type": "registry:ui",
2071
+ "title": "Button Group",
2072
+ "description": "Groups related controls with connected edges and consistent focus behavior.",
2073
+ "categories": ["ui"],
2074
+ "docs": "https://ui.full.dev/components/button-group/",
2075
+ "registryDependencies": ["@fulldev/separator"],
2076
+ "files": [
2077
+ {
2078
+ "path": "src/components/ui/button-group/button-group-separator.astro",
2079
+ "type": "registry:ui"
2080
+ },
2081
+ {
2082
+ "path": "src/components/ui/button-group/button-group-text.astro",
2083
+ "type": "registry:ui"
2084
+ },
2085
+ {
2086
+ "path": "src/components/ui/button-group/button-group-variants.ts",
2087
+ "type": "registry:ui"
2088
+ },
2089
+ {
2090
+ "path": "src/components/ui/button-group/button-group.astro",
2091
+ "type": "registry:ui"
2092
+ },
2093
+ {
2094
+ "path": "src/components/ui/button-group/index.ts",
2095
+ "type": "registry:ui"
2096
+ }
2097
+ ]
2098
+ },
2099
+ {
2100
+ "name": "pagination",
2101
+ "type": "registry:ui",
2102
+ "title": "Pagination",
2103
+ "description": "Page navigation with previous, next, numbered, and overflow links.",
2104
+ "categories": ["ui"],
2105
+ "docs": "https://ui.full.dev/components/pagination/",
2106
+ "dependencies": ["@lucide/astro"],
2107
+ "registryDependencies": ["@fulldev/button"],
2108
+ "files": [
2109
+ {
2110
+ "path": "src/components/ui/pagination/index.ts",
2111
+ "type": "registry:ui"
2112
+ },
2113
+ {
2114
+ "path": "src/components/ui/pagination/pagination-content.astro",
2115
+ "type": "registry:ui"
2116
+ },
2117
+ {
2118
+ "path": "src/components/ui/pagination/pagination-ellipsis.astro",
2119
+ "type": "registry:ui"
2120
+ },
2121
+ {
2122
+ "path": "src/components/ui/pagination/pagination-item.astro",
2123
+ "type": "registry:ui"
2124
+ },
2125
+ {
2126
+ "path": "src/components/ui/pagination/pagination-link.astro",
2127
+ "type": "registry:ui"
2128
+ },
2129
+ {
2130
+ "path": "src/components/ui/pagination/pagination-next.astro",
2131
+ "type": "registry:ui"
2132
+ },
2133
+ {
2134
+ "path": "src/components/ui/pagination/pagination-previous.astro",
2135
+ "type": "registry:ui"
2136
+ },
2137
+ {
2138
+ "path": "src/components/ui/pagination/pagination.astro",
2139
+ "type": "registry:ui"
2140
+ }
2141
+ ]
2142
+ },
2143
+ {
2144
+ "name": "aspect-ratio",
2145
+ "type": "registry:ui",
2146
+ "title": "Aspect Ratio",
2147
+ "description": "Displays content within a desired ratio.",
2148
+ "categories": ["ui"],
2149
+ "docs": "https://ui.full.dev/components/aspect-ratio/",
2150
+ "files": [
2151
+ {
2152
+ "path": "src/components/ui/aspect-ratio/aspect-ratio.astro",
2153
+ "type": "registry:ui"
2154
+ },
2155
+ {
2156
+ "path": "src/components/ui/aspect-ratio/index.ts",
2157
+ "type": "registry:ui"
2158
+ }
2159
+ ]
2160
+ },
1809
2161
  {
1810
2162
  "name": "components",
1811
2163
  "type": "registry:item",
@@ -1816,11 +2168,14 @@
1816
2168
  "@fulldev/accordion",
1817
2169
  "@fulldev/alert",
1818
2170
  "@fulldev/alert-dialog",
2171
+ "@fulldev/aspect-ratio",
2172
+ "@fulldev/attachment",
1819
2173
  "@fulldev/avatar",
1820
2174
  "@fulldev/badge",
1821
2175
  "@fulldev/banner",
1822
2176
  "@fulldev/breadcrumb",
1823
2177
  "@fulldev/button",
2178
+ "@fulldev/button-group",
1824
2179
  "@fulldev/card",
1825
2180
  "@fulldev/carousel",
1826
2181
  "@fulldev/checkbox",
@@ -1828,6 +2183,7 @@
1828
2183
  "@fulldev/combobox",
1829
2184
  "@fulldev/command",
1830
2185
  "@fulldev/dialog",
2186
+ "@fulldev/drawer",
1831
2187
  "@fulldev/dropdown-menu",
1832
2188
  "@fulldev/empty",
1833
2189
  "@fulldev/field",
@@ -1845,10 +2201,12 @@
1845
2201
  "@fulldev/marquee",
1846
2202
  "@fulldev/native-select",
1847
2203
  "@fulldev/navigation-menu",
2204
+ "@fulldev/pagination",
1848
2205
  "@fulldev/popover",
1849
2206
  "@fulldev/price",
1850
2207
  "@fulldev/radio-group",
1851
2208
  "@fulldev/rating",
2209
+ "@fulldev/resizable",
1852
2210
  "@fulldev/section",
1853
2211
  "@fulldev/select",
1854
2212
  "@fulldev/separator",
@@ -1862,8 +2220,10 @@
1862
2220
  "@fulldev/tabs",
1863
2221
  "@fulldev/textarea",
1864
2222
  "@fulldev/theme-toggle",
2223
+ "@fulldev/toast",
1865
2224
  "@fulldev/toc",
1866
2225
  "@fulldev/toggle",
2226
+ "@fulldev/toggle-group",
1867
2227
  "@fulldev/tooltip",
1868
2228
  "@fulldev/typography",
1869
2229
  "@fulldev/video"
@@ -1876,6 +2236,7 @@
1876
2236
  "description": "Page-shell primitives for the root html, head, body, and main structure.",
1877
2237
  "categories": ["ui"],
1878
2238
  "docs": "https://ui.full.dev/components/layout/",
2239
+ "dependencies": ["@lexingtonthemes/seo@^0.2.0"],
1879
2240
  "files": [
1880
2241
  {
1881
2242
  "path": "src/components/ui/layout/layout.astro",