@bigbinary/neeto-site-blocks 0.6.2 → 0.6.3
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.
- package/dist/index.cjs.js +27 -28
- package/dist/index.js +27 -28
- package/package.json +1 -1
- package/resolve.js +2 -1
- package/types.d.ts +13 -12
package/package.json
CHANGED
package/resolve.js
CHANGED
package/types.d.ts
CHANGED
|
@@ -7,21 +7,22 @@ interface BlockProps {
|
|
|
7
7
|
className?: string;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
export const
|
|
11
|
-
export const
|
|
12
|
-
export const
|
|
13
|
-
export const
|
|
14
|
-
export const
|
|
15
|
-
export const
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
18
|
-
export const
|
|
19
|
-
export const
|
|
10
|
+
export const CtaWithButtonOnBottom : React.FC<BlockProps>;
|
|
11
|
+
export const FaqWithHamburgerView : React.FC<BlockProps>;
|
|
12
|
+
export const FeatureWithRightImage : React.FC<BlockProps>;
|
|
13
|
+
export const FeatureWithGrid : React.FC<BlockProps>;
|
|
14
|
+
export const FeatureWithList : React.FC<BlockProps>;
|
|
15
|
+
export const FeatureWithLink : React.FC<BlockProps>;
|
|
16
|
+
export const FeatureWithHorizontalTab : React.FC<BlockProps>;
|
|
17
|
+
export const FooterWithLinkGroups : React.FC<BlockProps>;
|
|
18
|
+
export const GalleryWithSlidingImages : React.FC<BlockProps>;
|
|
19
|
+
export const GridWithImage : React.FC<BlockProps>;
|
|
20
20
|
export const HeaderWithLeftLinks : React.FC<BlockProps>;
|
|
21
21
|
export const HeaderWithMiddleLinks : React.FC<BlockProps>;
|
|
22
22
|
export const HeaderWithRightLinks : React.FC<BlockProps>;
|
|
23
|
-
export const
|
|
23
|
+
export const HeroWithRightImage : React.FC<BlockProps>;
|
|
24
24
|
export const HorizontalTestimonial : React.FC<BlockProps>;
|
|
25
25
|
export const LogoClouds : React.FC<BlockProps>;
|
|
26
|
-
export const
|
|
26
|
+
export const PricingInCardView : React.FC<BlockProps>;
|
|
27
27
|
export const SlidingTestimonial : React.FC<BlockProps>;
|
|
28
|
+
export function getSiteConfigurations(Object): Object;
|