@bigbinary/neeto-site-blocks 1.2.1 → 1.2.2
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 +11 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2873,6 +2873,12 @@ var DEFAULT_LINK_STYLES = {
|
|
|
2873
2873
|
marginBottom: 0,
|
|
2874
2874
|
marginTop: 0
|
|
2875
2875
|
};
|
|
2876
|
+
var IMAGE_POSITIONS = {
|
|
2877
|
+
top: "top",
|
|
2878
|
+
bottom: "bottom",
|
|
2879
|
+
left: "left",
|
|
2880
|
+
right: "right"
|
|
2881
|
+
};
|
|
2876
2882
|
|
|
2877
2883
|
var index$1 = /*#__PURE__*/Object.freeze({
|
|
2878
2884
|
__proto__: null,
|
|
@@ -2896,7 +2902,8 @@ var index$1 = /*#__PURE__*/Object.freeze({
|
|
|
2896
2902
|
PRICING_PLANS: PRICING_PLANS,
|
|
2897
2903
|
DEFAULT_BUTTON_STYLES: DEFAULT_BUTTON_STYLES,
|
|
2898
2904
|
DEFAULT_TYPOGRAPHY_STYLES: DEFAULT_TYPOGRAPHY_STYLES,
|
|
2899
|
-
DEFAULT_LINK_STYLES: DEFAULT_LINK_STYLES
|
|
2905
|
+
DEFAULT_LINK_STYLES: DEFAULT_LINK_STYLES,
|
|
2906
|
+
IMAGE_POSITIONS: IMAGE_POSITIONS
|
|
2900
2907
|
});
|
|
2901
2908
|
|
|
2902
2909
|
var _excluded$1A = ["size"];
|
|
@@ -38006,8 +38013,10 @@ var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
|
38006
38013
|
className: "col-span-12 flex justify-center sm:col-span-6 sm:col-start-7"
|
|
38007
38014
|
}, /*#__PURE__*/React__default["default"].createElement("ul", {
|
|
38008
38015
|
className: "list-disc"
|
|
38009
|
-
}, bulletList.map(function (
|
|
38016
|
+
}, bulletList.map(function (_ref2, index) {
|
|
38017
|
+
var featureTitle = _ref2.title;
|
|
38010
38018
|
return /*#__PURE__*/React__default["default"].createElement(Typography$1, {
|
|
38019
|
+
isTitle: true,
|
|
38011
38020
|
component: "li",
|
|
38012
38021
|
key: getUniqueKey(featureTitle, index),
|
|
38013
38022
|
style: design.bulletList
|