shadcn 4.7.0 → 4.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1469,9 +1469,3410 @@ type RegistryBaseItem = Extract<RegistryItem, {
1469
1469
  type RegistryFontItem = Extract<RegistryItem, {
1470
1470
  type: "registry:font";
1471
1471
  }>;
1472
- declare const registrySchema: z.ZodObject<{
1472
+ declare const registryChunkSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1473
+ $schema: z.ZodOptional<z.ZodString>;
1474
+ name: z.ZodOptional<z.ZodString>;
1475
+ homepage: z.ZodOptional<z.ZodString>;
1476
+ include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1477
+ items: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1478
+ $schema: z.ZodOptional<z.ZodString>;
1479
+ extends: z.ZodOptional<z.ZodString>;
1480
+ name: z.ZodString;
1481
+ title: z.ZodOptional<z.ZodString>;
1482
+ author: z.ZodOptional<z.ZodString>;
1483
+ description: z.ZodOptional<z.ZodString>;
1484
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1485
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1486
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1487
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1488
+ path: z.ZodString;
1489
+ content: z.ZodOptional<z.ZodString>;
1490
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1491
+ target: z.ZodString;
1492
+ }, "strip", z.ZodTypeAny, {
1493
+ path: string;
1494
+ type: "registry:page" | "registry:file";
1495
+ target: string;
1496
+ content?: string | undefined;
1497
+ }, {
1498
+ path: string;
1499
+ type: "registry:page" | "registry:file";
1500
+ target: string;
1501
+ content?: string | undefined;
1502
+ }>, z.ZodObject<{
1503
+ path: z.ZodString;
1504
+ content: z.ZodOptional<z.ZodString>;
1505
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1506
+ target: z.ZodOptional<z.ZodString>;
1507
+ }, "strip", z.ZodTypeAny, {
1508
+ path: string;
1509
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1510
+ content?: string | undefined;
1511
+ target?: string | undefined;
1512
+ }, {
1513
+ path: string;
1514
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1515
+ content?: string | undefined;
1516
+ target?: string | undefined;
1517
+ }>]>, "many">>;
1518
+ tailwind: z.ZodOptional<z.ZodObject<{
1519
+ config: z.ZodOptional<z.ZodObject<{
1520
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1521
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1522
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1523
+ }, "strip", z.ZodTypeAny, {
1524
+ content?: string[] | undefined;
1525
+ theme?: Record<string, any> | undefined;
1526
+ plugins?: string[] | undefined;
1527
+ }, {
1528
+ content?: string[] | undefined;
1529
+ theme?: Record<string, any> | undefined;
1530
+ plugins?: string[] | undefined;
1531
+ }>>;
1532
+ }, "strip", z.ZodTypeAny, {
1533
+ config?: {
1534
+ content?: string[] | undefined;
1535
+ theme?: Record<string, any> | undefined;
1536
+ plugins?: string[] | undefined;
1537
+ } | undefined;
1538
+ }, {
1539
+ config?: {
1540
+ content?: string[] | undefined;
1541
+ theme?: Record<string, any> | undefined;
1542
+ plugins?: string[] | undefined;
1543
+ } | undefined;
1544
+ }>>;
1545
+ cssVars: z.ZodOptional<z.ZodObject<{
1546
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1547
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1548
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1549
+ }, "strip", z.ZodTypeAny, {
1550
+ theme?: Record<string, string> | undefined;
1551
+ light?: Record<string, string> | undefined;
1552
+ dark?: Record<string, string> | undefined;
1553
+ }, {
1554
+ theme?: Record<string, string> | undefined;
1555
+ light?: Record<string, string> | undefined;
1556
+ dark?: Record<string, string> | undefined;
1557
+ }>>;
1558
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1559
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1560
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1561
+ docs: z.ZodOptional<z.ZodString>;
1562
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1563
+ } & {
1564
+ type: z.ZodLiteral<"registry:base">;
1565
+ config: z.ZodOptional<z.ZodObject<{
1566
+ $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1567
+ style: z.ZodOptional<z.ZodString>;
1568
+ rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1569
+ tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1570
+ tailwind: z.ZodOptional<z.ZodObject<{
1571
+ config: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1572
+ css: z.ZodOptional<z.ZodString>;
1573
+ baseColor: z.ZodOptional<z.ZodString>;
1574
+ cssVariables: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1575
+ prefix: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
1576
+ }, "strip", z.ZodTypeAny, {
1577
+ config?: string | undefined;
1578
+ css?: string | undefined;
1579
+ baseColor?: string | undefined;
1580
+ cssVariables?: boolean | undefined;
1581
+ prefix?: string | undefined;
1582
+ }, {
1583
+ config?: string | undefined;
1584
+ css?: string | undefined;
1585
+ baseColor?: string | undefined;
1586
+ cssVariables?: boolean | undefined;
1587
+ prefix?: string | undefined;
1588
+ }>>;
1589
+ iconLibrary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1590
+ rtl: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
1591
+ menuColor: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted", "default-translucent", "inverted-translucent"]>>>>;
1592
+ menuAccent: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>>;
1593
+ aliases: z.ZodOptional<z.ZodObject<{
1594
+ components: z.ZodOptional<z.ZodString>;
1595
+ utils: z.ZodOptional<z.ZodString>;
1596
+ ui: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1597
+ lib: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1598
+ hooks: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1599
+ }, "strip", z.ZodTypeAny, {
1600
+ components?: string | undefined;
1601
+ ui?: string | undefined;
1602
+ utils?: string | undefined;
1603
+ lib?: string | undefined;
1604
+ hooks?: string | undefined;
1605
+ }, {
1606
+ components?: string | undefined;
1607
+ ui?: string | undefined;
1608
+ utils?: string | undefined;
1609
+ lib?: string | undefined;
1610
+ hooks?: string | undefined;
1611
+ }>>;
1612
+ registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1613
+ url: z.ZodEffects<z.ZodString, string, string>;
1614
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1615
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1616
+ }, "strip", z.ZodTypeAny, {
1617
+ url: string;
1618
+ params?: Record<string, string> | undefined;
1619
+ headers?: Record<string, string> | undefined;
1620
+ }, {
1621
+ url: string;
1622
+ params?: Record<string, string> | undefined;
1623
+ headers?: Record<string, string> | undefined;
1624
+ }>]>>>>;
1625
+ }, "strict", z.ZodTypeAny, {
1626
+ tailwind?: {
1627
+ config?: string | undefined;
1628
+ css?: string | undefined;
1629
+ baseColor?: string | undefined;
1630
+ cssVariables?: boolean | undefined;
1631
+ prefix?: string | undefined;
1632
+ } | undefined;
1633
+ $schema?: string | undefined;
1634
+ style?: string | undefined;
1635
+ rsc?: boolean | undefined;
1636
+ tsx?: boolean | undefined;
1637
+ iconLibrary?: string | undefined;
1638
+ rtl?: boolean | undefined;
1639
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1640
+ menuAccent?: "subtle" | "bold" | undefined;
1641
+ aliases?: {
1642
+ components?: string | undefined;
1643
+ ui?: string | undefined;
1644
+ utils?: string | undefined;
1645
+ lib?: string | undefined;
1646
+ hooks?: string | undefined;
1647
+ } | undefined;
1648
+ registries?: Record<string, string | {
1649
+ url: string;
1650
+ params?: Record<string, string> | undefined;
1651
+ headers?: Record<string, string> | undefined;
1652
+ }> | undefined;
1653
+ }, {
1654
+ tailwind?: {
1655
+ config?: string | undefined;
1656
+ css?: string | undefined;
1657
+ baseColor?: string | undefined;
1658
+ cssVariables?: boolean | undefined;
1659
+ prefix?: string | undefined;
1660
+ } | undefined;
1661
+ $schema?: string | undefined;
1662
+ style?: string | undefined;
1663
+ rsc?: boolean | undefined;
1664
+ tsx?: boolean | undefined;
1665
+ iconLibrary?: string | undefined;
1666
+ rtl?: boolean | undefined;
1667
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1668
+ menuAccent?: "subtle" | "bold" | undefined;
1669
+ aliases?: {
1670
+ components?: string | undefined;
1671
+ ui?: string | undefined;
1672
+ utils?: string | undefined;
1673
+ lib?: string | undefined;
1674
+ hooks?: string | undefined;
1675
+ } | undefined;
1676
+ registries?: Record<string, string | {
1677
+ url: string;
1678
+ params?: Record<string, string> | undefined;
1679
+ headers?: Record<string, string> | undefined;
1680
+ }> | undefined;
1681
+ }>>;
1682
+ }, "strip", z.ZodTypeAny, {
1683
+ type: "registry:base";
1684
+ name: string;
1685
+ tailwind?: {
1686
+ config?: {
1687
+ content?: string[] | undefined;
1688
+ theme?: Record<string, any> | undefined;
1689
+ plugins?: string[] | undefined;
1690
+ } | undefined;
1691
+ } | undefined;
1692
+ docs?: string | undefined;
1693
+ $schema?: string | undefined;
1694
+ config?: {
1695
+ tailwind?: {
1696
+ config?: string | undefined;
1697
+ css?: string | undefined;
1698
+ baseColor?: string | undefined;
1699
+ cssVariables?: boolean | undefined;
1700
+ prefix?: string | undefined;
1701
+ } | undefined;
1702
+ $schema?: string | undefined;
1703
+ style?: string | undefined;
1704
+ rsc?: boolean | undefined;
1705
+ tsx?: boolean | undefined;
1706
+ iconLibrary?: string | undefined;
1707
+ rtl?: boolean | undefined;
1708
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1709
+ menuAccent?: "subtle" | "bold" | undefined;
1710
+ aliases?: {
1711
+ components?: string | undefined;
1712
+ ui?: string | undefined;
1713
+ utils?: string | undefined;
1714
+ lib?: string | undefined;
1715
+ hooks?: string | undefined;
1716
+ } | undefined;
1717
+ registries?: Record<string, string | {
1718
+ url: string;
1719
+ params?: Record<string, string> | undefined;
1720
+ headers?: Record<string, string> | undefined;
1721
+ }> | undefined;
1722
+ } | undefined;
1723
+ css?: Record<string, any> | undefined;
1724
+ extends?: string | undefined;
1725
+ title?: string | undefined;
1726
+ author?: string | undefined;
1727
+ description?: string | undefined;
1728
+ dependencies?: string[] | undefined;
1729
+ devDependencies?: string[] | undefined;
1730
+ registryDependencies?: string[] | undefined;
1731
+ files?: ({
1732
+ path: string;
1733
+ type: "registry:page" | "registry:file";
1734
+ target: string;
1735
+ content?: string | undefined;
1736
+ } | {
1737
+ path: string;
1738
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1739
+ content?: string | undefined;
1740
+ target?: string | undefined;
1741
+ })[] | undefined;
1742
+ cssVars?: {
1743
+ theme?: Record<string, string> | undefined;
1744
+ light?: Record<string, string> | undefined;
1745
+ dark?: Record<string, string> | undefined;
1746
+ } | undefined;
1747
+ envVars?: Record<string, string> | undefined;
1748
+ meta?: Record<string, any> | undefined;
1749
+ categories?: string[] | undefined;
1750
+ }, {
1751
+ type: "registry:base";
1752
+ name: string;
1753
+ tailwind?: {
1754
+ config?: {
1755
+ content?: string[] | undefined;
1756
+ theme?: Record<string, any> | undefined;
1757
+ plugins?: string[] | undefined;
1758
+ } | undefined;
1759
+ } | undefined;
1760
+ docs?: string | undefined;
1761
+ $schema?: string | undefined;
1762
+ config?: {
1763
+ tailwind?: {
1764
+ config?: string | undefined;
1765
+ css?: string | undefined;
1766
+ baseColor?: string | undefined;
1767
+ cssVariables?: boolean | undefined;
1768
+ prefix?: string | undefined;
1769
+ } | undefined;
1770
+ $schema?: string | undefined;
1771
+ style?: string | undefined;
1772
+ rsc?: boolean | undefined;
1773
+ tsx?: boolean | undefined;
1774
+ iconLibrary?: string | undefined;
1775
+ rtl?: boolean | undefined;
1776
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1777
+ menuAccent?: "subtle" | "bold" | undefined;
1778
+ aliases?: {
1779
+ components?: string | undefined;
1780
+ ui?: string | undefined;
1781
+ utils?: string | undefined;
1782
+ lib?: string | undefined;
1783
+ hooks?: string | undefined;
1784
+ } | undefined;
1785
+ registries?: Record<string, string | {
1786
+ url: string;
1787
+ params?: Record<string, string> | undefined;
1788
+ headers?: Record<string, string> | undefined;
1789
+ }> | undefined;
1790
+ } | undefined;
1791
+ css?: Record<string, any> | undefined;
1792
+ extends?: string | undefined;
1793
+ title?: string | undefined;
1794
+ author?: string | undefined;
1795
+ description?: string | undefined;
1796
+ dependencies?: string[] | undefined;
1797
+ devDependencies?: string[] | undefined;
1798
+ registryDependencies?: string[] | undefined;
1799
+ files?: ({
1800
+ path: string;
1801
+ type: "registry:page" | "registry:file";
1802
+ target: string;
1803
+ content?: string | undefined;
1804
+ } | {
1805
+ path: string;
1806
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1807
+ content?: string | undefined;
1808
+ target?: string | undefined;
1809
+ })[] | undefined;
1810
+ cssVars?: {
1811
+ theme?: Record<string, string> | undefined;
1812
+ light?: Record<string, string> | undefined;
1813
+ dark?: Record<string, string> | undefined;
1814
+ } | undefined;
1815
+ envVars?: Record<string, string> | undefined;
1816
+ meta?: Record<string, any> | undefined;
1817
+ categories?: string[] | undefined;
1818
+ }>, z.ZodObject<{
1819
+ $schema: z.ZodOptional<z.ZodString>;
1820
+ extends: z.ZodOptional<z.ZodString>;
1821
+ name: z.ZodString;
1822
+ title: z.ZodOptional<z.ZodString>;
1823
+ author: z.ZodOptional<z.ZodString>;
1824
+ description: z.ZodOptional<z.ZodString>;
1825
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1826
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1827
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1828
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1829
+ path: z.ZodString;
1830
+ content: z.ZodOptional<z.ZodString>;
1831
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1832
+ target: z.ZodString;
1833
+ }, "strip", z.ZodTypeAny, {
1834
+ path: string;
1835
+ type: "registry:page" | "registry:file";
1836
+ target: string;
1837
+ content?: string | undefined;
1838
+ }, {
1839
+ path: string;
1840
+ type: "registry:page" | "registry:file";
1841
+ target: string;
1842
+ content?: string | undefined;
1843
+ }>, z.ZodObject<{
1844
+ path: z.ZodString;
1845
+ content: z.ZodOptional<z.ZodString>;
1846
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1847
+ target: z.ZodOptional<z.ZodString>;
1848
+ }, "strip", z.ZodTypeAny, {
1849
+ path: string;
1850
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1851
+ content?: string | undefined;
1852
+ target?: string | undefined;
1853
+ }, {
1854
+ path: string;
1855
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1856
+ content?: string | undefined;
1857
+ target?: string | undefined;
1858
+ }>]>, "many">>;
1859
+ tailwind: z.ZodOptional<z.ZodObject<{
1860
+ config: z.ZodOptional<z.ZodObject<{
1861
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1862
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1863
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1864
+ }, "strip", z.ZodTypeAny, {
1865
+ content?: string[] | undefined;
1866
+ theme?: Record<string, any> | undefined;
1867
+ plugins?: string[] | undefined;
1868
+ }, {
1869
+ content?: string[] | undefined;
1870
+ theme?: Record<string, any> | undefined;
1871
+ plugins?: string[] | undefined;
1872
+ }>>;
1873
+ }, "strip", z.ZodTypeAny, {
1874
+ config?: {
1875
+ content?: string[] | undefined;
1876
+ theme?: Record<string, any> | undefined;
1877
+ plugins?: string[] | undefined;
1878
+ } | undefined;
1879
+ }, {
1880
+ config?: {
1881
+ content?: string[] | undefined;
1882
+ theme?: Record<string, any> | undefined;
1883
+ plugins?: string[] | undefined;
1884
+ } | undefined;
1885
+ }>>;
1886
+ cssVars: z.ZodOptional<z.ZodObject<{
1887
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1888
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1889
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1890
+ }, "strip", z.ZodTypeAny, {
1891
+ theme?: Record<string, string> | undefined;
1892
+ light?: Record<string, string> | undefined;
1893
+ dark?: Record<string, string> | undefined;
1894
+ }, {
1895
+ theme?: Record<string, string> | undefined;
1896
+ light?: Record<string, string> | undefined;
1897
+ dark?: Record<string, string> | undefined;
1898
+ }>>;
1899
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1900
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1901
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1902
+ docs: z.ZodOptional<z.ZodString>;
1903
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1904
+ } & {
1905
+ type: z.ZodLiteral<"registry:font">;
1906
+ font: z.ZodObject<{
1907
+ family: z.ZodString;
1908
+ provider: z.ZodLiteral<"google">;
1909
+ import: z.ZodString;
1910
+ variable: z.ZodString;
1911
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1912
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1913
+ selector: z.ZodOptional<z.ZodString>;
1914
+ dependency: z.ZodOptional<z.ZodString>;
1915
+ }, "strip", z.ZodTypeAny, {
1916
+ family: string;
1917
+ provider: "google";
1918
+ import: string;
1919
+ variable: string;
1920
+ weight?: string[] | undefined;
1921
+ subsets?: string[] | undefined;
1922
+ selector?: string | undefined;
1923
+ dependency?: string | undefined;
1924
+ }, {
1925
+ family: string;
1926
+ provider: "google";
1927
+ import: string;
1928
+ variable: string;
1929
+ weight?: string[] | undefined;
1930
+ subsets?: string[] | undefined;
1931
+ selector?: string | undefined;
1932
+ dependency?: string | undefined;
1933
+ }>;
1934
+ }, "strip", z.ZodTypeAny, {
1935
+ type: "registry:font";
1936
+ name: string;
1937
+ font: {
1938
+ family: string;
1939
+ provider: "google";
1940
+ import: string;
1941
+ variable: string;
1942
+ weight?: string[] | undefined;
1943
+ subsets?: string[] | undefined;
1944
+ selector?: string | undefined;
1945
+ dependency?: string | undefined;
1946
+ };
1947
+ tailwind?: {
1948
+ config?: {
1949
+ content?: string[] | undefined;
1950
+ theme?: Record<string, any> | undefined;
1951
+ plugins?: string[] | undefined;
1952
+ } | undefined;
1953
+ } | undefined;
1954
+ docs?: string | undefined;
1955
+ $schema?: string | undefined;
1956
+ css?: Record<string, any> | undefined;
1957
+ extends?: string | undefined;
1958
+ title?: string | undefined;
1959
+ author?: string | undefined;
1960
+ description?: string | undefined;
1961
+ dependencies?: string[] | undefined;
1962
+ devDependencies?: string[] | undefined;
1963
+ registryDependencies?: string[] | undefined;
1964
+ files?: ({
1965
+ path: string;
1966
+ type: "registry:page" | "registry:file";
1967
+ target: string;
1968
+ content?: string | undefined;
1969
+ } | {
1970
+ path: string;
1971
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1972
+ content?: string | undefined;
1973
+ target?: string | undefined;
1974
+ })[] | undefined;
1975
+ cssVars?: {
1976
+ theme?: Record<string, string> | undefined;
1977
+ light?: Record<string, string> | undefined;
1978
+ dark?: Record<string, string> | undefined;
1979
+ } | undefined;
1980
+ envVars?: Record<string, string> | undefined;
1981
+ meta?: Record<string, any> | undefined;
1982
+ categories?: string[] | undefined;
1983
+ }, {
1984
+ type: "registry:font";
1985
+ name: string;
1986
+ font: {
1987
+ family: string;
1988
+ provider: "google";
1989
+ import: string;
1990
+ variable: string;
1991
+ weight?: string[] | undefined;
1992
+ subsets?: string[] | undefined;
1993
+ selector?: string | undefined;
1994
+ dependency?: string | undefined;
1995
+ };
1996
+ tailwind?: {
1997
+ config?: {
1998
+ content?: string[] | undefined;
1999
+ theme?: Record<string, any> | undefined;
2000
+ plugins?: string[] | undefined;
2001
+ } | undefined;
2002
+ } | undefined;
2003
+ docs?: string | undefined;
2004
+ $schema?: string | undefined;
2005
+ css?: Record<string, any> | undefined;
2006
+ extends?: string | undefined;
2007
+ title?: string | undefined;
2008
+ author?: string | undefined;
2009
+ description?: string | undefined;
2010
+ dependencies?: string[] | undefined;
2011
+ devDependencies?: string[] | undefined;
2012
+ registryDependencies?: string[] | undefined;
2013
+ files?: ({
2014
+ path: string;
2015
+ type: "registry:page" | "registry:file";
2016
+ target: string;
2017
+ content?: string | undefined;
2018
+ } | {
2019
+ path: string;
2020
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2021
+ content?: string | undefined;
2022
+ target?: string | undefined;
2023
+ })[] | undefined;
2024
+ cssVars?: {
2025
+ theme?: Record<string, string> | undefined;
2026
+ light?: Record<string, string> | undefined;
2027
+ dark?: Record<string, string> | undefined;
2028
+ } | undefined;
2029
+ envVars?: Record<string, string> | undefined;
2030
+ meta?: Record<string, any> | undefined;
2031
+ categories?: string[] | undefined;
2032
+ }>, z.ZodObject<{
2033
+ $schema: z.ZodOptional<z.ZodString>;
2034
+ extends: z.ZodOptional<z.ZodString>;
2035
+ name: z.ZodString;
2036
+ title: z.ZodOptional<z.ZodString>;
2037
+ author: z.ZodOptional<z.ZodString>;
2038
+ description: z.ZodOptional<z.ZodString>;
2039
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2040
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2041
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2042
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2043
+ path: z.ZodString;
2044
+ content: z.ZodOptional<z.ZodString>;
2045
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
2046
+ target: z.ZodString;
2047
+ }, "strip", z.ZodTypeAny, {
2048
+ path: string;
2049
+ type: "registry:page" | "registry:file";
2050
+ target: string;
2051
+ content?: string | undefined;
2052
+ }, {
2053
+ path: string;
2054
+ type: "registry:page" | "registry:file";
2055
+ target: string;
2056
+ content?: string | undefined;
2057
+ }>, z.ZodObject<{
2058
+ path: z.ZodString;
2059
+ content: z.ZodOptional<z.ZodString>;
2060
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
2061
+ target: z.ZodOptional<z.ZodString>;
2062
+ }, "strip", z.ZodTypeAny, {
2063
+ path: string;
2064
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2065
+ content?: string | undefined;
2066
+ target?: string | undefined;
2067
+ }, {
2068
+ path: string;
2069
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2070
+ content?: string | undefined;
2071
+ target?: string | undefined;
2072
+ }>]>, "many">>;
2073
+ tailwind: z.ZodOptional<z.ZodObject<{
2074
+ config: z.ZodOptional<z.ZodObject<{
2075
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2076
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2077
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2078
+ }, "strip", z.ZodTypeAny, {
2079
+ content?: string[] | undefined;
2080
+ theme?: Record<string, any> | undefined;
2081
+ plugins?: string[] | undefined;
2082
+ }, {
2083
+ content?: string[] | undefined;
2084
+ theme?: Record<string, any> | undefined;
2085
+ plugins?: string[] | undefined;
2086
+ }>>;
2087
+ }, "strip", z.ZodTypeAny, {
2088
+ config?: {
2089
+ content?: string[] | undefined;
2090
+ theme?: Record<string, any> | undefined;
2091
+ plugins?: string[] | undefined;
2092
+ } | undefined;
2093
+ }, {
2094
+ config?: {
2095
+ content?: string[] | undefined;
2096
+ theme?: Record<string, any> | undefined;
2097
+ plugins?: string[] | undefined;
2098
+ } | undefined;
2099
+ }>>;
2100
+ cssVars: z.ZodOptional<z.ZodObject<{
2101
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2102
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2103
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2104
+ }, "strip", z.ZodTypeAny, {
2105
+ theme?: Record<string, string> | undefined;
2106
+ light?: Record<string, string> | undefined;
2107
+ dark?: Record<string, string> | undefined;
2108
+ }, {
2109
+ theme?: Record<string, string> | undefined;
2110
+ light?: Record<string, string> | undefined;
2111
+ dark?: Record<string, string> | undefined;
2112
+ }>>;
2113
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
2114
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2115
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2116
+ docs: z.ZodOptional<z.ZodString>;
2117
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2118
+ } & {
2119
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
2120
+ }, "strip", z.ZodTypeAny, {
2121
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2122
+ name: string;
2123
+ tailwind?: {
2124
+ config?: {
2125
+ content?: string[] | undefined;
2126
+ theme?: Record<string, any> | undefined;
2127
+ plugins?: string[] | undefined;
2128
+ } | undefined;
2129
+ } | undefined;
2130
+ docs?: string | undefined;
2131
+ $schema?: string | undefined;
2132
+ css?: Record<string, any> | undefined;
2133
+ extends?: string | undefined;
2134
+ title?: string | undefined;
2135
+ author?: string | undefined;
2136
+ description?: string | undefined;
2137
+ dependencies?: string[] | undefined;
2138
+ devDependencies?: string[] | undefined;
2139
+ registryDependencies?: string[] | undefined;
2140
+ files?: ({
2141
+ path: string;
2142
+ type: "registry:page" | "registry:file";
2143
+ target: string;
2144
+ content?: string | undefined;
2145
+ } | {
2146
+ path: string;
2147
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2148
+ content?: string | undefined;
2149
+ target?: string | undefined;
2150
+ })[] | undefined;
2151
+ cssVars?: {
2152
+ theme?: Record<string, string> | undefined;
2153
+ light?: Record<string, string> | undefined;
2154
+ dark?: Record<string, string> | undefined;
2155
+ } | undefined;
2156
+ envVars?: Record<string, string> | undefined;
2157
+ meta?: Record<string, any> | undefined;
2158
+ categories?: string[] | undefined;
2159
+ }, {
2160
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2161
+ name: string;
2162
+ tailwind?: {
2163
+ config?: {
2164
+ content?: string[] | undefined;
2165
+ theme?: Record<string, any> | undefined;
2166
+ plugins?: string[] | undefined;
2167
+ } | undefined;
2168
+ } | undefined;
2169
+ docs?: string | undefined;
2170
+ $schema?: string | undefined;
2171
+ css?: Record<string, any> | undefined;
2172
+ extends?: string | undefined;
2173
+ title?: string | undefined;
2174
+ author?: string | undefined;
2175
+ description?: string | undefined;
2176
+ dependencies?: string[] | undefined;
2177
+ devDependencies?: string[] | undefined;
2178
+ registryDependencies?: string[] | undefined;
2179
+ files?: ({
2180
+ path: string;
2181
+ type: "registry:page" | "registry:file";
2182
+ target: string;
2183
+ content?: string | undefined;
2184
+ } | {
2185
+ path: string;
2186
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2187
+ content?: string | undefined;
2188
+ target?: string | undefined;
2189
+ })[] | undefined;
2190
+ cssVars?: {
2191
+ theme?: Record<string, string> | undefined;
2192
+ light?: Record<string, string> | undefined;
2193
+ dark?: Record<string, string> | undefined;
2194
+ } | undefined;
2195
+ envVars?: Record<string, string> | undefined;
2196
+ meta?: Record<string, any> | undefined;
2197
+ categories?: string[] | undefined;
2198
+ }>]>, "many">>;
2199
+ }, "strip", z.ZodTypeAny, {
2200
+ $schema?: string | undefined;
2201
+ name?: string | undefined;
2202
+ homepage?: string | undefined;
2203
+ include?: string[] | undefined;
2204
+ items?: ({
2205
+ type: "registry:base";
2206
+ name: string;
2207
+ tailwind?: {
2208
+ config?: {
2209
+ content?: string[] | undefined;
2210
+ theme?: Record<string, any> | undefined;
2211
+ plugins?: string[] | undefined;
2212
+ } | undefined;
2213
+ } | undefined;
2214
+ docs?: string | undefined;
2215
+ $schema?: string | undefined;
2216
+ config?: {
2217
+ tailwind?: {
2218
+ config?: string | undefined;
2219
+ css?: string | undefined;
2220
+ baseColor?: string | undefined;
2221
+ cssVariables?: boolean | undefined;
2222
+ prefix?: string | undefined;
2223
+ } | undefined;
2224
+ $schema?: string | undefined;
2225
+ style?: string | undefined;
2226
+ rsc?: boolean | undefined;
2227
+ tsx?: boolean | undefined;
2228
+ iconLibrary?: string | undefined;
2229
+ rtl?: boolean | undefined;
2230
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
2231
+ menuAccent?: "subtle" | "bold" | undefined;
2232
+ aliases?: {
2233
+ components?: string | undefined;
2234
+ ui?: string | undefined;
2235
+ utils?: string | undefined;
2236
+ lib?: string | undefined;
2237
+ hooks?: string | undefined;
2238
+ } | undefined;
2239
+ registries?: Record<string, string | {
2240
+ url: string;
2241
+ params?: Record<string, string> | undefined;
2242
+ headers?: Record<string, string> | undefined;
2243
+ }> | undefined;
2244
+ } | undefined;
2245
+ css?: Record<string, any> | undefined;
2246
+ extends?: string | undefined;
2247
+ title?: string | undefined;
2248
+ author?: string | undefined;
2249
+ description?: string | undefined;
2250
+ dependencies?: string[] | undefined;
2251
+ devDependencies?: string[] | undefined;
2252
+ registryDependencies?: string[] | undefined;
2253
+ files?: ({
2254
+ path: string;
2255
+ type: "registry:page" | "registry:file";
2256
+ target: string;
2257
+ content?: string | undefined;
2258
+ } | {
2259
+ path: string;
2260
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2261
+ content?: string | undefined;
2262
+ target?: string | undefined;
2263
+ })[] | undefined;
2264
+ cssVars?: {
2265
+ theme?: Record<string, string> | undefined;
2266
+ light?: Record<string, string> | undefined;
2267
+ dark?: Record<string, string> | undefined;
2268
+ } | undefined;
2269
+ envVars?: Record<string, string> | undefined;
2270
+ meta?: Record<string, any> | undefined;
2271
+ categories?: string[] | undefined;
2272
+ } | {
2273
+ type: "registry:font";
2274
+ name: string;
2275
+ font: {
2276
+ family: string;
2277
+ provider: "google";
2278
+ import: string;
2279
+ variable: string;
2280
+ weight?: string[] | undefined;
2281
+ subsets?: string[] | undefined;
2282
+ selector?: string | undefined;
2283
+ dependency?: string | undefined;
2284
+ };
2285
+ tailwind?: {
2286
+ config?: {
2287
+ content?: string[] | undefined;
2288
+ theme?: Record<string, any> | undefined;
2289
+ plugins?: string[] | undefined;
2290
+ } | undefined;
2291
+ } | undefined;
2292
+ docs?: string | undefined;
2293
+ $schema?: string | undefined;
2294
+ css?: Record<string, any> | undefined;
2295
+ extends?: string | undefined;
2296
+ title?: string | undefined;
2297
+ author?: string | undefined;
2298
+ description?: string | undefined;
2299
+ dependencies?: string[] | undefined;
2300
+ devDependencies?: string[] | undefined;
2301
+ registryDependencies?: string[] | undefined;
2302
+ files?: ({
2303
+ path: string;
2304
+ type: "registry:page" | "registry:file";
2305
+ target: string;
2306
+ content?: string | undefined;
2307
+ } | {
2308
+ path: string;
2309
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2310
+ content?: string | undefined;
2311
+ target?: string | undefined;
2312
+ })[] | undefined;
2313
+ cssVars?: {
2314
+ theme?: Record<string, string> | undefined;
2315
+ light?: Record<string, string> | undefined;
2316
+ dark?: Record<string, string> | undefined;
2317
+ } | undefined;
2318
+ envVars?: Record<string, string> | undefined;
2319
+ meta?: Record<string, any> | undefined;
2320
+ categories?: string[] | undefined;
2321
+ } | {
2322
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2323
+ name: string;
2324
+ tailwind?: {
2325
+ config?: {
2326
+ content?: string[] | undefined;
2327
+ theme?: Record<string, any> | undefined;
2328
+ plugins?: string[] | undefined;
2329
+ } | undefined;
2330
+ } | undefined;
2331
+ docs?: string | undefined;
2332
+ $schema?: string | undefined;
2333
+ css?: Record<string, any> | undefined;
2334
+ extends?: string | undefined;
2335
+ title?: string | undefined;
2336
+ author?: string | undefined;
2337
+ description?: string | undefined;
2338
+ dependencies?: string[] | undefined;
2339
+ devDependencies?: string[] | undefined;
2340
+ registryDependencies?: string[] | undefined;
2341
+ files?: ({
2342
+ path: string;
2343
+ type: "registry:page" | "registry:file";
2344
+ target: string;
2345
+ content?: string | undefined;
2346
+ } | {
2347
+ path: string;
2348
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2349
+ content?: string | undefined;
2350
+ target?: string | undefined;
2351
+ })[] | undefined;
2352
+ cssVars?: {
2353
+ theme?: Record<string, string> | undefined;
2354
+ light?: Record<string, string> | undefined;
2355
+ dark?: Record<string, string> | undefined;
2356
+ } | undefined;
2357
+ envVars?: Record<string, string> | undefined;
2358
+ meta?: Record<string, any> | undefined;
2359
+ categories?: string[] | undefined;
2360
+ })[] | undefined;
2361
+ }, {
2362
+ $schema?: string | undefined;
2363
+ name?: string | undefined;
2364
+ homepage?: string | undefined;
2365
+ include?: string[] | undefined;
2366
+ items?: ({
2367
+ type: "registry:base";
2368
+ name: string;
2369
+ tailwind?: {
2370
+ config?: {
2371
+ content?: string[] | undefined;
2372
+ theme?: Record<string, any> | undefined;
2373
+ plugins?: string[] | undefined;
2374
+ } | undefined;
2375
+ } | undefined;
2376
+ docs?: string | undefined;
2377
+ $schema?: string | undefined;
2378
+ config?: {
2379
+ tailwind?: {
2380
+ config?: string | undefined;
2381
+ css?: string | undefined;
2382
+ baseColor?: string | undefined;
2383
+ cssVariables?: boolean | undefined;
2384
+ prefix?: string | undefined;
2385
+ } | undefined;
2386
+ $schema?: string | undefined;
2387
+ style?: string | undefined;
2388
+ rsc?: boolean | undefined;
2389
+ tsx?: boolean | undefined;
2390
+ iconLibrary?: string | undefined;
2391
+ rtl?: boolean | undefined;
2392
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
2393
+ menuAccent?: "subtle" | "bold" | undefined;
2394
+ aliases?: {
2395
+ components?: string | undefined;
2396
+ ui?: string | undefined;
2397
+ utils?: string | undefined;
2398
+ lib?: string | undefined;
2399
+ hooks?: string | undefined;
2400
+ } | undefined;
2401
+ registries?: Record<string, string | {
2402
+ url: string;
2403
+ params?: Record<string, string> | undefined;
2404
+ headers?: Record<string, string> | undefined;
2405
+ }> | undefined;
2406
+ } | undefined;
2407
+ css?: Record<string, any> | undefined;
2408
+ extends?: string | undefined;
2409
+ title?: string | undefined;
2410
+ author?: string | undefined;
2411
+ description?: string | undefined;
2412
+ dependencies?: string[] | undefined;
2413
+ devDependencies?: string[] | undefined;
2414
+ registryDependencies?: string[] | undefined;
2415
+ files?: ({
2416
+ path: string;
2417
+ type: "registry:page" | "registry:file";
2418
+ target: string;
2419
+ content?: string | undefined;
2420
+ } | {
2421
+ path: string;
2422
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2423
+ content?: string | undefined;
2424
+ target?: string | undefined;
2425
+ })[] | undefined;
2426
+ cssVars?: {
2427
+ theme?: Record<string, string> | undefined;
2428
+ light?: Record<string, string> | undefined;
2429
+ dark?: Record<string, string> | undefined;
2430
+ } | undefined;
2431
+ envVars?: Record<string, string> | undefined;
2432
+ meta?: Record<string, any> | undefined;
2433
+ categories?: string[] | undefined;
2434
+ } | {
2435
+ type: "registry:font";
2436
+ name: string;
2437
+ font: {
2438
+ family: string;
2439
+ provider: "google";
2440
+ import: string;
2441
+ variable: string;
2442
+ weight?: string[] | undefined;
2443
+ subsets?: string[] | undefined;
2444
+ selector?: string | undefined;
2445
+ dependency?: string | undefined;
2446
+ };
2447
+ tailwind?: {
2448
+ config?: {
2449
+ content?: string[] | undefined;
2450
+ theme?: Record<string, any> | undefined;
2451
+ plugins?: string[] | undefined;
2452
+ } | undefined;
2453
+ } | undefined;
2454
+ docs?: string | undefined;
2455
+ $schema?: string | undefined;
2456
+ css?: Record<string, any> | undefined;
2457
+ extends?: string | undefined;
2458
+ title?: string | undefined;
2459
+ author?: string | undefined;
2460
+ description?: string | undefined;
2461
+ dependencies?: string[] | undefined;
2462
+ devDependencies?: string[] | undefined;
2463
+ registryDependencies?: string[] | undefined;
2464
+ files?: ({
2465
+ path: string;
2466
+ type: "registry:page" | "registry:file";
2467
+ target: string;
2468
+ content?: string | undefined;
2469
+ } | {
2470
+ path: string;
2471
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2472
+ content?: string | undefined;
2473
+ target?: string | undefined;
2474
+ })[] | undefined;
2475
+ cssVars?: {
2476
+ theme?: Record<string, string> | undefined;
2477
+ light?: Record<string, string> | undefined;
2478
+ dark?: Record<string, string> | undefined;
2479
+ } | undefined;
2480
+ envVars?: Record<string, string> | undefined;
2481
+ meta?: Record<string, any> | undefined;
2482
+ categories?: string[] | undefined;
2483
+ } | {
2484
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2485
+ name: string;
2486
+ tailwind?: {
2487
+ config?: {
2488
+ content?: string[] | undefined;
2489
+ theme?: Record<string, any> | undefined;
2490
+ plugins?: string[] | undefined;
2491
+ } | undefined;
2492
+ } | undefined;
2493
+ docs?: string | undefined;
2494
+ $schema?: string | undefined;
2495
+ css?: Record<string, any> | undefined;
2496
+ extends?: string | undefined;
2497
+ title?: string | undefined;
2498
+ author?: string | undefined;
2499
+ description?: string | undefined;
2500
+ dependencies?: string[] | undefined;
2501
+ devDependencies?: string[] | undefined;
2502
+ registryDependencies?: string[] | undefined;
2503
+ files?: ({
2504
+ path: string;
2505
+ type: "registry:page" | "registry:file";
2506
+ target: string;
2507
+ content?: string | undefined;
2508
+ } | {
2509
+ path: string;
2510
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2511
+ content?: string | undefined;
2512
+ target?: string | undefined;
2513
+ })[] | undefined;
2514
+ cssVars?: {
2515
+ theme?: Record<string, string> | undefined;
2516
+ light?: Record<string, string> | undefined;
2517
+ dark?: Record<string, string> | undefined;
2518
+ } | undefined;
2519
+ envVars?: Record<string, string> | undefined;
2520
+ meta?: Record<string, any> | undefined;
2521
+ categories?: string[] | undefined;
2522
+ })[] | undefined;
2523
+ }>, {
2524
+ $schema?: string | undefined;
2525
+ name?: string | undefined;
2526
+ homepage?: string | undefined;
2527
+ include?: string[] | undefined;
2528
+ items?: ({
2529
+ type: "registry:base";
2530
+ name: string;
2531
+ tailwind?: {
2532
+ config?: {
2533
+ content?: string[] | undefined;
2534
+ theme?: Record<string, any> | undefined;
2535
+ plugins?: string[] | undefined;
2536
+ } | undefined;
2537
+ } | undefined;
2538
+ docs?: string | undefined;
2539
+ $schema?: string | undefined;
2540
+ config?: {
2541
+ tailwind?: {
2542
+ config?: string | undefined;
2543
+ css?: string | undefined;
2544
+ baseColor?: string | undefined;
2545
+ cssVariables?: boolean | undefined;
2546
+ prefix?: string | undefined;
2547
+ } | undefined;
2548
+ $schema?: string | undefined;
2549
+ style?: string | undefined;
2550
+ rsc?: boolean | undefined;
2551
+ tsx?: boolean | undefined;
2552
+ iconLibrary?: string | undefined;
2553
+ rtl?: boolean | undefined;
2554
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
2555
+ menuAccent?: "subtle" | "bold" | undefined;
2556
+ aliases?: {
2557
+ components?: string | undefined;
2558
+ ui?: string | undefined;
2559
+ utils?: string | undefined;
2560
+ lib?: string | undefined;
2561
+ hooks?: string | undefined;
2562
+ } | undefined;
2563
+ registries?: Record<string, string | {
2564
+ url: string;
2565
+ params?: Record<string, string> | undefined;
2566
+ headers?: Record<string, string> | undefined;
2567
+ }> | undefined;
2568
+ } | undefined;
2569
+ css?: Record<string, any> | undefined;
2570
+ extends?: string | undefined;
2571
+ title?: string | undefined;
2572
+ author?: string | undefined;
2573
+ description?: string | undefined;
2574
+ dependencies?: string[] | undefined;
2575
+ devDependencies?: string[] | undefined;
2576
+ registryDependencies?: string[] | undefined;
2577
+ files?: ({
2578
+ path: string;
2579
+ type: "registry:page" | "registry:file";
2580
+ target: string;
2581
+ content?: string | undefined;
2582
+ } | {
2583
+ path: string;
2584
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2585
+ content?: string | undefined;
2586
+ target?: string | undefined;
2587
+ })[] | undefined;
2588
+ cssVars?: {
2589
+ theme?: Record<string, string> | undefined;
2590
+ light?: Record<string, string> | undefined;
2591
+ dark?: Record<string, string> | undefined;
2592
+ } | undefined;
2593
+ envVars?: Record<string, string> | undefined;
2594
+ meta?: Record<string, any> | undefined;
2595
+ categories?: string[] | undefined;
2596
+ } | {
2597
+ type: "registry:font";
2598
+ name: string;
2599
+ font: {
2600
+ family: string;
2601
+ provider: "google";
2602
+ import: string;
2603
+ variable: string;
2604
+ weight?: string[] | undefined;
2605
+ subsets?: string[] | undefined;
2606
+ selector?: string | undefined;
2607
+ dependency?: string | undefined;
2608
+ };
2609
+ tailwind?: {
2610
+ config?: {
2611
+ content?: string[] | undefined;
2612
+ theme?: Record<string, any> | undefined;
2613
+ plugins?: string[] | undefined;
2614
+ } | undefined;
2615
+ } | undefined;
2616
+ docs?: string | undefined;
2617
+ $schema?: string | undefined;
2618
+ css?: Record<string, any> | undefined;
2619
+ extends?: string | undefined;
2620
+ title?: string | undefined;
2621
+ author?: string | undefined;
2622
+ description?: string | undefined;
2623
+ dependencies?: string[] | undefined;
2624
+ devDependencies?: string[] | undefined;
2625
+ registryDependencies?: string[] | undefined;
2626
+ files?: ({
2627
+ path: string;
2628
+ type: "registry:page" | "registry:file";
2629
+ target: string;
2630
+ content?: string | undefined;
2631
+ } | {
2632
+ path: string;
2633
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2634
+ content?: string | undefined;
2635
+ target?: string | undefined;
2636
+ })[] | undefined;
2637
+ cssVars?: {
2638
+ theme?: Record<string, string> | undefined;
2639
+ light?: Record<string, string> | undefined;
2640
+ dark?: Record<string, string> | undefined;
2641
+ } | undefined;
2642
+ envVars?: Record<string, string> | undefined;
2643
+ meta?: Record<string, any> | undefined;
2644
+ categories?: string[] | undefined;
2645
+ } | {
2646
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2647
+ name: string;
2648
+ tailwind?: {
2649
+ config?: {
2650
+ content?: string[] | undefined;
2651
+ theme?: Record<string, any> | undefined;
2652
+ plugins?: string[] | undefined;
2653
+ } | undefined;
2654
+ } | undefined;
2655
+ docs?: string | undefined;
2656
+ $schema?: string | undefined;
2657
+ css?: Record<string, any> | undefined;
2658
+ extends?: string | undefined;
2659
+ title?: string | undefined;
2660
+ author?: string | undefined;
2661
+ description?: string | undefined;
2662
+ dependencies?: string[] | undefined;
2663
+ devDependencies?: string[] | undefined;
2664
+ registryDependencies?: string[] | undefined;
2665
+ files?: ({
2666
+ path: string;
2667
+ type: "registry:page" | "registry:file";
2668
+ target: string;
2669
+ content?: string | undefined;
2670
+ } | {
2671
+ path: string;
2672
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2673
+ content?: string | undefined;
2674
+ target?: string | undefined;
2675
+ })[] | undefined;
2676
+ cssVars?: {
2677
+ theme?: Record<string, string> | undefined;
2678
+ light?: Record<string, string> | undefined;
2679
+ dark?: Record<string, string> | undefined;
2680
+ } | undefined;
2681
+ envVars?: Record<string, string> | undefined;
2682
+ meta?: Record<string, any> | undefined;
2683
+ categories?: string[] | undefined;
2684
+ })[] | undefined;
2685
+ }, {
2686
+ $schema?: string | undefined;
2687
+ name?: string | undefined;
2688
+ homepage?: string | undefined;
2689
+ include?: string[] | undefined;
2690
+ items?: ({
2691
+ type: "registry:base";
2692
+ name: string;
2693
+ tailwind?: {
2694
+ config?: {
2695
+ content?: string[] | undefined;
2696
+ theme?: Record<string, any> | undefined;
2697
+ plugins?: string[] | undefined;
2698
+ } | undefined;
2699
+ } | undefined;
2700
+ docs?: string | undefined;
2701
+ $schema?: string | undefined;
2702
+ config?: {
2703
+ tailwind?: {
2704
+ config?: string | undefined;
2705
+ css?: string | undefined;
2706
+ baseColor?: string | undefined;
2707
+ cssVariables?: boolean | undefined;
2708
+ prefix?: string | undefined;
2709
+ } | undefined;
2710
+ $schema?: string | undefined;
2711
+ style?: string | undefined;
2712
+ rsc?: boolean | undefined;
2713
+ tsx?: boolean | undefined;
2714
+ iconLibrary?: string | undefined;
2715
+ rtl?: boolean | undefined;
2716
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
2717
+ menuAccent?: "subtle" | "bold" | undefined;
2718
+ aliases?: {
2719
+ components?: string | undefined;
2720
+ ui?: string | undefined;
2721
+ utils?: string | undefined;
2722
+ lib?: string | undefined;
2723
+ hooks?: string | undefined;
2724
+ } | undefined;
2725
+ registries?: Record<string, string | {
2726
+ url: string;
2727
+ params?: Record<string, string> | undefined;
2728
+ headers?: Record<string, string> | undefined;
2729
+ }> | undefined;
2730
+ } | undefined;
2731
+ css?: Record<string, any> | undefined;
2732
+ extends?: string | undefined;
2733
+ title?: string | undefined;
2734
+ author?: string | undefined;
2735
+ description?: string | undefined;
2736
+ dependencies?: string[] | undefined;
2737
+ devDependencies?: string[] | undefined;
2738
+ registryDependencies?: string[] | undefined;
2739
+ files?: ({
2740
+ path: string;
2741
+ type: "registry:page" | "registry:file";
2742
+ target: string;
2743
+ content?: string | undefined;
2744
+ } | {
2745
+ path: string;
2746
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2747
+ content?: string | undefined;
2748
+ target?: string | undefined;
2749
+ })[] | undefined;
2750
+ cssVars?: {
2751
+ theme?: Record<string, string> | undefined;
2752
+ light?: Record<string, string> | undefined;
2753
+ dark?: Record<string, string> | undefined;
2754
+ } | undefined;
2755
+ envVars?: Record<string, string> | undefined;
2756
+ meta?: Record<string, any> | undefined;
2757
+ categories?: string[] | undefined;
2758
+ } | {
2759
+ type: "registry:font";
2760
+ name: string;
2761
+ font: {
2762
+ family: string;
2763
+ provider: "google";
2764
+ import: string;
2765
+ variable: string;
2766
+ weight?: string[] | undefined;
2767
+ subsets?: string[] | undefined;
2768
+ selector?: string | undefined;
2769
+ dependency?: string | undefined;
2770
+ };
2771
+ tailwind?: {
2772
+ config?: {
2773
+ content?: string[] | undefined;
2774
+ theme?: Record<string, any> | undefined;
2775
+ plugins?: string[] | undefined;
2776
+ } | undefined;
2777
+ } | undefined;
2778
+ docs?: string | undefined;
2779
+ $schema?: string | undefined;
2780
+ css?: Record<string, any> | undefined;
2781
+ extends?: string | undefined;
2782
+ title?: string | undefined;
2783
+ author?: string | undefined;
2784
+ description?: string | undefined;
2785
+ dependencies?: string[] | undefined;
2786
+ devDependencies?: string[] | undefined;
2787
+ registryDependencies?: string[] | undefined;
2788
+ files?: ({
2789
+ path: string;
2790
+ type: "registry:page" | "registry:file";
2791
+ target: string;
2792
+ content?: string | undefined;
2793
+ } | {
2794
+ path: string;
2795
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2796
+ content?: string | undefined;
2797
+ target?: string | undefined;
2798
+ })[] | undefined;
2799
+ cssVars?: {
2800
+ theme?: Record<string, string> | undefined;
2801
+ light?: Record<string, string> | undefined;
2802
+ dark?: Record<string, string> | undefined;
2803
+ } | undefined;
2804
+ envVars?: Record<string, string> | undefined;
2805
+ meta?: Record<string, any> | undefined;
2806
+ categories?: string[] | undefined;
2807
+ } | {
2808
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2809
+ name: string;
2810
+ tailwind?: {
2811
+ config?: {
2812
+ content?: string[] | undefined;
2813
+ theme?: Record<string, any> | undefined;
2814
+ plugins?: string[] | undefined;
2815
+ } | undefined;
2816
+ } | undefined;
2817
+ docs?: string | undefined;
2818
+ $schema?: string | undefined;
2819
+ css?: Record<string, any> | undefined;
2820
+ extends?: string | undefined;
2821
+ title?: string | undefined;
2822
+ author?: string | undefined;
2823
+ description?: string | undefined;
2824
+ dependencies?: string[] | undefined;
2825
+ devDependencies?: string[] | undefined;
2826
+ registryDependencies?: string[] | undefined;
2827
+ files?: ({
2828
+ path: string;
2829
+ type: "registry:page" | "registry:file";
2830
+ target: string;
2831
+ content?: string | undefined;
2832
+ } | {
2833
+ path: string;
2834
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2835
+ content?: string | undefined;
2836
+ target?: string | undefined;
2837
+ })[] | undefined;
2838
+ cssVars?: {
2839
+ theme?: Record<string, string> | undefined;
2840
+ light?: Record<string, string> | undefined;
2841
+ dark?: Record<string, string> | undefined;
2842
+ } | undefined;
2843
+ envVars?: Record<string, string> | undefined;
2844
+ meta?: Record<string, any> | undefined;
2845
+ categories?: string[] | undefined;
2846
+ })[] | undefined;
2847
+ }>, {
2848
+ items: ({
2849
+ type: "registry:base";
2850
+ name: string;
2851
+ tailwind?: {
2852
+ config?: {
2853
+ content?: string[] | undefined;
2854
+ theme?: Record<string, any> | undefined;
2855
+ plugins?: string[] | undefined;
2856
+ } | undefined;
2857
+ } | undefined;
2858
+ docs?: string | undefined;
2859
+ $schema?: string | undefined;
2860
+ config?: {
2861
+ tailwind?: {
2862
+ config?: string | undefined;
2863
+ css?: string | undefined;
2864
+ baseColor?: string | undefined;
2865
+ cssVariables?: boolean | undefined;
2866
+ prefix?: string | undefined;
2867
+ } | undefined;
2868
+ $schema?: string | undefined;
2869
+ style?: string | undefined;
2870
+ rsc?: boolean | undefined;
2871
+ tsx?: boolean | undefined;
2872
+ iconLibrary?: string | undefined;
2873
+ rtl?: boolean | undefined;
2874
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
2875
+ menuAccent?: "subtle" | "bold" | undefined;
2876
+ aliases?: {
2877
+ components?: string | undefined;
2878
+ ui?: string | undefined;
2879
+ utils?: string | undefined;
2880
+ lib?: string | undefined;
2881
+ hooks?: string | undefined;
2882
+ } | undefined;
2883
+ registries?: Record<string, string | {
2884
+ url: string;
2885
+ params?: Record<string, string> | undefined;
2886
+ headers?: Record<string, string> | undefined;
2887
+ }> | undefined;
2888
+ } | undefined;
2889
+ css?: Record<string, any> | undefined;
2890
+ extends?: string | undefined;
2891
+ title?: string | undefined;
2892
+ author?: string | undefined;
2893
+ description?: string | undefined;
2894
+ dependencies?: string[] | undefined;
2895
+ devDependencies?: string[] | undefined;
2896
+ registryDependencies?: string[] | undefined;
2897
+ files?: ({
2898
+ path: string;
2899
+ type: "registry:page" | "registry:file";
2900
+ target: string;
2901
+ content?: string | undefined;
2902
+ } | {
2903
+ path: string;
2904
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2905
+ content?: string | undefined;
2906
+ target?: string | undefined;
2907
+ })[] | undefined;
2908
+ cssVars?: {
2909
+ theme?: Record<string, string> | undefined;
2910
+ light?: Record<string, string> | undefined;
2911
+ dark?: Record<string, string> | undefined;
2912
+ } | undefined;
2913
+ envVars?: Record<string, string> | undefined;
2914
+ meta?: Record<string, any> | undefined;
2915
+ categories?: string[] | undefined;
2916
+ } | {
2917
+ type: "registry:font";
2918
+ name: string;
2919
+ font: {
2920
+ family: string;
2921
+ provider: "google";
2922
+ import: string;
2923
+ variable: string;
2924
+ weight?: string[] | undefined;
2925
+ subsets?: string[] | undefined;
2926
+ selector?: string | undefined;
2927
+ dependency?: string | undefined;
2928
+ };
2929
+ tailwind?: {
2930
+ config?: {
2931
+ content?: string[] | undefined;
2932
+ theme?: Record<string, any> | undefined;
2933
+ plugins?: string[] | undefined;
2934
+ } | undefined;
2935
+ } | undefined;
2936
+ docs?: string | undefined;
2937
+ $schema?: string | undefined;
2938
+ css?: Record<string, any> | undefined;
2939
+ extends?: string | undefined;
2940
+ title?: string | undefined;
2941
+ author?: string | undefined;
2942
+ description?: string | undefined;
2943
+ dependencies?: string[] | undefined;
2944
+ devDependencies?: string[] | undefined;
2945
+ registryDependencies?: string[] | undefined;
2946
+ files?: ({
2947
+ path: string;
2948
+ type: "registry:page" | "registry:file";
2949
+ target: string;
2950
+ content?: string | undefined;
2951
+ } | {
2952
+ path: string;
2953
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2954
+ content?: string | undefined;
2955
+ target?: string | undefined;
2956
+ })[] | undefined;
2957
+ cssVars?: {
2958
+ theme?: Record<string, string> | undefined;
2959
+ light?: Record<string, string> | undefined;
2960
+ dark?: Record<string, string> | undefined;
2961
+ } | undefined;
2962
+ envVars?: Record<string, string> | undefined;
2963
+ meta?: Record<string, any> | undefined;
2964
+ categories?: string[] | undefined;
2965
+ } | {
2966
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2967
+ name: string;
2968
+ tailwind?: {
2969
+ config?: {
2970
+ content?: string[] | undefined;
2971
+ theme?: Record<string, any> | undefined;
2972
+ plugins?: string[] | undefined;
2973
+ } | undefined;
2974
+ } | undefined;
2975
+ docs?: string | undefined;
2976
+ $schema?: string | undefined;
2977
+ css?: Record<string, any> | undefined;
2978
+ extends?: string | undefined;
2979
+ title?: string | undefined;
2980
+ author?: string | undefined;
2981
+ description?: string | undefined;
2982
+ dependencies?: string[] | undefined;
2983
+ devDependencies?: string[] | undefined;
2984
+ registryDependencies?: string[] | undefined;
2985
+ files?: ({
2986
+ path: string;
2987
+ type: "registry:page" | "registry:file";
2988
+ target: string;
2989
+ content?: string | undefined;
2990
+ } | {
2991
+ path: string;
2992
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2993
+ content?: string | undefined;
2994
+ target?: string | undefined;
2995
+ })[] | undefined;
2996
+ cssVars?: {
2997
+ theme?: Record<string, string> | undefined;
2998
+ light?: Record<string, string> | undefined;
2999
+ dark?: Record<string, string> | undefined;
3000
+ } | undefined;
3001
+ envVars?: Record<string, string> | undefined;
3002
+ meta?: Record<string, any> | undefined;
3003
+ categories?: string[] | undefined;
3004
+ })[];
3005
+ $schema?: string | undefined;
3006
+ name?: string | undefined;
3007
+ homepage?: string | undefined;
3008
+ include?: string[] | undefined;
3009
+ }, {
3010
+ $schema?: string | undefined;
3011
+ name?: string | undefined;
3012
+ homepage?: string | undefined;
3013
+ include?: string[] | undefined;
3014
+ items?: ({
3015
+ type: "registry:base";
3016
+ name: string;
3017
+ tailwind?: {
3018
+ config?: {
3019
+ content?: string[] | undefined;
3020
+ theme?: Record<string, any> | undefined;
3021
+ plugins?: string[] | undefined;
3022
+ } | undefined;
3023
+ } | undefined;
3024
+ docs?: string | undefined;
3025
+ $schema?: string | undefined;
3026
+ config?: {
3027
+ tailwind?: {
3028
+ config?: string | undefined;
3029
+ css?: string | undefined;
3030
+ baseColor?: string | undefined;
3031
+ cssVariables?: boolean | undefined;
3032
+ prefix?: string | undefined;
3033
+ } | undefined;
3034
+ $schema?: string | undefined;
3035
+ style?: string | undefined;
3036
+ rsc?: boolean | undefined;
3037
+ tsx?: boolean | undefined;
3038
+ iconLibrary?: string | undefined;
3039
+ rtl?: boolean | undefined;
3040
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3041
+ menuAccent?: "subtle" | "bold" | undefined;
3042
+ aliases?: {
3043
+ components?: string | undefined;
3044
+ ui?: string | undefined;
3045
+ utils?: string | undefined;
3046
+ lib?: string | undefined;
3047
+ hooks?: string | undefined;
3048
+ } | undefined;
3049
+ registries?: Record<string, string | {
3050
+ url: string;
3051
+ params?: Record<string, string> | undefined;
3052
+ headers?: Record<string, string> | undefined;
3053
+ }> | undefined;
3054
+ } | undefined;
3055
+ css?: Record<string, any> | undefined;
3056
+ extends?: string | undefined;
3057
+ title?: string | undefined;
3058
+ author?: string | undefined;
3059
+ description?: string | undefined;
3060
+ dependencies?: string[] | undefined;
3061
+ devDependencies?: string[] | undefined;
3062
+ registryDependencies?: string[] | undefined;
3063
+ files?: ({
3064
+ path: string;
3065
+ type: "registry:page" | "registry:file";
3066
+ target: string;
3067
+ content?: string | undefined;
3068
+ } | {
3069
+ path: string;
3070
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3071
+ content?: string | undefined;
3072
+ target?: string | undefined;
3073
+ })[] | undefined;
3074
+ cssVars?: {
3075
+ theme?: Record<string, string> | undefined;
3076
+ light?: Record<string, string> | undefined;
3077
+ dark?: Record<string, string> | undefined;
3078
+ } | undefined;
3079
+ envVars?: Record<string, string> | undefined;
3080
+ meta?: Record<string, any> | undefined;
3081
+ categories?: string[] | undefined;
3082
+ } | {
3083
+ type: "registry:font";
3084
+ name: string;
3085
+ font: {
3086
+ family: string;
3087
+ provider: "google";
3088
+ import: string;
3089
+ variable: string;
3090
+ weight?: string[] | undefined;
3091
+ subsets?: string[] | undefined;
3092
+ selector?: string | undefined;
3093
+ dependency?: string | undefined;
3094
+ };
3095
+ tailwind?: {
3096
+ config?: {
3097
+ content?: string[] | undefined;
3098
+ theme?: Record<string, any> | undefined;
3099
+ plugins?: string[] | undefined;
3100
+ } | undefined;
3101
+ } | undefined;
3102
+ docs?: string | undefined;
3103
+ $schema?: string | undefined;
3104
+ css?: Record<string, any> | undefined;
3105
+ extends?: string | undefined;
3106
+ title?: string | undefined;
3107
+ author?: string | undefined;
3108
+ description?: string | undefined;
3109
+ dependencies?: string[] | undefined;
3110
+ devDependencies?: string[] | undefined;
3111
+ registryDependencies?: string[] | undefined;
3112
+ files?: ({
3113
+ path: string;
3114
+ type: "registry:page" | "registry:file";
3115
+ target: string;
3116
+ content?: string | undefined;
3117
+ } | {
3118
+ path: string;
3119
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3120
+ content?: string | undefined;
3121
+ target?: string | undefined;
3122
+ })[] | undefined;
3123
+ cssVars?: {
3124
+ theme?: Record<string, string> | undefined;
3125
+ light?: Record<string, string> | undefined;
3126
+ dark?: Record<string, string> | undefined;
3127
+ } | undefined;
3128
+ envVars?: Record<string, string> | undefined;
3129
+ meta?: Record<string, any> | undefined;
3130
+ categories?: string[] | undefined;
3131
+ } | {
3132
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3133
+ name: string;
3134
+ tailwind?: {
3135
+ config?: {
3136
+ content?: string[] | undefined;
3137
+ theme?: Record<string, any> | undefined;
3138
+ plugins?: string[] | undefined;
3139
+ } | undefined;
3140
+ } | undefined;
3141
+ docs?: string | undefined;
3142
+ $schema?: string | undefined;
3143
+ css?: Record<string, any> | undefined;
3144
+ extends?: string | undefined;
3145
+ title?: string | undefined;
3146
+ author?: string | undefined;
3147
+ description?: string | undefined;
3148
+ dependencies?: string[] | undefined;
3149
+ devDependencies?: string[] | undefined;
3150
+ registryDependencies?: string[] | undefined;
3151
+ files?: ({
3152
+ path: string;
3153
+ type: "registry:page" | "registry:file";
3154
+ target: string;
3155
+ content?: string | undefined;
3156
+ } | {
3157
+ path: string;
3158
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3159
+ content?: string | undefined;
3160
+ target?: string | undefined;
3161
+ })[] | undefined;
3162
+ cssVars?: {
3163
+ theme?: Record<string, string> | undefined;
3164
+ light?: Record<string, string> | undefined;
3165
+ dark?: Record<string, string> | undefined;
3166
+ } | undefined;
3167
+ envVars?: Record<string, string> | undefined;
3168
+ meta?: Record<string, any> | undefined;
3169
+ categories?: string[] | undefined;
3170
+ })[] | undefined;
3171
+ }>;
3172
+ declare const registrySchema: z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3173
+ $schema: z.ZodOptional<z.ZodString>;
3174
+ name: z.ZodOptional<z.ZodString>;
3175
+ homepage: z.ZodOptional<z.ZodString>;
3176
+ include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3177
+ items: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3178
+ $schema: z.ZodOptional<z.ZodString>;
3179
+ extends: z.ZodOptional<z.ZodString>;
3180
+ name: z.ZodString;
3181
+ title: z.ZodOptional<z.ZodString>;
3182
+ author: z.ZodOptional<z.ZodString>;
3183
+ description: z.ZodOptional<z.ZodString>;
3184
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3185
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3186
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3187
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3188
+ path: z.ZodString;
3189
+ content: z.ZodOptional<z.ZodString>;
3190
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3191
+ target: z.ZodString;
3192
+ }, "strip", z.ZodTypeAny, {
3193
+ path: string;
3194
+ type: "registry:page" | "registry:file";
3195
+ target: string;
3196
+ content?: string | undefined;
3197
+ }, {
3198
+ path: string;
3199
+ type: "registry:page" | "registry:file";
3200
+ target: string;
3201
+ content?: string | undefined;
3202
+ }>, z.ZodObject<{
3203
+ path: z.ZodString;
3204
+ content: z.ZodOptional<z.ZodString>;
3205
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3206
+ target: z.ZodOptional<z.ZodString>;
3207
+ }, "strip", z.ZodTypeAny, {
3208
+ path: string;
3209
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3210
+ content?: string | undefined;
3211
+ target?: string | undefined;
3212
+ }, {
3213
+ path: string;
3214
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3215
+ content?: string | undefined;
3216
+ target?: string | undefined;
3217
+ }>]>, "many">>;
3218
+ tailwind: z.ZodOptional<z.ZodObject<{
3219
+ config: z.ZodOptional<z.ZodObject<{
3220
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3221
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3222
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3223
+ }, "strip", z.ZodTypeAny, {
3224
+ content?: string[] | undefined;
3225
+ theme?: Record<string, any> | undefined;
3226
+ plugins?: string[] | undefined;
3227
+ }, {
3228
+ content?: string[] | undefined;
3229
+ theme?: Record<string, any> | undefined;
3230
+ plugins?: string[] | undefined;
3231
+ }>>;
3232
+ }, "strip", z.ZodTypeAny, {
3233
+ config?: {
3234
+ content?: string[] | undefined;
3235
+ theme?: Record<string, any> | undefined;
3236
+ plugins?: string[] | undefined;
3237
+ } | undefined;
3238
+ }, {
3239
+ config?: {
3240
+ content?: string[] | undefined;
3241
+ theme?: Record<string, any> | undefined;
3242
+ plugins?: string[] | undefined;
3243
+ } | undefined;
3244
+ }>>;
3245
+ cssVars: z.ZodOptional<z.ZodObject<{
3246
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3247
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3248
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3249
+ }, "strip", z.ZodTypeAny, {
3250
+ theme?: Record<string, string> | undefined;
3251
+ light?: Record<string, string> | undefined;
3252
+ dark?: Record<string, string> | undefined;
3253
+ }, {
3254
+ theme?: Record<string, string> | undefined;
3255
+ light?: Record<string, string> | undefined;
3256
+ dark?: Record<string, string> | undefined;
3257
+ }>>;
3258
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3259
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3260
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3261
+ docs: z.ZodOptional<z.ZodString>;
3262
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3263
+ } & {
3264
+ type: z.ZodLiteral<"registry:base">;
3265
+ config: z.ZodOptional<z.ZodObject<{
3266
+ $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3267
+ style: z.ZodOptional<z.ZodString>;
3268
+ rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3269
+ tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3270
+ tailwind: z.ZodOptional<z.ZodObject<{
3271
+ config: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3272
+ css: z.ZodOptional<z.ZodString>;
3273
+ baseColor: z.ZodOptional<z.ZodString>;
3274
+ cssVariables: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3275
+ prefix: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
3276
+ }, "strip", z.ZodTypeAny, {
3277
+ config?: string | undefined;
3278
+ css?: string | undefined;
3279
+ baseColor?: string | undefined;
3280
+ cssVariables?: boolean | undefined;
3281
+ prefix?: string | undefined;
3282
+ }, {
3283
+ config?: string | undefined;
3284
+ css?: string | undefined;
3285
+ baseColor?: string | undefined;
3286
+ cssVariables?: boolean | undefined;
3287
+ prefix?: string | undefined;
3288
+ }>>;
3289
+ iconLibrary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3290
+ rtl: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
3291
+ menuColor: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted", "default-translucent", "inverted-translucent"]>>>>;
3292
+ menuAccent: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>>;
3293
+ aliases: z.ZodOptional<z.ZodObject<{
3294
+ components: z.ZodOptional<z.ZodString>;
3295
+ utils: z.ZodOptional<z.ZodString>;
3296
+ ui: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3297
+ lib: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3298
+ hooks: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3299
+ }, "strip", z.ZodTypeAny, {
3300
+ components?: string | undefined;
3301
+ ui?: string | undefined;
3302
+ utils?: string | undefined;
3303
+ lib?: string | undefined;
3304
+ hooks?: string | undefined;
3305
+ }, {
3306
+ components?: string | undefined;
3307
+ ui?: string | undefined;
3308
+ utils?: string | undefined;
3309
+ lib?: string | undefined;
3310
+ hooks?: string | undefined;
3311
+ }>>;
3312
+ registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3313
+ url: z.ZodEffects<z.ZodString, string, string>;
3314
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3315
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3316
+ }, "strip", z.ZodTypeAny, {
3317
+ url: string;
3318
+ params?: Record<string, string> | undefined;
3319
+ headers?: Record<string, string> | undefined;
3320
+ }, {
3321
+ url: string;
3322
+ params?: Record<string, string> | undefined;
3323
+ headers?: Record<string, string> | undefined;
3324
+ }>]>>>>;
3325
+ }, "strict", z.ZodTypeAny, {
3326
+ tailwind?: {
3327
+ config?: string | undefined;
3328
+ css?: string | undefined;
3329
+ baseColor?: string | undefined;
3330
+ cssVariables?: boolean | undefined;
3331
+ prefix?: string | undefined;
3332
+ } | undefined;
3333
+ $schema?: string | undefined;
3334
+ style?: string | undefined;
3335
+ rsc?: boolean | undefined;
3336
+ tsx?: boolean | undefined;
3337
+ iconLibrary?: string | undefined;
3338
+ rtl?: boolean | undefined;
3339
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3340
+ menuAccent?: "subtle" | "bold" | undefined;
3341
+ aliases?: {
3342
+ components?: string | undefined;
3343
+ ui?: string | undefined;
3344
+ utils?: string | undefined;
3345
+ lib?: string | undefined;
3346
+ hooks?: string | undefined;
3347
+ } | undefined;
3348
+ registries?: Record<string, string | {
3349
+ url: string;
3350
+ params?: Record<string, string> | undefined;
3351
+ headers?: Record<string, string> | undefined;
3352
+ }> | undefined;
3353
+ }, {
3354
+ tailwind?: {
3355
+ config?: string | undefined;
3356
+ css?: string | undefined;
3357
+ baseColor?: string | undefined;
3358
+ cssVariables?: boolean | undefined;
3359
+ prefix?: string | undefined;
3360
+ } | undefined;
3361
+ $schema?: string | undefined;
3362
+ style?: string | undefined;
3363
+ rsc?: boolean | undefined;
3364
+ tsx?: boolean | undefined;
3365
+ iconLibrary?: string | undefined;
3366
+ rtl?: boolean | undefined;
3367
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3368
+ menuAccent?: "subtle" | "bold" | undefined;
3369
+ aliases?: {
3370
+ components?: string | undefined;
3371
+ ui?: string | undefined;
3372
+ utils?: string | undefined;
3373
+ lib?: string | undefined;
3374
+ hooks?: string | undefined;
3375
+ } | undefined;
3376
+ registries?: Record<string, string | {
3377
+ url: string;
3378
+ params?: Record<string, string> | undefined;
3379
+ headers?: Record<string, string> | undefined;
3380
+ }> | undefined;
3381
+ }>>;
3382
+ }, "strip", z.ZodTypeAny, {
3383
+ type: "registry:base";
3384
+ name: string;
3385
+ tailwind?: {
3386
+ config?: {
3387
+ content?: string[] | undefined;
3388
+ theme?: Record<string, any> | undefined;
3389
+ plugins?: string[] | undefined;
3390
+ } | undefined;
3391
+ } | undefined;
3392
+ docs?: string | undefined;
3393
+ $schema?: string | undefined;
3394
+ config?: {
3395
+ tailwind?: {
3396
+ config?: string | undefined;
3397
+ css?: string | undefined;
3398
+ baseColor?: string | undefined;
3399
+ cssVariables?: boolean | undefined;
3400
+ prefix?: string | undefined;
3401
+ } | undefined;
3402
+ $schema?: string | undefined;
3403
+ style?: string | undefined;
3404
+ rsc?: boolean | undefined;
3405
+ tsx?: boolean | undefined;
3406
+ iconLibrary?: string | undefined;
3407
+ rtl?: boolean | undefined;
3408
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3409
+ menuAccent?: "subtle" | "bold" | undefined;
3410
+ aliases?: {
3411
+ components?: string | undefined;
3412
+ ui?: string | undefined;
3413
+ utils?: string | undefined;
3414
+ lib?: string | undefined;
3415
+ hooks?: string | undefined;
3416
+ } | undefined;
3417
+ registries?: Record<string, string | {
3418
+ url: string;
3419
+ params?: Record<string, string> | undefined;
3420
+ headers?: Record<string, string> | undefined;
3421
+ }> | undefined;
3422
+ } | undefined;
3423
+ css?: Record<string, any> | undefined;
3424
+ extends?: string | undefined;
3425
+ title?: string | undefined;
3426
+ author?: string | undefined;
3427
+ description?: string | undefined;
3428
+ dependencies?: string[] | undefined;
3429
+ devDependencies?: string[] | undefined;
3430
+ registryDependencies?: string[] | undefined;
3431
+ files?: ({
3432
+ path: string;
3433
+ type: "registry:page" | "registry:file";
3434
+ target: string;
3435
+ content?: string | undefined;
3436
+ } | {
3437
+ path: string;
3438
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3439
+ content?: string | undefined;
3440
+ target?: string | undefined;
3441
+ })[] | undefined;
3442
+ cssVars?: {
3443
+ theme?: Record<string, string> | undefined;
3444
+ light?: Record<string, string> | undefined;
3445
+ dark?: Record<string, string> | undefined;
3446
+ } | undefined;
3447
+ envVars?: Record<string, string> | undefined;
3448
+ meta?: Record<string, any> | undefined;
3449
+ categories?: string[] | undefined;
3450
+ }, {
3451
+ type: "registry:base";
3452
+ name: string;
3453
+ tailwind?: {
3454
+ config?: {
3455
+ content?: string[] | undefined;
3456
+ theme?: Record<string, any> | undefined;
3457
+ plugins?: string[] | undefined;
3458
+ } | undefined;
3459
+ } | undefined;
3460
+ docs?: string | undefined;
3461
+ $schema?: string | undefined;
3462
+ config?: {
3463
+ tailwind?: {
3464
+ config?: string | undefined;
3465
+ css?: string | undefined;
3466
+ baseColor?: string | undefined;
3467
+ cssVariables?: boolean | undefined;
3468
+ prefix?: string | undefined;
3469
+ } | undefined;
3470
+ $schema?: string | undefined;
3471
+ style?: string | undefined;
3472
+ rsc?: boolean | undefined;
3473
+ tsx?: boolean | undefined;
3474
+ iconLibrary?: string | undefined;
3475
+ rtl?: boolean | undefined;
3476
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3477
+ menuAccent?: "subtle" | "bold" | undefined;
3478
+ aliases?: {
3479
+ components?: string | undefined;
3480
+ ui?: string | undefined;
3481
+ utils?: string | undefined;
3482
+ lib?: string | undefined;
3483
+ hooks?: string | undefined;
3484
+ } | undefined;
3485
+ registries?: Record<string, string | {
3486
+ url: string;
3487
+ params?: Record<string, string> | undefined;
3488
+ headers?: Record<string, string> | undefined;
3489
+ }> | undefined;
3490
+ } | undefined;
3491
+ css?: Record<string, any> | undefined;
3492
+ extends?: string | undefined;
3493
+ title?: string | undefined;
3494
+ author?: string | undefined;
3495
+ description?: string | undefined;
3496
+ dependencies?: string[] | undefined;
3497
+ devDependencies?: string[] | undefined;
3498
+ registryDependencies?: string[] | undefined;
3499
+ files?: ({
3500
+ path: string;
3501
+ type: "registry:page" | "registry:file";
3502
+ target: string;
3503
+ content?: string | undefined;
3504
+ } | {
3505
+ path: string;
3506
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3507
+ content?: string | undefined;
3508
+ target?: string | undefined;
3509
+ })[] | undefined;
3510
+ cssVars?: {
3511
+ theme?: Record<string, string> | undefined;
3512
+ light?: Record<string, string> | undefined;
3513
+ dark?: Record<string, string> | undefined;
3514
+ } | undefined;
3515
+ envVars?: Record<string, string> | undefined;
3516
+ meta?: Record<string, any> | undefined;
3517
+ categories?: string[] | undefined;
3518
+ }>, z.ZodObject<{
3519
+ $schema: z.ZodOptional<z.ZodString>;
3520
+ extends: z.ZodOptional<z.ZodString>;
3521
+ name: z.ZodString;
3522
+ title: z.ZodOptional<z.ZodString>;
3523
+ author: z.ZodOptional<z.ZodString>;
3524
+ description: z.ZodOptional<z.ZodString>;
3525
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3526
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3527
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3528
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3529
+ path: z.ZodString;
3530
+ content: z.ZodOptional<z.ZodString>;
3531
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3532
+ target: z.ZodString;
3533
+ }, "strip", z.ZodTypeAny, {
3534
+ path: string;
3535
+ type: "registry:page" | "registry:file";
3536
+ target: string;
3537
+ content?: string | undefined;
3538
+ }, {
3539
+ path: string;
3540
+ type: "registry:page" | "registry:file";
3541
+ target: string;
3542
+ content?: string | undefined;
3543
+ }>, z.ZodObject<{
3544
+ path: z.ZodString;
3545
+ content: z.ZodOptional<z.ZodString>;
3546
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3547
+ target: z.ZodOptional<z.ZodString>;
3548
+ }, "strip", z.ZodTypeAny, {
3549
+ path: string;
3550
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3551
+ content?: string | undefined;
3552
+ target?: string | undefined;
3553
+ }, {
3554
+ path: string;
3555
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3556
+ content?: string | undefined;
3557
+ target?: string | undefined;
3558
+ }>]>, "many">>;
3559
+ tailwind: z.ZodOptional<z.ZodObject<{
3560
+ config: z.ZodOptional<z.ZodObject<{
3561
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3562
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3563
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3564
+ }, "strip", z.ZodTypeAny, {
3565
+ content?: string[] | undefined;
3566
+ theme?: Record<string, any> | undefined;
3567
+ plugins?: string[] | undefined;
3568
+ }, {
3569
+ content?: string[] | undefined;
3570
+ theme?: Record<string, any> | undefined;
3571
+ plugins?: string[] | undefined;
3572
+ }>>;
3573
+ }, "strip", z.ZodTypeAny, {
3574
+ config?: {
3575
+ content?: string[] | undefined;
3576
+ theme?: Record<string, any> | undefined;
3577
+ plugins?: string[] | undefined;
3578
+ } | undefined;
3579
+ }, {
3580
+ config?: {
3581
+ content?: string[] | undefined;
3582
+ theme?: Record<string, any> | undefined;
3583
+ plugins?: string[] | undefined;
3584
+ } | undefined;
3585
+ }>>;
3586
+ cssVars: z.ZodOptional<z.ZodObject<{
3587
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3588
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3589
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3590
+ }, "strip", z.ZodTypeAny, {
3591
+ theme?: Record<string, string> | undefined;
3592
+ light?: Record<string, string> | undefined;
3593
+ dark?: Record<string, string> | undefined;
3594
+ }, {
3595
+ theme?: Record<string, string> | undefined;
3596
+ light?: Record<string, string> | undefined;
3597
+ dark?: Record<string, string> | undefined;
3598
+ }>>;
3599
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3600
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3601
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3602
+ docs: z.ZodOptional<z.ZodString>;
3603
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3604
+ } & {
3605
+ type: z.ZodLiteral<"registry:font">;
3606
+ font: z.ZodObject<{
3607
+ family: z.ZodString;
3608
+ provider: z.ZodLiteral<"google">;
3609
+ import: z.ZodString;
3610
+ variable: z.ZodString;
3611
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3612
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3613
+ selector: z.ZodOptional<z.ZodString>;
3614
+ dependency: z.ZodOptional<z.ZodString>;
3615
+ }, "strip", z.ZodTypeAny, {
3616
+ family: string;
3617
+ provider: "google";
3618
+ import: string;
3619
+ variable: string;
3620
+ weight?: string[] | undefined;
3621
+ subsets?: string[] | undefined;
3622
+ selector?: string | undefined;
3623
+ dependency?: string | undefined;
3624
+ }, {
3625
+ family: string;
3626
+ provider: "google";
3627
+ import: string;
3628
+ variable: string;
3629
+ weight?: string[] | undefined;
3630
+ subsets?: string[] | undefined;
3631
+ selector?: string | undefined;
3632
+ dependency?: string | undefined;
3633
+ }>;
3634
+ }, "strip", z.ZodTypeAny, {
3635
+ type: "registry:font";
3636
+ name: string;
3637
+ font: {
3638
+ family: string;
3639
+ provider: "google";
3640
+ import: string;
3641
+ variable: string;
3642
+ weight?: string[] | undefined;
3643
+ subsets?: string[] | undefined;
3644
+ selector?: string | undefined;
3645
+ dependency?: string | undefined;
3646
+ };
3647
+ tailwind?: {
3648
+ config?: {
3649
+ content?: string[] | undefined;
3650
+ theme?: Record<string, any> | undefined;
3651
+ plugins?: string[] | undefined;
3652
+ } | undefined;
3653
+ } | undefined;
3654
+ docs?: string | undefined;
3655
+ $schema?: string | undefined;
3656
+ css?: Record<string, any> | undefined;
3657
+ extends?: string | undefined;
3658
+ title?: string | undefined;
3659
+ author?: string | undefined;
3660
+ description?: string | undefined;
3661
+ dependencies?: string[] | undefined;
3662
+ devDependencies?: string[] | undefined;
3663
+ registryDependencies?: string[] | undefined;
3664
+ files?: ({
3665
+ path: string;
3666
+ type: "registry:page" | "registry:file";
3667
+ target: string;
3668
+ content?: string | undefined;
3669
+ } | {
3670
+ path: string;
3671
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3672
+ content?: string | undefined;
3673
+ target?: string | undefined;
3674
+ })[] | undefined;
3675
+ cssVars?: {
3676
+ theme?: Record<string, string> | undefined;
3677
+ light?: Record<string, string> | undefined;
3678
+ dark?: Record<string, string> | undefined;
3679
+ } | undefined;
3680
+ envVars?: Record<string, string> | undefined;
3681
+ meta?: Record<string, any> | undefined;
3682
+ categories?: string[] | undefined;
3683
+ }, {
3684
+ type: "registry:font";
3685
+ name: string;
3686
+ font: {
3687
+ family: string;
3688
+ provider: "google";
3689
+ import: string;
3690
+ variable: string;
3691
+ weight?: string[] | undefined;
3692
+ subsets?: string[] | undefined;
3693
+ selector?: string | undefined;
3694
+ dependency?: string | undefined;
3695
+ };
3696
+ tailwind?: {
3697
+ config?: {
3698
+ content?: string[] | undefined;
3699
+ theme?: Record<string, any> | undefined;
3700
+ plugins?: string[] | undefined;
3701
+ } | undefined;
3702
+ } | undefined;
3703
+ docs?: string | undefined;
3704
+ $schema?: string | undefined;
3705
+ css?: Record<string, any> | undefined;
3706
+ extends?: string | undefined;
3707
+ title?: string | undefined;
3708
+ author?: string | undefined;
3709
+ description?: string | undefined;
3710
+ dependencies?: string[] | undefined;
3711
+ devDependencies?: string[] | undefined;
3712
+ registryDependencies?: string[] | undefined;
3713
+ files?: ({
3714
+ path: string;
3715
+ type: "registry:page" | "registry:file";
3716
+ target: string;
3717
+ content?: string | undefined;
3718
+ } | {
3719
+ path: string;
3720
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3721
+ content?: string | undefined;
3722
+ target?: string | undefined;
3723
+ })[] | undefined;
3724
+ cssVars?: {
3725
+ theme?: Record<string, string> | undefined;
3726
+ light?: Record<string, string> | undefined;
3727
+ dark?: Record<string, string> | undefined;
3728
+ } | undefined;
3729
+ envVars?: Record<string, string> | undefined;
3730
+ meta?: Record<string, any> | undefined;
3731
+ categories?: string[] | undefined;
3732
+ }>, z.ZodObject<{
3733
+ $schema: z.ZodOptional<z.ZodString>;
3734
+ extends: z.ZodOptional<z.ZodString>;
3735
+ name: z.ZodString;
3736
+ title: z.ZodOptional<z.ZodString>;
3737
+ author: z.ZodOptional<z.ZodString>;
3738
+ description: z.ZodOptional<z.ZodString>;
3739
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3740
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3741
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3742
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3743
+ path: z.ZodString;
3744
+ content: z.ZodOptional<z.ZodString>;
3745
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3746
+ target: z.ZodString;
3747
+ }, "strip", z.ZodTypeAny, {
3748
+ path: string;
3749
+ type: "registry:page" | "registry:file";
3750
+ target: string;
3751
+ content?: string | undefined;
3752
+ }, {
3753
+ path: string;
3754
+ type: "registry:page" | "registry:file";
3755
+ target: string;
3756
+ content?: string | undefined;
3757
+ }>, z.ZodObject<{
3758
+ path: z.ZodString;
3759
+ content: z.ZodOptional<z.ZodString>;
3760
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3761
+ target: z.ZodOptional<z.ZodString>;
3762
+ }, "strip", z.ZodTypeAny, {
3763
+ path: string;
3764
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3765
+ content?: string | undefined;
3766
+ target?: string | undefined;
3767
+ }, {
3768
+ path: string;
3769
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3770
+ content?: string | undefined;
3771
+ target?: string | undefined;
3772
+ }>]>, "many">>;
3773
+ tailwind: z.ZodOptional<z.ZodObject<{
3774
+ config: z.ZodOptional<z.ZodObject<{
3775
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3776
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3777
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3778
+ }, "strip", z.ZodTypeAny, {
3779
+ content?: string[] | undefined;
3780
+ theme?: Record<string, any> | undefined;
3781
+ plugins?: string[] | undefined;
3782
+ }, {
3783
+ content?: string[] | undefined;
3784
+ theme?: Record<string, any> | undefined;
3785
+ plugins?: string[] | undefined;
3786
+ }>>;
3787
+ }, "strip", z.ZodTypeAny, {
3788
+ config?: {
3789
+ content?: string[] | undefined;
3790
+ theme?: Record<string, any> | undefined;
3791
+ plugins?: string[] | undefined;
3792
+ } | undefined;
3793
+ }, {
3794
+ config?: {
3795
+ content?: string[] | undefined;
3796
+ theme?: Record<string, any> | undefined;
3797
+ plugins?: string[] | undefined;
3798
+ } | undefined;
3799
+ }>>;
3800
+ cssVars: z.ZodOptional<z.ZodObject<{
3801
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3802
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3803
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3804
+ }, "strip", z.ZodTypeAny, {
3805
+ theme?: Record<string, string> | undefined;
3806
+ light?: Record<string, string> | undefined;
3807
+ dark?: Record<string, string> | undefined;
3808
+ }, {
3809
+ theme?: Record<string, string> | undefined;
3810
+ light?: Record<string, string> | undefined;
3811
+ dark?: Record<string, string> | undefined;
3812
+ }>>;
3813
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3814
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3815
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3816
+ docs: z.ZodOptional<z.ZodString>;
3817
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3818
+ } & {
3819
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
3820
+ }, "strip", z.ZodTypeAny, {
3821
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3822
+ name: string;
3823
+ tailwind?: {
3824
+ config?: {
3825
+ content?: string[] | undefined;
3826
+ theme?: Record<string, any> | undefined;
3827
+ plugins?: string[] | undefined;
3828
+ } | undefined;
3829
+ } | undefined;
3830
+ docs?: string | undefined;
3831
+ $schema?: string | undefined;
3832
+ css?: Record<string, any> | undefined;
3833
+ extends?: string | undefined;
3834
+ title?: string | undefined;
3835
+ author?: string | undefined;
3836
+ description?: string | undefined;
3837
+ dependencies?: string[] | undefined;
3838
+ devDependencies?: string[] | undefined;
3839
+ registryDependencies?: string[] | undefined;
3840
+ files?: ({
3841
+ path: string;
3842
+ type: "registry:page" | "registry:file";
3843
+ target: string;
3844
+ content?: string | undefined;
3845
+ } | {
3846
+ path: string;
3847
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3848
+ content?: string | undefined;
3849
+ target?: string | undefined;
3850
+ })[] | undefined;
3851
+ cssVars?: {
3852
+ theme?: Record<string, string> | undefined;
3853
+ light?: Record<string, string> | undefined;
3854
+ dark?: Record<string, string> | undefined;
3855
+ } | undefined;
3856
+ envVars?: Record<string, string> | undefined;
3857
+ meta?: Record<string, any> | undefined;
3858
+ categories?: string[] | undefined;
3859
+ }, {
3860
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3861
+ name: string;
3862
+ tailwind?: {
3863
+ config?: {
3864
+ content?: string[] | undefined;
3865
+ theme?: Record<string, any> | undefined;
3866
+ plugins?: string[] | undefined;
3867
+ } | undefined;
3868
+ } | undefined;
3869
+ docs?: string | undefined;
3870
+ $schema?: string | undefined;
3871
+ css?: Record<string, any> | undefined;
3872
+ extends?: string | undefined;
3873
+ title?: string | undefined;
3874
+ author?: string | undefined;
3875
+ description?: string | undefined;
3876
+ dependencies?: string[] | undefined;
3877
+ devDependencies?: string[] | undefined;
3878
+ registryDependencies?: string[] | undefined;
3879
+ files?: ({
3880
+ path: string;
3881
+ type: "registry:page" | "registry:file";
3882
+ target: string;
3883
+ content?: string | undefined;
3884
+ } | {
3885
+ path: string;
3886
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3887
+ content?: string | undefined;
3888
+ target?: string | undefined;
3889
+ })[] | undefined;
3890
+ cssVars?: {
3891
+ theme?: Record<string, string> | undefined;
3892
+ light?: Record<string, string> | undefined;
3893
+ dark?: Record<string, string> | undefined;
3894
+ } | undefined;
3895
+ envVars?: Record<string, string> | undefined;
3896
+ meta?: Record<string, any> | undefined;
3897
+ categories?: string[] | undefined;
3898
+ }>]>, "many">>;
3899
+ }, "strip", z.ZodTypeAny, {
3900
+ $schema?: string | undefined;
3901
+ name?: string | undefined;
3902
+ homepage?: string | undefined;
3903
+ include?: string[] | undefined;
3904
+ items?: ({
3905
+ type: "registry:base";
3906
+ name: string;
3907
+ tailwind?: {
3908
+ config?: {
3909
+ content?: string[] | undefined;
3910
+ theme?: Record<string, any> | undefined;
3911
+ plugins?: string[] | undefined;
3912
+ } | undefined;
3913
+ } | undefined;
3914
+ docs?: string | undefined;
3915
+ $schema?: string | undefined;
3916
+ config?: {
3917
+ tailwind?: {
3918
+ config?: string | undefined;
3919
+ css?: string | undefined;
3920
+ baseColor?: string | undefined;
3921
+ cssVariables?: boolean | undefined;
3922
+ prefix?: string | undefined;
3923
+ } | undefined;
3924
+ $schema?: string | undefined;
3925
+ style?: string | undefined;
3926
+ rsc?: boolean | undefined;
3927
+ tsx?: boolean | undefined;
3928
+ iconLibrary?: string | undefined;
3929
+ rtl?: boolean | undefined;
3930
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
3931
+ menuAccent?: "subtle" | "bold" | undefined;
3932
+ aliases?: {
3933
+ components?: string | undefined;
3934
+ ui?: string | undefined;
3935
+ utils?: string | undefined;
3936
+ lib?: string | undefined;
3937
+ hooks?: string | undefined;
3938
+ } | undefined;
3939
+ registries?: Record<string, string | {
3940
+ url: string;
3941
+ params?: Record<string, string> | undefined;
3942
+ headers?: Record<string, string> | undefined;
3943
+ }> | undefined;
3944
+ } | undefined;
3945
+ css?: Record<string, any> | undefined;
3946
+ extends?: string | undefined;
3947
+ title?: string | undefined;
3948
+ author?: string | undefined;
3949
+ description?: string | undefined;
3950
+ dependencies?: string[] | undefined;
3951
+ devDependencies?: string[] | undefined;
3952
+ registryDependencies?: string[] | undefined;
3953
+ files?: ({
3954
+ path: string;
3955
+ type: "registry:page" | "registry:file";
3956
+ target: string;
3957
+ content?: string | undefined;
3958
+ } | {
3959
+ path: string;
3960
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3961
+ content?: string | undefined;
3962
+ target?: string | undefined;
3963
+ })[] | undefined;
3964
+ cssVars?: {
3965
+ theme?: Record<string, string> | undefined;
3966
+ light?: Record<string, string> | undefined;
3967
+ dark?: Record<string, string> | undefined;
3968
+ } | undefined;
3969
+ envVars?: Record<string, string> | undefined;
3970
+ meta?: Record<string, any> | undefined;
3971
+ categories?: string[] | undefined;
3972
+ } | {
3973
+ type: "registry:font";
3974
+ name: string;
3975
+ font: {
3976
+ family: string;
3977
+ provider: "google";
3978
+ import: string;
3979
+ variable: string;
3980
+ weight?: string[] | undefined;
3981
+ subsets?: string[] | undefined;
3982
+ selector?: string | undefined;
3983
+ dependency?: string | undefined;
3984
+ };
3985
+ tailwind?: {
3986
+ config?: {
3987
+ content?: string[] | undefined;
3988
+ theme?: Record<string, any> | undefined;
3989
+ plugins?: string[] | undefined;
3990
+ } | undefined;
3991
+ } | undefined;
3992
+ docs?: string | undefined;
3993
+ $schema?: string | undefined;
3994
+ css?: Record<string, any> | undefined;
3995
+ extends?: string | undefined;
3996
+ title?: string | undefined;
3997
+ author?: string | undefined;
3998
+ description?: string | undefined;
3999
+ dependencies?: string[] | undefined;
4000
+ devDependencies?: string[] | undefined;
4001
+ registryDependencies?: string[] | undefined;
4002
+ files?: ({
4003
+ path: string;
4004
+ type: "registry:page" | "registry:file";
4005
+ target: string;
4006
+ content?: string | undefined;
4007
+ } | {
4008
+ path: string;
4009
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4010
+ content?: string | undefined;
4011
+ target?: string | undefined;
4012
+ })[] | undefined;
4013
+ cssVars?: {
4014
+ theme?: Record<string, string> | undefined;
4015
+ light?: Record<string, string> | undefined;
4016
+ dark?: Record<string, string> | undefined;
4017
+ } | undefined;
4018
+ envVars?: Record<string, string> | undefined;
4019
+ meta?: Record<string, any> | undefined;
4020
+ categories?: string[] | undefined;
4021
+ } | {
4022
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4023
+ name: string;
4024
+ tailwind?: {
4025
+ config?: {
4026
+ content?: string[] | undefined;
4027
+ theme?: Record<string, any> | undefined;
4028
+ plugins?: string[] | undefined;
4029
+ } | undefined;
4030
+ } | undefined;
4031
+ docs?: string | undefined;
4032
+ $schema?: string | undefined;
4033
+ css?: Record<string, any> | undefined;
4034
+ extends?: string | undefined;
4035
+ title?: string | undefined;
4036
+ author?: string | undefined;
4037
+ description?: string | undefined;
4038
+ dependencies?: string[] | undefined;
4039
+ devDependencies?: string[] | undefined;
4040
+ registryDependencies?: string[] | undefined;
4041
+ files?: ({
4042
+ path: string;
4043
+ type: "registry:page" | "registry:file";
4044
+ target: string;
4045
+ content?: string | undefined;
4046
+ } | {
4047
+ path: string;
4048
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4049
+ content?: string | undefined;
4050
+ target?: string | undefined;
4051
+ })[] | undefined;
4052
+ cssVars?: {
4053
+ theme?: Record<string, string> | undefined;
4054
+ light?: Record<string, string> | undefined;
4055
+ dark?: Record<string, string> | undefined;
4056
+ } | undefined;
4057
+ envVars?: Record<string, string> | undefined;
4058
+ meta?: Record<string, any> | undefined;
4059
+ categories?: string[] | undefined;
4060
+ })[] | undefined;
4061
+ }, {
4062
+ $schema?: string | undefined;
4063
+ name?: string | undefined;
4064
+ homepage?: string | undefined;
4065
+ include?: string[] | undefined;
4066
+ items?: ({
4067
+ type: "registry:base";
4068
+ name: string;
4069
+ tailwind?: {
4070
+ config?: {
4071
+ content?: string[] | undefined;
4072
+ theme?: Record<string, any> | undefined;
4073
+ plugins?: string[] | undefined;
4074
+ } | undefined;
4075
+ } | undefined;
4076
+ docs?: string | undefined;
4077
+ $schema?: string | undefined;
4078
+ config?: {
4079
+ tailwind?: {
4080
+ config?: string | undefined;
4081
+ css?: string | undefined;
4082
+ baseColor?: string | undefined;
4083
+ cssVariables?: boolean | undefined;
4084
+ prefix?: string | undefined;
4085
+ } | undefined;
4086
+ $schema?: string | undefined;
4087
+ style?: string | undefined;
4088
+ rsc?: boolean | undefined;
4089
+ tsx?: boolean | undefined;
4090
+ iconLibrary?: string | undefined;
4091
+ rtl?: boolean | undefined;
4092
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
4093
+ menuAccent?: "subtle" | "bold" | undefined;
4094
+ aliases?: {
4095
+ components?: string | undefined;
4096
+ ui?: string | undefined;
4097
+ utils?: string | undefined;
4098
+ lib?: string | undefined;
4099
+ hooks?: string | undefined;
4100
+ } | undefined;
4101
+ registries?: Record<string, string | {
4102
+ url: string;
4103
+ params?: Record<string, string> | undefined;
4104
+ headers?: Record<string, string> | undefined;
4105
+ }> | undefined;
4106
+ } | undefined;
4107
+ css?: Record<string, any> | undefined;
4108
+ extends?: string | undefined;
4109
+ title?: string | undefined;
4110
+ author?: string | undefined;
4111
+ description?: string | undefined;
4112
+ dependencies?: string[] | undefined;
4113
+ devDependencies?: string[] | undefined;
4114
+ registryDependencies?: string[] | undefined;
4115
+ files?: ({
4116
+ path: string;
4117
+ type: "registry:page" | "registry:file";
4118
+ target: string;
4119
+ content?: string | undefined;
4120
+ } | {
4121
+ path: string;
4122
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4123
+ content?: string | undefined;
4124
+ target?: string | undefined;
4125
+ })[] | undefined;
4126
+ cssVars?: {
4127
+ theme?: Record<string, string> | undefined;
4128
+ light?: Record<string, string> | undefined;
4129
+ dark?: Record<string, string> | undefined;
4130
+ } | undefined;
4131
+ envVars?: Record<string, string> | undefined;
4132
+ meta?: Record<string, any> | undefined;
4133
+ categories?: string[] | undefined;
4134
+ } | {
4135
+ type: "registry:font";
4136
+ name: string;
4137
+ font: {
4138
+ family: string;
4139
+ provider: "google";
4140
+ import: string;
4141
+ variable: string;
4142
+ weight?: string[] | undefined;
4143
+ subsets?: string[] | undefined;
4144
+ selector?: string | undefined;
4145
+ dependency?: string | undefined;
4146
+ };
4147
+ tailwind?: {
4148
+ config?: {
4149
+ content?: string[] | undefined;
4150
+ theme?: Record<string, any> | undefined;
4151
+ plugins?: string[] | undefined;
4152
+ } | undefined;
4153
+ } | undefined;
4154
+ docs?: string | undefined;
4155
+ $schema?: string | undefined;
4156
+ css?: Record<string, any> | undefined;
4157
+ extends?: string | undefined;
4158
+ title?: string | undefined;
4159
+ author?: string | undefined;
4160
+ description?: string | undefined;
4161
+ dependencies?: string[] | undefined;
4162
+ devDependencies?: string[] | undefined;
4163
+ registryDependencies?: string[] | undefined;
4164
+ files?: ({
4165
+ path: string;
4166
+ type: "registry:page" | "registry:file";
4167
+ target: string;
4168
+ content?: string | undefined;
4169
+ } | {
4170
+ path: string;
4171
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4172
+ content?: string | undefined;
4173
+ target?: string | undefined;
4174
+ })[] | undefined;
4175
+ cssVars?: {
4176
+ theme?: Record<string, string> | undefined;
4177
+ light?: Record<string, string> | undefined;
4178
+ dark?: Record<string, string> | undefined;
4179
+ } | undefined;
4180
+ envVars?: Record<string, string> | undefined;
4181
+ meta?: Record<string, any> | undefined;
4182
+ categories?: string[] | undefined;
4183
+ } | {
4184
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4185
+ name: string;
4186
+ tailwind?: {
4187
+ config?: {
4188
+ content?: string[] | undefined;
4189
+ theme?: Record<string, any> | undefined;
4190
+ plugins?: string[] | undefined;
4191
+ } | undefined;
4192
+ } | undefined;
4193
+ docs?: string | undefined;
4194
+ $schema?: string | undefined;
4195
+ css?: Record<string, any> | undefined;
4196
+ extends?: string | undefined;
4197
+ title?: string | undefined;
4198
+ author?: string | undefined;
4199
+ description?: string | undefined;
4200
+ dependencies?: string[] | undefined;
4201
+ devDependencies?: string[] | undefined;
4202
+ registryDependencies?: string[] | undefined;
4203
+ files?: ({
4204
+ path: string;
4205
+ type: "registry:page" | "registry:file";
4206
+ target: string;
4207
+ content?: string | undefined;
4208
+ } | {
4209
+ path: string;
4210
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4211
+ content?: string | undefined;
4212
+ target?: string | undefined;
4213
+ })[] | undefined;
4214
+ cssVars?: {
4215
+ theme?: Record<string, string> | undefined;
4216
+ light?: Record<string, string> | undefined;
4217
+ dark?: Record<string, string> | undefined;
4218
+ } | undefined;
4219
+ envVars?: Record<string, string> | undefined;
4220
+ meta?: Record<string, any> | undefined;
4221
+ categories?: string[] | undefined;
4222
+ })[] | undefined;
4223
+ }>, {
4224
+ $schema?: string | undefined;
4225
+ name?: string | undefined;
4226
+ homepage?: string | undefined;
4227
+ include?: string[] | undefined;
4228
+ items?: ({
4229
+ type: "registry:base";
4230
+ name: string;
4231
+ tailwind?: {
4232
+ config?: {
4233
+ content?: string[] | undefined;
4234
+ theme?: Record<string, any> | undefined;
4235
+ plugins?: string[] | undefined;
4236
+ } | undefined;
4237
+ } | undefined;
4238
+ docs?: string | undefined;
4239
+ $schema?: string | undefined;
4240
+ config?: {
4241
+ tailwind?: {
4242
+ config?: string | undefined;
4243
+ css?: string | undefined;
4244
+ baseColor?: string | undefined;
4245
+ cssVariables?: boolean | undefined;
4246
+ prefix?: string | undefined;
4247
+ } | undefined;
4248
+ $schema?: string | undefined;
4249
+ style?: string | undefined;
4250
+ rsc?: boolean | undefined;
4251
+ tsx?: boolean | undefined;
4252
+ iconLibrary?: string | undefined;
4253
+ rtl?: boolean | undefined;
4254
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
4255
+ menuAccent?: "subtle" | "bold" | undefined;
4256
+ aliases?: {
4257
+ components?: string | undefined;
4258
+ ui?: string | undefined;
4259
+ utils?: string | undefined;
4260
+ lib?: string | undefined;
4261
+ hooks?: string | undefined;
4262
+ } | undefined;
4263
+ registries?: Record<string, string | {
4264
+ url: string;
4265
+ params?: Record<string, string> | undefined;
4266
+ headers?: Record<string, string> | undefined;
4267
+ }> | undefined;
4268
+ } | undefined;
4269
+ css?: Record<string, any> | undefined;
4270
+ extends?: string | undefined;
4271
+ title?: string | undefined;
4272
+ author?: string | undefined;
4273
+ description?: string | undefined;
4274
+ dependencies?: string[] | undefined;
4275
+ devDependencies?: string[] | undefined;
4276
+ registryDependencies?: string[] | undefined;
4277
+ files?: ({
4278
+ path: string;
4279
+ type: "registry:page" | "registry:file";
4280
+ target: string;
4281
+ content?: string | undefined;
4282
+ } | {
4283
+ path: string;
4284
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4285
+ content?: string | undefined;
4286
+ target?: string | undefined;
4287
+ })[] | undefined;
4288
+ cssVars?: {
4289
+ theme?: Record<string, string> | undefined;
4290
+ light?: Record<string, string> | undefined;
4291
+ dark?: Record<string, string> | undefined;
4292
+ } | undefined;
4293
+ envVars?: Record<string, string> | undefined;
4294
+ meta?: Record<string, any> | undefined;
4295
+ categories?: string[] | undefined;
4296
+ } | {
4297
+ type: "registry:font";
4298
+ name: string;
4299
+ font: {
4300
+ family: string;
4301
+ provider: "google";
4302
+ import: string;
4303
+ variable: string;
4304
+ weight?: string[] | undefined;
4305
+ subsets?: string[] | undefined;
4306
+ selector?: string | undefined;
4307
+ dependency?: string | undefined;
4308
+ };
4309
+ tailwind?: {
4310
+ config?: {
4311
+ content?: string[] | undefined;
4312
+ theme?: Record<string, any> | undefined;
4313
+ plugins?: string[] | undefined;
4314
+ } | undefined;
4315
+ } | undefined;
4316
+ docs?: string | undefined;
4317
+ $schema?: string | undefined;
4318
+ css?: Record<string, any> | undefined;
4319
+ extends?: string | undefined;
4320
+ title?: string | undefined;
4321
+ author?: string | undefined;
4322
+ description?: string | undefined;
4323
+ dependencies?: string[] | undefined;
4324
+ devDependencies?: string[] | undefined;
4325
+ registryDependencies?: string[] | undefined;
4326
+ files?: ({
4327
+ path: string;
4328
+ type: "registry:page" | "registry:file";
4329
+ target: string;
4330
+ content?: string | undefined;
4331
+ } | {
4332
+ path: string;
4333
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4334
+ content?: string | undefined;
4335
+ target?: string | undefined;
4336
+ })[] | undefined;
4337
+ cssVars?: {
4338
+ theme?: Record<string, string> | undefined;
4339
+ light?: Record<string, string> | undefined;
4340
+ dark?: Record<string, string> | undefined;
4341
+ } | undefined;
4342
+ envVars?: Record<string, string> | undefined;
4343
+ meta?: Record<string, any> | undefined;
4344
+ categories?: string[] | undefined;
4345
+ } | {
4346
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4347
+ name: string;
4348
+ tailwind?: {
4349
+ config?: {
4350
+ content?: string[] | undefined;
4351
+ theme?: Record<string, any> | undefined;
4352
+ plugins?: string[] | undefined;
4353
+ } | undefined;
4354
+ } | undefined;
4355
+ docs?: string | undefined;
4356
+ $schema?: string | undefined;
4357
+ css?: Record<string, any> | undefined;
4358
+ extends?: string | undefined;
4359
+ title?: string | undefined;
4360
+ author?: string | undefined;
4361
+ description?: string | undefined;
4362
+ dependencies?: string[] | undefined;
4363
+ devDependencies?: string[] | undefined;
4364
+ registryDependencies?: string[] | undefined;
4365
+ files?: ({
4366
+ path: string;
4367
+ type: "registry:page" | "registry:file";
4368
+ target: string;
4369
+ content?: string | undefined;
4370
+ } | {
4371
+ path: string;
4372
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4373
+ content?: string | undefined;
4374
+ target?: string | undefined;
4375
+ })[] | undefined;
4376
+ cssVars?: {
4377
+ theme?: Record<string, string> | undefined;
4378
+ light?: Record<string, string> | undefined;
4379
+ dark?: Record<string, string> | undefined;
4380
+ } | undefined;
4381
+ envVars?: Record<string, string> | undefined;
4382
+ meta?: Record<string, any> | undefined;
4383
+ categories?: string[] | undefined;
4384
+ })[] | undefined;
4385
+ }, {
4386
+ $schema?: string | undefined;
4387
+ name?: string | undefined;
4388
+ homepage?: string | undefined;
4389
+ include?: string[] | undefined;
4390
+ items?: ({
4391
+ type: "registry:base";
4392
+ name: string;
4393
+ tailwind?: {
4394
+ config?: {
4395
+ content?: string[] | undefined;
4396
+ theme?: Record<string, any> | undefined;
4397
+ plugins?: string[] | undefined;
4398
+ } | undefined;
4399
+ } | undefined;
4400
+ docs?: string | undefined;
4401
+ $schema?: string | undefined;
4402
+ config?: {
4403
+ tailwind?: {
4404
+ config?: string | undefined;
4405
+ css?: string | undefined;
4406
+ baseColor?: string | undefined;
4407
+ cssVariables?: boolean | undefined;
4408
+ prefix?: string | undefined;
4409
+ } | undefined;
4410
+ $schema?: string | undefined;
4411
+ style?: string | undefined;
4412
+ rsc?: boolean | undefined;
4413
+ tsx?: boolean | undefined;
4414
+ iconLibrary?: string | undefined;
4415
+ rtl?: boolean | undefined;
4416
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
4417
+ menuAccent?: "subtle" | "bold" | undefined;
4418
+ aliases?: {
4419
+ components?: string | undefined;
4420
+ ui?: string | undefined;
4421
+ utils?: string | undefined;
4422
+ lib?: string | undefined;
4423
+ hooks?: string | undefined;
4424
+ } | undefined;
4425
+ registries?: Record<string, string | {
4426
+ url: string;
4427
+ params?: Record<string, string> | undefined;
4428
+ headers?: Record<string, string> | undefined;
4429
+ }> | undefined;
4430
+ } | undefined;
4431
+ css?: Record<string, any> | undefined;
4432
+ extends?: string | undefined;
4433
+ title?: string | undefined;
4434
+ author?: string | undefined;
4435
+ description?: string | undefined;
4436
+ dependencies?: string[] | undefined;
4437
+ devDependencies?: string[] | undefined;
4438
+ registryDependencies?: string[] | undefined;
4439
+ files?: ({
4440
+ path: string;
4441
+ type: "registry:page" | "registry:file";
4442
+ target: string;
4443
+ content?: string | undefined;
4444
+ } | {
4445
+ path: string;
4446
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4447
+ content?: string | undefined;
4448
+ target?: string | undefined;
4449
+ })[] | undefined;
4450
+ cssVars?: {
4451
+ theme?: Record<string, string> | undefined;
4452
+ light?: Record<string, string> | undefined;
4453
+ dark?: Record<string, string> | undefined;
4454
+ } | undefined;
4455
+ envVars?: Record<string, string> | undefined;
4456
+ meta?: Record<string, any> | undefined;
4457
+ categories?: string[] | undefined;
4458
+ } | {
4459
+ type: "registry:font";
4460
+ name: string;
4461
+ font: {
4462
+ family: string;
4463
+ provider: "google";
4464
+ import: string;
4465
+ variable: string;
4466
+ weight?: string[] | undefined;
4467
+ subsets?: string[] | undefined;
4468
+ selector?: string | undefined;
4469
+ dependency?: string | undefined;
4470
+ };
4471
+ tailwind?: {
4472
+ config?: {
4473
+ content?: string[] | undefined;
4474
+ theme?: Record<string, any> | undefined;
4475
+ plugins?: string[] | undefined;
4476
+ } | undefined;
4477
+ } | undefined;
4478
+ docs?: string | undefined;
4479
+ $schema?: string | undefined;
4480
+ css?: Record<string, any> | undefined;
4481
+ extends?: string | undefined;
4482
+ title?: string | undefined;
4483
+ author?: string | undefined;
4484
+ description?: string | undefined;
4485
+ dependencies?: string[] | undefined;
4486
+ devDependencies?: string[] | undefined;
4487
+ registryDependencies?: string[] | undefined;
4488
+ files?: ({
4489
+ path: string;
4490
+ type: "registry:page" | "registry:file";
4491
+ target: string;
4492
+ content?: string | undefined;
4493
+ } | {
4494
+ path: string;
4495
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4496
+ content?: string | undefined;
4497
+ target?: string | undefined;
4498
+ })[] | undefined;
4499
+ cssVars?: {
4500
+ theme?: Record<string, string> | undefined;
4501
+ light?: Record<string, string> | undefined;
4502
+ dark?: Record<string, string> | undefined;
4503
+ } | undefined;
4504
+ envVars?: Record<string, string> | undefined;
4505
+ meta?: Record<string, any> | undefined;
4506
+ categories?: string[] | undefined;
4507
+ } | {
4508
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4509
+ name: string;
4510
+ tailwind?: {
4511
+ config?: {
4512
+ content?: string[] | undefined;
4513
+ theme?: Record<string, any> | undefined;
4514
+ plugins?: string[] | undefined;
4515
+ } | undefined;
4516
+ } | undefined;
4517
+ docs?: string | undefined;
4518
+ $schema?: string | undefined;
4519
+ css?: Record<string, any> | undefined;
4520
+ extends?: string | undefined;
4521
+ title?: string | undefined;
4522
+ author?: string | undefined;
4523
+ description?: string | undefined;
4524
+ dependencies?: string[] | undefined;
4525
+ devDependencies?: string[] | undefined;
4526
+ registryDependencies?: string[] | undefined;
4527
+ files?: ({
4528
+ path: string;
4529
+ type: "registry:page" | "registry:file";
4530
+ target: string;
4531
+ content?: string | undefined;
4532
+ } | {
4533
+ path: string;
4534
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4535
+ content?: string | undefined;
4536
+ target?: string | undefined;
4537
+ })[] | undefined;
4538
+ cssVars?: {
4539
+ theme?: Record<string, string> | undefined;
4540
+ light?: Record<string, string> | undefined;
4541
+ dark?: Record<string, string> | undefined;
4542
+ } | undefined;
4543
+ envVars?: Record<string, string> | undefined;
4544
+ meta?: Record<string, any> | undefined;
4545
+ categories?: string[] | undefined;
4546
+ })[] | undefined;
4547
+ }>, {
4548
+ items: ({
4549
+ type: "registry:base";
4550
+ name: string;
4551
+ tailwind?: {
4552
+ config?: {
4553
+ content?: string[] | undefined;
4554
+ theme?: Record<string, any> | undefined;
4555
+ plugins?: string[] | undefined;
4556
+ } | undefined;
4557
+ } | undefined;
4558
+ docs?: string | undefined;
4559
+ $schema?: string | undefined;
4560
+ config?: {
4561
+ tailwind?: {
4562
+ config?: string | undefined;
4563
+ css?: string | undefined;
4564
+ baseColor?: string | undefined;
4565
+ cssVariables?: boolean | undefined;
4566
+ prefix?: string | undefined;
4567
+ } | undefined;
4568
+ $schema?: string | undefined;
4569
+ style?: string | undefined;
4570
+ rsc?: boolean | undefined;
4571
+ tsx?: boolean | undefined;
4572
+ iconLibrary?: string | undefined;
4573
+ rtl?: boolean | undefined;
4574
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
4575
+ menuAccent?: "subtle" | "bold" | undefined;
4576
+ aliases?: {
4577
+ components?: string | undefined;
4578
+ ui?: string | undefined;
4579
+ utils?: string | undefined;
4580
+ lib?: string | undefined;
4581
+ hooks?: string | undefined;
4582
+ } | undefined;
4583
+ registries?: Record<string, string | {
4584
+ url: string;
4585
+ params?: Record<string, string> | undefined;
4586
+ headers?: Record<string, string> | undefined;
4587
+ }> | undefined;
4588
+ } | undefined;
4589
+ css?: Record<string, any> | undefined;
4590
+ extends?: string | undefined;
4591
+ title?: string | undefined;
4592
+ author?: string | undefined;
4593
+ description?: string | undefined;
4594
+ dependencies?: string[] | undefined;
4595
+ devDependencies?: string[] | undefined;
4596
+ registryDependencies?: string[] | undefined;
4597
+ files?: ({
4598
+ path: string;
4599
+ type: "registry:page" | "registry:file";
4600
+ target: string;
4601
+ content?: string | undefined;
4602
+ } | {
4603
+ path: string;
4604
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4605
+ content?: string | undefined;
4606
+ target?: string | undefined;
4607
+ })[] | undefined;
4608
+ cssVars?: {
4609
+ theme?: Record<string, string> | undefined;
4610
+ light?: Record<string, string> | undefined;
4611
+ dark?: Record<string, string> | undefined;
4612
+ } | undefined;
4613
+ envVars?: Record<string, string> | undefined;
4614
+ meta?: Record<string, any> | undefined;
4615
+ categories?: string[] | undefined;
4616
+ } | {
4617
+ type: "registry:font";
4618
+ name: string;
4619
+ font: {
4620
+ family: string;
4621
+ provider: "google";
4622
+ import: string;
4623
+ variable: string;
4624
+ weight?: string[] | undefined;
4625
+ subsets?: string[] | undefined;
4626
+ selector?: string | undefined;
4627
+ dependency?: string | undefined;
4628
+ };
4629
+ tailwind?: {
4630
+ config?: {
4631
+ content?: string[] | undefined;
4632
+ theme?: Record<string, any> | undefined;
4633
+ plugins?: string[] | undefined;
4634
+ } | undefined;
4635
+ } | undefined;
4636
+ docs?: string | undefined;
4637
+ $schema?: string | undefined;
4638
+ css?: Record<string, any> | undefined;
4639
+ extends?: string | undefined;
4640
+ title?: string | undefined;
4641
+ author?: string | undefined;
4642
+ description?: string | undefined;
4643
+ dependencies?: string[] | undefined;
4644
+ devDependencies?: string[] | undefined;
4645
+ registryDependencies?: string[] | undefined;
4646
+ files?: ({
4647
+ path: string;
4648
+ type: "registry:page" | "registry:file";
4649
+ target: string;
4650
+ content?: string | undefined;
4651
+ } | {
4652
+ path: string;
4653
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4654
+ content?: string | undefined;
4655
+ target?: string | undefined;
4656
+ })[] | undefined;
4657
+ cssVars?: {
4658
+ theme?: Record<string, string> | undefined;
4659
+ light?: Record<string, string> | undefined;
4660
+ dark?: Record<string, string> | undefined;
4661
+ } | undefined;
4662
+ envVars?: Record<string, string> | undefined;
4663
+ meta?: Record<string, any> | undefined;
4664
+ categories?: string[] | undefined;
4665
+ } | {
4666
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4667
+ name: string;
4668
+ tailwind?: {
4669
+ config?: {
4670
+ content?: string[] | undefined;
4671
+ theme?: Record<string, any> | undefined;
4672
+ plugins?: string[] | undefined;
4673
+ } | undefined;
4674
+ } | undefined;
4675
+ docs?: string | undefined;
4676
+ $schema?: string | undefined;
4677
+ css?: Record<string, any> | undefined;
4678
+ extends?: string | undefined;
4679
+ title?: string | undefined;
4680
+ author?: string | undefined;
4681
+ description?: string | undefined;
4682
+ dependencies?: string[] | undefined;
4683
+ devDependencies?: string[] | undefined;
4684
+ registryDependencies?: string[] | undefined;
4685
+ files?: ({
4686
+ path: string;
4687
+ type: "registry:page" | "registry:file";
4688
+ target: string;
4689
+ content?: string | undefined;
4690
+ } | {
4691
+ path: string;
4692
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4693
+ content?: string | undefined;
4694
+ target?: string | undefined;
4695
+ })[] | undefined;
4696
+ cssVars?: {
4697
+ theme?: Record<string, string> | undefined;
4698
+ light?: Record<string, string> | undefined;
4699
+ dark?: Record<string, string> | undefined;
4700
+ } | undefined;
4701
+ envVars?: Record<string, string> | undefined;
4702
+ meta?: Record<string, any> | undefined;
4703
+ categories?: string[] | undefined;
4704
+ })[];
4705
+ $schema?: string | undefined;
4706
+ name?: string | undefined;
4707
+ homepage?: string | undefined;
4708
+ include?: string[] | undefined;
4709
+ }, {
4710
+ $schema?: string | undefined;
4711
+ name?: string | undefined;
4712
+ homepage?: string | undefined;
4713
+ include?: string[] | undefined;
4714
+ items?: ({
4715
+ type: "registry:base";
4716
+ name: string;
4717
+ tailwind?: {
4718
+ config?: {
4719
+ content?: string[] | undefined;
4720
+ theme?: Record<string, any> | undefined;
4721
+ plugins?: string[] | undefined;
4722
+ } | undefined;
4723
+ } | undefined;
4724
+ docs?: string | undefined;
4725
+ $schema?: string | undefined;
4726
+ config?: {
4727
+ tailwind?: {
4728
+ config?: string | undefined;
4729
+ css?: string | undefined;
4730
+ baseColor?: string | undefined;
4731
+ cssVariables?: boolean | undefined;
4732
+ prefix?: string | undefined;
4733
+ } | undefined;
4734
+ $schema?: string | undefined;
4735
+ style?: string | undefined;
4736
+ rsc?: boolean | undefined;
4737
+ tsx?: boolean | undefined;
4738
+ iconLibrary?: string | undefined;
4739
+ rtl?: boolean | undefined;
4740
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
4741
+ menuAccent?: "subtle" | "bold" | undefined;
4742
+ aliases?: {
4743
+ components?: string | undefined;
4744
+ ui?: string | undefined;
4745
+ utils?: string | undefined;
4746
+ lib?: string | undefined;
4747
+ hooks?: string | undefined;
4748
+ } | undefined;
4749
+ registries?: Record<string, string | {
4750
+ url: string;
4751
+ params?: Record<string, string> | undefined;
4752
+ headers?: Record<string, string> | undefined;
4753
+ }> | undefined;
4754
+ } | undefined;
4755
+ css?: Record<string, any> | undefined;
4756
+ extends?: string | undefined;
4757
+ title?: string | undefined;
4758
+ author?: string | undefined;
4759
+ description?: string | undefined;
4760
+ dependencies?: string[] | undefined;
4761
+ devDependencies?: string[] | undefined;
4762
+ registryDependencies?: string[] | undefined;
4763
+ files?: ({
4764
+ path: string;
4765
+ type: "registry:page" | "registry:file";
4766
+ target: string;
4767
+ content?: string | undefined;
4768
+ } | {
4769
+ path: string;
4770
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4771
+ content?: string | undefined;
4772
+ target?: string | undefined;
4773
+ })[] | undefined;
4774
+ cssVars?: {
4775
+ theme?: Record<string, string> | undefined;
4776
+ light?: Record<string, string> | undefined;
4777
+ dark?: Record<string, string> | undefined;
4778
+ } | undefined;
4779
+ envVars?: Record<string, string> | undefined;
4780
+ meta?: Record<string, any> | undefined;
4781
+ categories?: string[] | undefined;
4782
+ } | {
4783
+ type: "registry:font";
4784
+ name: string;
4785
+ font: {
4786
+ family: string;
4787
+ provider: "google";
4788
+ import: string;
4789
+ variable: string;
4790
+ weight?: string[] | undefined;
4791
+ subsets?: string[] | undefined;
4792
+ selector?: string | undefined;
4793
+ dependency?: string | undefined;
4794
+ };
4795
+ tailwind?: {
4796
+ config?: {
4797
+ content?: string[] | undefined;
4798
+ theme?: Record<string, any> | undefined;
4799
+ plugins?: string[] | undefined;
4800
+ } | undefined;
4801
+ } | undefined;
4802
+ docs?: string | undefined;
4803
+ $schema?: string | undefined;
4804
+ css?: Record<string, any> | undefined;
4805
+ extends?: string | undefined;
4806
+ title?: string | undefined;
4807
+ author?: string | undefined;
4808
+ description?: string | undefined;
4809
+ dependencies?: string[] | undefined;
4810
+ devDependencies?: string[] | undefined;
4811
+ registryDependencies?: string[] | undefined;
4812
+ files?: ({
4813
+ path: string;
4814
+ type: "registry:page" | "registry:file";
4815
+ target: string;
4816
+ content?: string | undefined;
4817
+ } | {
4818
+ path: string;
4819
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4820
+ content?: string | undefined;
4821
+ target?: string | undefined;
4822
+ })[] | undefined;
4823
+ cssVars?: {
4824
+ theme?: Record<string, string> | undefined;
4825
+ light?: Record<string, string> | undefined;
4826
+ dark?: Record<string, string> | undefined;
4827
+ } | undefined;
4828
+ envVars?: Record<string, string> | undefined;
4829
+ meta?: Record<string, any> | undefined;
4830
+ categories?: string[] | undefined;
4831
+ } | {
4832
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4833
+ name: string;
4834
+ tailwind?: {
4835
+ config?: {
4836
+ content?: string[] | undefined;
4837
+ theme?: Record<string, any> | undefined;
4838
+ plugins?: string[] | undefined;
4839
+ } | undefined;
4840
+ } | undefined;
4841
+ docs?: string | undefined;
4842
+ $schema?: string | undefined;
4843
+ css?: Record<string, any> | undefined;
4844
+ extends?: string | undefined;
4845
+ title?: string | undefined;
4846
+ author?: string | undefined;
4847
+ description?: string | undefined;
4848
+ dependencies?: string[] | undefined;
4849
+ devDependencies?: string[] | undefined;
4850
+ registryDependencies?: string[] | undefined;
4851
+ files?: ({
4852
+ path: string;
4853
+ type: "registry:page" | "registry:file";
4854
+ target: string;
4855
+ content?: string | undefined;
4856
+ } | {
4857
+ path: string;
4858
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
4859
+ content?: string | undefined;
4860
+ target?: string | undefined;
4861
+ })[] | undefined;
4862
+ cssVars?: {
4863
+ theme?: Record<string, string> | undefined;
4864
+ light?: Record<string, string> | undefined;
4865
+ dark?: Record<string, string> | undefined;
4866
+ } | undefined;
4867
+ envVars?: Record<string, string> | undefined;
4868
+ meta?: Record<string, any> | undefined;
4869
+ categories?: string[] | undefined;
4870
+ })[] | undefined;
4871
+ }>, z.ZodObject<{
4872
+ $schema: z.ZodOptional<z.ZodString>;
1473
4873
  name: z.ZodString;
1474
4874
  homepage: z.ZodString;
4875
+ include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1475
4876
  items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1476
4877
  $schema: z.ZodOptional<z.ZodString>;
1477
4878
  extends: z.ZodOptional<z.ZodString>;
@@ -2354,6 +5755,8 @@ declare const registrySchema: z.ZodObject<{
2354
5755
  meta?: Record<string, any> | undefined;
2355
5756
  categories?: string[] | undefined;
2356
5757
  })[];
5758
+ $schema?: string | undefined;
5759
+ include?: string[] | undefined;
2357
5760
  }, {
2358
5761
  name: string;
2359
5762
  homepage: string;
@@ -2514,7 +5917,9 @@ declare const registrySchema: z.ZodObject<{
2514
5917
  meta?: Record<string, any> | undefined;
2515
5918
  categories?: string[] | undefined;
2516
5919
  })[];
2517
- }>;
5920
+ $schema?: string | undefined;
5921
+ include?: string[] | undefined;
5922
+ }>>;
2518
5923
  type Registry = z.infer<typeof registrySchema>;
2519
5924
  declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2520
5925
  $schema: z.ZodOptional<z.ZodString>;
@@ -4008,4 +7413,4 @@ declare const configJsonSchema: z.ZodObject<{
4008
7413
  }>;
4009
7414
  type ConfigJson = z.infer<typeof configJsonSchema>;
4010
7415
 
4011
- export { type ConfigJson, type Preset, type Registry, type RegistryBaseItem, type RegistryFontItem, type RegistryItem, configJsonSchema, configSchema, iconsSchema, presetSchema, rawConfigSchema, registriesIndexSchema, registriesSchema, registryBaseColorSchema, registryConfigItemSchema, registryConfigSchema, registryIndexSchema, registryItemCommonSchema, registryItemCssSchema, registryItemCssVarsSchema, registryItemEnvVarsSchema, registryItemFileSchema, registryItemFontSchema, registryItemSchema, registryItemTailwindSchema, registryItemTypeSchema, registryResolvedItemsTreeSchema, registrySchema, searchResultItemSchema, searchResultsSchema, stylesSchema, workspaceConfigSchema };
7416
+ export { type ConfigJson, type Preset, type Registry, type RegistryBaseItem, type RegistryFontItem, type RegistryItem, configJsonSchema, configSchema, iconsSchema, presetSchema, rawConfigSchema, registriesIndexSchema, registriesSchema, registryBaseColorSchema, registryChunkSchema, registryConfigItemSchema, registryConfigSchema, registryIndexSchema, registryItemCommonSchema, registryItemCssSchema, registryItemCssVarsSchema, registryItemEnvVarsSchema, registryItemFileSchema, registryItemFontSchema, registryItemSchema, registryItemTailwindSchema, registryItemTypeSchema, registryResolvedItemsTreeSchema, registrySchema, searchResultItemSchema, searchResultsSchema, stylesSchema, workspaceConfigSchema };