@woodylab/payload 0.0.18 → 0.0.19

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