@bigbinary/neeto-site-blocks 1.1.9 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +46 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +46 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -37924,6 +37924,51 @@ var FAQItem = function FAQItem(_ref3) {
|
|
|
37924
37924
|
}, answer)))));
|
|
37925
37925
|
};
|
|
37926
37926
|
|
|
37927
|
+
var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
37928
|
+
var configurations = _ref.configurations,
|
|
37929
|
+
_ref$className = _ref.className,
|
|
37930
|
+
className = _ref$className === void 0 ? "" : _ref$className,
|
|
37931
|
+
id = _ref.id;
|
|
37932
|
+
var properties = configurations.properties,
|
|
37933
|
+
design = configurations.design;
|
|
37934
|
+
var _properties$content = properties.content,
|
|
37935
|
+
title = _properties$content.title,
|
|
37936
|
+
description = _properties$content.description,
|
|
37937
|
+
enableAnimation = properties.enableAnimation,
|
|
37938
|
+
bulletList = properties.bulletList,
|
|
37939
|
+
src = properties.backgroundImage.src;
|
|
37940
|
+
var baseClasses = "grid grid-cols-12 items-center";
|
|
37941
|
+
return /*#__PURE__*/React__default.createElement(BlockWrapper, {
|
|
37942
|
+
className: className,
|
|
37943
|
+
enableAnimation: enableAnimation,
|
|
37944
|
+
id: id,
|
|
37945
|
+
backgroundImage: mergeLeft({
|
|
37946
|
+
src: src
|
|
37947
|
+
}, design.backgroundImage),
|
|
37948
|
+
design: design.body,
|
|
37949
|
+
nestedClassName: baseClasses
|
|
37950
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
37951
|
+
className: "col-span-12 sm:col-span-5"
|
|
37952
|
+
}, /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
37953
|
+
isTitle: true,
|
|
37954
|
+
component: "h1",
|
|
37955
|
+
style: design.title
|
|
37956
|
+
}, title), /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
37957
|
+
component: "p",
|
|
37958
|
+
style: design.description
|
|
37959
|
+
}, description)), /*#__PURE__*/React__default.createElement("div", {
|
|
37960
|
+
className: "col-span-12 flex justify-center sm:col-span-6 sm:col-start-7"
|
|
37961
|
+
}, /*#__PURE__*/React__default.createElement("ul", {
|
|
37962
|
+
className: "list-disc"
|
|
37963
|
+
}, bulletList.map(function (featureTitle, index) {
|
|
37964
|
+
return /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
37965
|
+
component: "li",
|
|
37966
|
+
key: getUniqueKey(featureTitle, index),
|
|
37967
|
+
style: design.bulletList
|
|
37968
|
+
}, featureTitle);
|
|
37969
|
+
}))));
|
|
37970
|
+
};
|
|
37971
|
+
|
|
37927
37972
|
function ownKeys$5(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
37928
37973
|
function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$5(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$5(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
37929
37974
|
var FeatureWithDetails = function FeatureWithDetails(_ref) {
|
|
@@ -41348,5 +41393,5 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
41348
41393
|
Outlined: OutlineIcons
|
|
41349
41394
|
});
|
|
41350
41395
|
|
|
41351
|
-
export { BlogContent, CardsClassic, CardsInGridView, CardsWithCustomizableGrid, CardsWithImage, CtaClassic, CtaWithEmailAction, CtaWithLogo, index$1 as DESIGN_OPTIONS, Embed, FaqWithHamburgerView as FaqWithAccordion, FeatureWithDetails, FeatureWithGrid, FeatureWithImage, FeatureWithJumboText, FeatureWithList, FeatureWithProgressBar, FooterClassic, FooterWithIcons, FooterWithLinks, GalleryClassic, GalleryWithAutoplay, HeaderWithButtons, HeaderWithIcons, HeaderWithLogoTitle, HeroWithCallToAction, HeroWithMultipleLayouts, index as Icons, LogoClouds, Paragraph, PricingInCardView, TestimonialWithSlider, TestimonialWithVerticalView };
|
|
41396
|
+
export { BlogContent, CardsClassic, CardsInGridView, CardsWithCustomizableGrid, CardsWithImage, CtaClassic, CtaWithEmailAction, CtaWithLogo, index$1 as DESIGN_OPTIONS, Embed, FaqWithHamburgerView as FaqWithAccordion, FeatureWithBulletList, FeatureWithDetails, FeatureWithGrid, FeatureWithImage, FeatureWithJumboText, FeatureWithList, FeatureWithProgressBar, FooterClassic, FooterWithIcons, FooterWithLinks, GalleryClassic, GalleryWithAutoplay, HeaderWithButtons, HeaderWithIcons, HeaderWithLogoTitle, HeroWithCallToAction, HeroWithMultipleLayouts, index as Icons, LogoClouds, Paragraph, PricingInCardView, TestimonialWithSlider, TestimonialWithVerticalView };
|
|
41352
41397
|
//# sourceMappingURL=index.js.map
|