@woodylab/payload 0.0.18 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/config/blocks/blockCarousel.d.ts +3 -0
  2. package/dist/config/blocks/blockDisclosureList.d.ts +3 -0
  3. package/dist/config/blocks/blockGrid.d.ts +3 -0
  4. package/dist/config/blocks/blockGridContent.d.ts +3 -0
  5. package/dist/config/blocks/blockImage.d.ts +3 -0
  6. package/dist/config/blocks/blockParallax.d.ts +3 -0
  7. package/dist/config/blocks/blockTabs.d.ts +3 -0
  8. package/dist/config/index.cjs.js +9 -2
  9. package/dist/config/index.cjs.js.map +1 -1
  10. package/dist/config/index.d.ts +7 -0
  11. package/dist/config/index.esm.js +2 -2
  12. package/dist/{fieldRoles-BH5WwJxZ.js → fieldRoles-ByWB8j1Q.js} +618 -276
  13. package/dist/fieldRoles-ByWB8j1Q.js.map +1 -0
  14. package/dist/{fieldRoles-BbW92YWL.js → fieldRoles-C_8MuKLB.js} +617 -277
  15. package/dist/fieldRoles-C_8MuKLB.js.map +1 -0
  16. package/dist/fields/index.cjs.js +3 -3
  17. package/dist/fields/index.esm.js +2 -2
  18. package/dist/{index-CAnpYmu4.js → index-B4kXolv9.js} +622 -2
  19. package/dist/index-B4kXolv9.js.map +1 -0
  20. package/dist/index-DhejC-CC.js +146 -0
  21. package/dist/index-DhejC-CC.js.map +1 -0
  22. package/dist/{index-Cv4qCZhV.js → index-Dw4k6r1v.js} +616 -3
  23. package/dist/index-Dw4k6r1v.js.map +1 -0
  24. package/dist/index-zJMnbEc6.js +135 -0
  25. package/dist/index-zJMnbEc6.js.map +1 -0
  26. package/dist/index.cjs.js +3 -3
  27. package/dist/index.esm.js +3 -3
  28. package/package.json +1 -1
  29. package/dist/fieldRoles-BH5WwJxZ.js.map +0 -1
  30. package/dist/fieldRoles-BbW92YWL.js.map +0 -1
  31. package/dist/index-CAnpYmu4.js.map +0 -1
  32. package/dist/index-Cv4qCZhV.js.map +0 -1
  33. package/dist/index-DeuyvLG-.js +0 -485
  34. package/dist/index-DeuyvLG-.js.map +0 -1
  35. package/dist/index-qjse1Cxj.js +0 -473
  36. package/dist/index-qjse1Cxj.js.map +0 -1
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var fieldRoles = require('./fieldRoles-BH5WwJxZ.js');
3
+ var fieldRoles = require('./fieldRoles-ByWB8j1Q.js');
4
4
 
5
5
  const GoogleFonts = [
6
6
  "42dot Sans",
@@ -1596,19 +1596,639 @@ const collectionMenus = ({ relationToOptions }) => {
1596
1596
  };
1597
1597
  };
1598
1598
 
1599
+ const blockCarousel = {
1600
+ slug: 'carousel',
1601
+ labels: {
1602
+ singular: 'Carousel',
1603
+ plural: 'Carousels',
1604
+ },
1605
+ fields: [
1606
+ fieldRoles.fieldSectionTabs({
1607
+ configFields: [
1608
+ {
1609
+ type: 'row',
1610
+ fields: [
1611
+ fieldRoles.fieldCheckbox({
1612
+ name: 'hasPagination',
1613
+ label: 'Paginazione',
1614
+ defaultValue: true,
1615
+ admin: {
1616
+ width: '20%',
1617
+ },
1618
+ }),
1619
+ fieldRoles.fieldCheckbox({
1620
+ name: 'hasNavigation',
1621
+ label: 'Navigazione',
1622
+ defaultValue: true,
1623
+ admin: {
1624
+ width: '20%',
1625
+ },
1626
+ }),
1627
+ fieldRoles.fieldCheckbox({
1628
+ name: 'hasOverlay',
1629
+ label: "Overlay sull'immagine",
1630
+ defaultValue: true,
1631
+ admin: {
1632
+ width: '20%',
1633
+ },
1634
+ }),
1635
+ fieldRoles.fieldCheckbox({
1636
+ name: 'hasInfiniteLoop',
1637
+ label: 'Loop infinito',
1638
+ defaultValue: true,
1639
+ admin: {
1640
+ width: '20%',
1641
+ },
1642
+ }),
1643
+ fieldRoles.fieldCheckbox({
1644
+ name: 'hasAutoPlay',
1645
+ label: 'Auto play',
1646
+ defaultValue: true,
1647
+ admin: {
1648
+ width: '20%',
1649
+ },
1650
+ }),
1651
+ fieldRoles.fieldCheckbox({
1652
+ name: 'hasThumbnails',
1653
+ label: 'Mostra miniature',
1654
+ defaultValue: false,
1655
+ admin: {
1656
+ width: '20%',
1657
+ },
1658
+ }),
1659
+ fieldRoles.fieldNumber({
1660
+ name: 'slidePerView',
1661
+ label: 'numero slide',
1662
+ defaultValue: 1,
1663
+ admin: {
1664
+ width: '20%',
1665
+ },
1666
+ }),
1667
+ fieldRoles.fieldSelect({
1668
+ name: 'transition',
1669
+ label: 'Tipo transizione',
1670
+ defaultValue: 'slide',
1671
+ admin: {
1672
+ width: '50%',
1673
+ },
1674
+ options: [
1675
+ { label: 'Slide', value: 'slide' },
1676
+ { label: 'Fade', value: 'fade' },
1677
+ { label: 'Cube', value: 'cube' },
1678
+ { label: 'Coverflow', value: 'coverflow' },
1679
+ { label: 'Flip', value: 'flip' },
1680
+ ],
1681
+ }),
1682
+ ],
1683
+ },
1684
+ ],
1685
+ contentFields: [
1686
+ fieldRoles.fieldArray({
1687
+ name: 'slides',
1688
+ label: 'Slides',
1689
+ fields: [
1690
+ fieldRoles.fieldUpload('media', { name: 'image', label: 'Immagine' }),
1691
+ fieldRoles.fieldRichText({ name: 'body', label: 'Body' }),
1692
+ fieldRoles.fieldAction(),
1693
+ ],
1694
+ }),
1695
+ ],
1696
+ }),
1697
+ ],
1698
+ };
1699
+
1700
+ // config/blockCarousel.ts
1701
+ const blockDisclosureList = {
1702
+ slug: 'disclosureList',
1703
+ labels: {
1704
+ singular: 'Disclosure List',
1705
+ plural: 'Disclosure List',
1706
+ },
1707
+ fields: [
1708
+ fieldRoles.fieldSectionTabs({
1709
+ configFields: [
1710
+ {
1711
+ type: 'row',
1712
+ fields: [
1713
+ fieldRoles.fieldSelect({
1714
+ name: 'initialStatus',
1715
+ label: 'Stato iniziale',
1716
+ defaultValue: 'firstOpen',
1717
+ options: [
1718
+ { label: 'First open', value: 'firstOpen' },
1719
+ { label: 'All open', value: 'allOpen' },
1720
+ { label: 'All close', value: 'allClose' },
1721
+ ],
1722
+ admin: { width: '20%' }
1723
+ }),
1724
+ fieldRoles.fieldSelect({
1725
+ name: 'disclosureType',
1726
+ label: 'Tipo disclosure',
1727
+ defaultValue: 'default',
1728
+ options: [
1729
+ { label: 'default', value: 'default' },
1730
+ { label: 'Itinerario', value: 'itinerary' },
1731
+ ],
1732
+ admin: { width: '20%' }
1733
+ }),
1734
+ ]
1735
+ },
1736
+ ],
1737
+ contentFields: [
1738
+ fieldRoles.fieldArray({
1739
+ name: 'Disclosure',
1740
+ label: 'Disclosure',
1741
+ fields: [
1742
+ fieldRoles.fieldText({ name: 'title', label: 'Titolo', required: false }),
1743
+ fieldRoles.fieldText({ name: 'text', label: 'Testo', admin: { description: 'Testo affianco al titolo nel bottone di apertura' }, required: false }),
1744
+ fieldRoles.fieldRichText({ name: 'body', label: 'Body' }),
1745
+ ],
1746
+ }),
1747
+ ]
1748
+ })
1749
+ ],
1750
+ };
1751
+
1752
+ const blockGridContent = {
1753
+ slug: 'gridContent',
1754
+ labels: {
1755
+ singular: 'Colonna',
1756
+ plural: 'Colonne',
1757
+ },
1758
+ fields: [
1759
+ {
1760
+ type: 'tabs',
1761
+ tabs: [
1762
+ {
1763
+ label: 'Configurazioni',
1764
+ fields: [
1765
+ {
1766
+ type: 'group',
1767
+ name: 'config',
1768
+ label: 'Configurazione contenuto',
1769
+ fields: [
1770
+ {
1771
+ type: 'row',
1772
+ fields: [
1773
+ fieldRoles.fieldThemeColor({
1774
+ name: 'bgc',
1775
+ label: 'Colore sfondo colonna',
1776
+ required: false,
1777
+ admin: {
1778
+ width: '100%'
1779
+ }
1780
+ }),
1781
+ fieldRoles.fieldSelect({
1782
+ name: 'borderRadius',
1783
+ label: 'Angoli arrotondati',
1784
+ defaultValue: 'rounded-none', // Default: nessun arrotondamento
1785
+ options: [
1786
+ { label: 'Nessuno', value: 'rounded-none' },
1787
+ { label: 'Piccolo', value: 'rounded-sm' },
1788
+ { label: 'Medio', value: 'rounded-md' },
1789
+ { label: 'Grande', value: 'rounded-lg' },
1790
+ { label: 'Extra Grande', value: 'rounded-xl' },
1791
+ { label: 'Massimo', value: 'rounded-full' },
1792
+ ],
1793
+ admin: {
1794
+ width: '50%',
1795
+ description: 'Imposta lo stile degli angoli arrotondati del contenitore.',
1796
+ },
1797
+ }),
1798
+ fieldRoles.fieldSelect({
1799
+ name: 'boxShadow',
1800
+ label: 'Ombra contenitore',
1801
+ defaultValue: 'shadow-none', // Default: nessuna ombra
1802
+ options: [
1803
+ { label: 'Nessuna', value: 'shadow-none' },
1804
+ { label: 'Piccola', value: 'shadow-sm' },
1805
+ { label: 'Normale', value: 'shadow' },
1806
+ { label: 'Media', value: 'shadow-md' },
1807
+ { label: 'Grande', value: 'shadow-lg' },
1808
+ { label: 'Extra Grande', value: 'shadow-xl' },
1809
+ { label: 'Massima', value: 'shadow-2xl' },
1810
+ ],
1811
+ admin: {
1812
+ width: '50%',
1813
+ description: 'Imposta lo stile dell\'ombra per il contenitore.',
1814
+ },
1815
+ }),
1816
+ fieldRoles.fieldSelect({
1817
+ name: 'desktopWidth',
1818
+ label: 'Larghezza Desktop',
1819
+ defaultValue: '',
1820
+ options: [
1821
+ { label: 'Default', value: '' },
1822
+ { label: '1 colonna', value: 'lg:col-span-1' },
1823
+ { label: '2 colonne', value: 'lg:col-span-2' },
1824
+ { label: '3 colonne', value: 'lg:col-span-3' },
1825
+ { label: '4 colonne', value: 'lg:col-span-4' },
1826
+ { label: '6 colonne', value: 'lg:col-span-6' },
1827
+ { label: '8 colonne', value: 'lg:col-span-8' },
1828
+ { label: 'Intera larghezza', value: 'lg:col-span-full' },
1829
+ ],
1830
+ admin: {
1831
+ width: '33%',
1832
+ description: '≥ 1024px (lg)'
1833
+ }
1834
+ }),
1835
+ fieldRoles.fieldSelect({
1836
+ name: 'tabletWidth',
1837
+ label: 'Larghezza Tablet',
1838
+ defaultValue: '',
1839
+ options: [
1840
+ { label: 'Default', value: '' },
1841
+ { label: '1 colonna', value: 'md:col-span-1' },
1842
+ { label: '2 colonne', value: 'md:col-span-2' },
1843
+ { label: '3 colonne', value: 'md:col-span-3' },
1844
+ { label: '4 colonne', value: 'md:col-span-4' },
1845
+ { label: 'Intera larghezza', value: 'md:col-span-full' },
1846
+ ],
1847
+ admin: {
1848
+ width: '33%',
1849
+ description: '≥ 768px (md)'
1850
+ }
1851
+ }),
1852
+ fieldRoles.fieldSelect({
1853
+ name: 'mobileWidth',
1854
+ label: 'Larghezza Mobile',
1855
+ defaultValue: '',
1856
+ options: [
1857
+ { label: 'Default', value: '' },
1858
+ { label: '1 colonna', value: 'col-span-1' },
1859
+ { label: 'Intera larghezza', value: 'col-span-full' },
1860
+ ],
1861
+ admin: {
1862
+ width: '33%',
1863
+ description: '< 768px'
1864
+ }
1865
+ }),
1866
+ fieldRoles.fieldSelect({
1867
+ name: 'verticalAlign',
1868
+ label: 'Allineamento verticale',
1869
+ defaultValue: '',
1870
+ options: [
1871
+ { label: 'Default', value: '' },
1872
+ { label: 'In alto (start)', value: 'items-start' },
1873
+ { label: 'Al centro (center)', value: 'items-center' },
1874
+ { label: 'In basso (end)', value: 'items-end' },
1875
+ { label: 'Distribuito tra gli elementi (baseline)', value: 'items-baseline' },
1876
+ { label: 'Inizio verticale con stretching (stretch)', value: 'items-stretch' },
1877
+ ],
1878
+ admin: {
1879
+ width: '25%',
1880
+ }
1881
+ }),
1882
+ ]
1883
+ },
1884
+ fieldRoles.fieldPaddings()
1885
+ ]
1886
+ }
1887
+ ]
1888
+ },
1889
+ {
1890
+ label: 'Contenuto',
1891
+ fields: [
1892
+ {
1893
+ type: 'group',
1894
+ name: 'cntP',
1895
+ label: 'Contenuto',
1896
+ fields: [
1897
+ fieldRoles.fieldUpload('media', {
1898
+ name: 'image',
1899
+ label: 'Immagine'
1900
+ }),
1901
+ {
1902
+ name: 'iconName',
1903
+ type: 'select',
1904
+ label: 'Icona',
1905
+ options: [
1906
+ ...fieldRoles.iconsList
1907
+ ],
1908
+ admin: {
1909
+ width: '50%',
1910
+ },
1911
+ },
1912
+ fieldRoles.fieldSelect({
1913
+ name: 'iconSize',
1914
+ label: 'Dimensione bottone',
1915
+ defaultValue: '24',
1916
+ admin: {
1917
+ width: '50%',
1918
+ },
1919
+ options: [
1920
+ { label: 'Small', value: '16' },
1921
+ { label: 'Default', value: '24' },
1922
+ { label: 'Medium', value: '32' },
1923
+ { label: 'Large', value: '48' },
1924
+ { label: 'Extra Large', value: '64' },
1925
+ ],
1926
+ }),
1927
+ fieldRoles.fieldRichText({ name: 'body', label: 'Body' }),
1928
+ fieldRoles.fieldAction()
1929
+ ]
1930
+ }
1931
+ ]
1932
+ }
1933
+ ]
1934
+ },
1935
+ ],
1936
+ };
1937
+
1938
+ const blockGrid = {
1939
+ slug: 'grid',
1940
+ labels: {
1941
+ singular: 'Griglia',
1942
+ plural: 'Griglie',
1943
+ },
1944
+ fields: [
1945
+ fieldRoles.fieldSectionTabs({
1946
+ configFields: [
1947
+ {
1948
+ type: 'row',
1949
+ fields: [
1950
+ fieldRoles.fieldNumber({
1951
+ name: 'desktopColumns',
1952
+ label: 'Colonne Desktop',
1953
+ defaultValue: 4,
1954
+ min: 1,
1955
+ max: 12,
1956
+ admin: {
1957
+ width: '33%',
1958
+ description: '≥ 1024px (lg)'
1959
+ }
1960
+ }),
1961
+ fieldRoles.fieldNumber({
1962
+ name: 'tabletColumns',
1963
+ label: 'Colonne Tablet',
1964
+ defaultValue: 2,
1965
+ min: 1,
1966
+ max: 6,
1967
+ admin: {
1968
+ width: '33%',
1969
+ description: '≥ 768px (md)'
1970
+ }
1971
+ }),
1972
+ fieldRoles.fieldNumber({
1973
+ name: 'mobileColumns',
1974
+ label: 'Colonne Mobile',
1975
+ defaultValue: 1,
1976
+ min: 1,
1977
+ max: 2,
1978
+ admin: {
1979
+ width: '33%',
1980
+ description: '< 768px'
1981
+ }
1982
+ }),
1983
+ ]
1984
+ },
1985
+ {
1986
+ type: 'row',
1987
+ fields: [
1988
+ fieldRoles.fieldSelect({
1989
+ name: 'gap',
1990
+ label: 'Spazio tra colonne',
1991
+ defaultValue: 'gap-6',
1992
+ options: [
1993
+ { label: 'Nessuno', value: 'gap-0' },
1994
+ { label: 'Minimo', value: 'gap-2' },
1995
+ { label: 'Piccolo', value: 'gap-4' },
1996
+ { label: 'Medio', value: 'gap-6' },
1997
+ { label: 'Grande', value: 'gap-8' },
1998
+ { label: 'Extra Large', value: 'gap-12' },
1999
+ ],
2000
+ admin: {
2001
+ width: '50%'
2002
+ }
2003
+ }),
2004
+ fieldRoles.fieldSelect({
2005
+ name: 'verticalGap',
2006
+ label: 'Spazio tra righe',
2007
+ defaultValue: 'gap-y-6',
2008
+ options: [
2009
+ { label: 'Nessuno', value: 'gap-y-0' },
2010
+ { label: 'Minimo', value: 'gap-y-2' },
2011
+ { label: 'Piccolo', value: 'gap-y-4' },
2012
+ { label: 'Medio', value: 'gap-y-6' },
2013
+ { label: 'Grande', value: 'gap-y-8' },
2014
+ { label: 'Extra Large', value: 'gap-y-12' },
2015
+ ],
2016
+ admin: {
2017
+ width: '50%'
2018
+ }
2019
+ }),
2020
+ ]
2021
+ },
2022
+ {
2023
+ type: 'row',
2024
+ fields: [
2025
+ fieldRoles.fieldCheckbox({
2026
+ name: 'equalHeight',
2027
+ label: 'Elementi di altezza uguale',
2028
+ defaultValue: false,
2029
+ admin: {
2030
+ width: '50%',
2031
+ description: 'Imposta tutti gli elementi della griglia alla stessa altezza'
2032
+ }
2033
+ }),
2034
+ fieldRoles.fieldSelect({
2035
+ name: 'alignment',
2036
+ label: 'Allineamento elementi',
2037
+ defaultValue: 'start',
2038
+ options: [
2039
+ { label: 'In alto', value: 'start' },
2040
+ { label: 'Centrato', value: 'center' },
2041
+ { label: 'In basso', value: 'end' },
2042
+ { label: 'Allungato', value: 'stretch' },
2043
+ ],
2044
+ admin: {
2045
+ width: '50%',
2046
+ description: 'Allineamento verticale degli elementi nella griglia'
2047
+ }
2048
+ }),
2049
+ ]
2050
+ },
2051
+ ],
2052
+ contentFields: [
2053
+ {
2054
+ type: 'group',
2055
+ name: 'img',
2056
+ label: 'Immagine',
2057
+ fields: [
2058
+ {
2059
+ type: 'row',
2060
+ fields: [
2061
+ fieldRoles.fieldCheckbox({
2062
+ name: 'hasOverlay',
2063
+ label: 'Overlay',
2064
+ defaultValue: true,
2065
+ admin: {
2066
+ description: 'Aggiunge un overlay sull\'immagine',
2067
+ width: '25%'
2068
+ }
2069
+ }),
2070
+ fieldRoles.fieldCheckbox({
2071
+ name: 'useAsBg',
2072
+ label: 'Usa come sfondo',
2073
+ defaultValue: true,
2074
+ admin: {
2075
+ description: 'Usa l\'immagine come sfondo del contenuto',
2076
+ width: '25%'
2077
+ }
2078
+ }),
2079
+ ]
2080
+ }
2081
+ ]
2082
+ },
2083
+ {
2084
+ name: 'cols',
2085
+ label: 'Colonne',
2086
+ type: 'blocks',
2087
+ blocks: [blockGridContent],
2088
+ }
2089
+ ]
2090
+ })
2091
+ ],
2092
+ };
2093
+
2094
+ // config/blockCarousel.ts
2095
+ const blockImage = {
2096
+ slug: 'image',
2097
+ labels: {
2098
+ singular: 'immagine',
2099
+ plural: 'immagini',
2100
+ },
2101
+ fields: [
2102
+ fieldRoles.fieldSectionTabs({
2103
+ contentFields: [fieldRoles.fieldUpload('media', { name: 'image', label: 'immagine', required: true })],
2104
+ }),
2105
+ ],
2106
+ };
2107
+
2108
+ // config/blockCarousel.ts
2109
+ const blockParallax = {
2110
+ slug: 'parallax',
2111
+ labels: {
2112
+ singular: 'Parallax',
2113
+ plural: 'Parallaxes',
2114
+ },
2115
+ fields: [
2116
+ fieldRoles.fieldUpload('media', {
2117
+ name: 'parallaxImage',
2118
+ required: true,
2119
+ label: 'Immagine di sfondo',
2120
+ }),
2121
+ fieldRoles.fieldRichText({
2122
+ name: 'content',
2123
+ label: 'Contenuto',
2124
+ }),
2125
+ {
2126
+ type: 'row',
2127
+ fields: [
2128
+ fieldRoles.fieldViewportHeights(),
2129
+ fieldRoles.fieldCheckbox({
2130
+ name: 'hasOverlay',
2131
+ label: 'Overlay',
2132
+ defaultValue: true,
2133
+ admin: {
2134
+ description: "Abilità overlay sull'immagine",
2135
+ },
2136
+ }),
2137
+ ],
2138
+ },
2139
+ {
2140
+ type: 'row',
2141
+ fields: [
2142
+ fieldRoles.fieldNumber({
2143
+ name: 'parallaxStrength',
2144
+ label: 'Intensità parallax',
2145
+ defaultValue: 300,
2146
+ min: 0,
2147
+ max: 1000,
2148
+ admin: {
2149
+ width: '25%',
2150
+ },
2151
+ }),
2152
+ fieldRoles.fieldNumber({
2153
+ name: 'parallaxBlur',
2154
+ label: 'Sfocatura (0 = nessuna)',
2155
+ defaultValue: 0,
2156
+ min: 0,
2157
+ max: 5,
2158
+ admin: {
2159
+ width: '25%',
2160
+ },
2161
+ }),
2162
+ fieldRoles.fieldText({
2163
+ name: 'className',
2164
+ label: 'Classi CSS personalizzate',
2165
+ admin: {
2166
+ width: '25%',
2167
+ },
2168
+ }),
2169
+ fieldRoles.fieldNumber({
2170
+ name: 'minHeight',
2171
+ label: 'Altezza minima (px)',
2172
+ defaultValue: 400,
2173
+ admin: {
2174
+ width: '25%',
2175
+ },
2176
+ }),
2177
+ ],
2178
+ },
2179
+ ],
2180
+ };
2181
+
2182
+ // config/blockCarousel.ts
2183
+ const blockTabs = {
2184
+ slug: 'tabs',
2185
+ labels: {
2186
+ singular: 'tabs',
2187
+ plural: 'tabs',
2188
+ },
2189
+ fields: [
2190
+ fieldRoles.fieldSectionTabs({
2191
+ contentFields: [
2192
+ fieldRoles.fieldArray({
2193
+ name: 'tab',
2194
+ label: 'tab',
2195
+ fields: [
2196
+ fieldRoles.fieldText({ name: 'title', label: 'Titolo tab' }),
2197
+ fieldRoles.fieldRichText({ name: 'body', label: 'Contenuto tab' }),
2198
+ ],
2199
+ }),
2200
+ ],
2201
+ }),
2202
+ ],
2203
+ };
2204
+
1599
2205
  // GLOBALS
1600
2206
 
1601
2207
  var index = /*#__PURE__*/Object.freeze({
1602
2208
  __proto__: null,
2209
+ blockCarousel: blockCarousel,
2210
+ blockDisclosureList: blockDisclosureList,
2211
+ blockGrid: blockGrid,
2212
+ blockGridContent: blockGridContent,
2213
+ blockImage: blockImage,
2214
+ blockParallax: blockParallax,
2215
+ blockTabs: blockTabs,
1603
2216
  collectionMenus: collectionMenus,
1604
2217
  configFooter: configFooter,
1605
2218
  configHeader: configHeader,
1606
2219
  configSettings: configSettings
1607
2220
  });
1608
2221
 
2222
+ exports.blockCarousel = blockCarousel;
2223
+ exports.blockDisclosureList = blockDisclosureList;
2224
+ exports.blockGrid = blockGrid;
2225
+ exports.blockGridContent = blockGridContent;
2226
+ exports.blockImage = blockImage;
2227
+ exports.blockParallax = blockParallax;
2228
+ exports.blockTabs = blockTabs;
1609
2229
  exports.collectionMenus = collectionMenus;
1610
2230
  exports.configFooter = configFooter;
1611
2231
  exports.configHeader = configHeader;
1612
2232
  exports.configSettings = configSettings;
1613
2233
  exports.index = index;
1614
- //# sourceMappingURL=index-CAnpYmu4.js.map
2234
+ //# sourceMappingURL=index-B4kXolv9.js.map