@bigbinary/neeto-site-blocks 1.4.4 → 1.4.5
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 +26 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +26 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2697,7 +2697,11 @@ var SPACING_VALUES = {
|
|
|
2697
2697
|
"6xl": 80,
|
|
2698
2698
|
"7xl": 96,
|
|
2699
2699
|
"8xl": 112,
|
|
2700
|
-
"9xl": 128
|
|
2700
|
+
"9xl": 128,
|
|
2701
|
+
"10xl": 144,
|
|
2702
|
+
"11xl": 160,
|
|
2703
|
+
"12xl": 176,
|
|
2704
|
+
"13xl": 192
|
|
2701
2705
|
};
|
|
2702
2706
|
var BACKGROUND_IMAGE_SIZE_VALUES = {
|
|
2703
2707
|
auto: "auto",
|
|
@@ -14208,10 +14212,28 @@ var StyledAnchor = styled__default["default"].a.attrs(function (props) {
|
|
|
14208
14212
|
color0: design.backgroundColor,
|
|
14209
14213
|
percentage: percentage
|
|
14210
14214
|
}),
|
|
14211
|
-
|
|
14215
|
+
"&:before": {
|
|
14216
|
+
width: "100%",
|
|
14217
|
+
display: isButton && "none",
|
|
14218
|
+
transitionProperty: "all",
|
|
14219
|
+
transitionTimingFunction: "cubic-bezier(.4,0,.2,1)",
|
|
14220
|
+
transitionDuration: ".2s"
|
|
14221
|
+
}
|
|
14222
|
+
},
|
|
14223
|
+
"&:before": {
|
|
14224
|
+
content: '""',
|
|
14225
|
+
position: "absolute",
|
|
14226
|
+
bottom: "-0.225rem",
|
|
14227
|
+
left: 0,
|
|
14228
|
+
width: 0,
|
|
14229
|
+
height: "1px",
|
|
14230
|
+
backgroundColor: blendColors({
|
|
14212
14231
|
color0: design.color,
|
|
14213
14232
|
percentage: percentage
|
|
14214
|
-
})
|
|
14233
|
+
}),
|
|
14234
|
+
transitionProperty: "all",
|
|
14235
|
+
transitionTimingFunction: "cubic-bezier(.4,0,.2,1)",
|
|
14236
|
+
transitionDuration: ".2s"
|
|
14215
14237
|
}
|
|
14216
14238
|
};
|
|
14217
14239
|
return mergeAll([design, borderColorStyles, anchorStyles]);
|
|
@@ -15489,7 +15511,7 @@ var LinkElement = function LinkElement(_ref) {
|
|
|
15489
15511
|
disableButtonAndLinks = _ref$disableButtonAnd === void 0 ? false : _ref$disableButtonAnd,
|
|
15490
15512
|
_ref$children = _ref.children,
|
|
15491
15513
|
children = _ref$children === void 0 ? null : _ref$children;
|
|
15492
|
-
var baseClass = classnames("inline-flex items-center transition-all duration-300 ease-in-out", {
|
|
15514
|
+
var baseClass = classnames("inline-flex items-center transition-all duration-300 ease-in-out relative", {
|
|
15493
15515
|
"pointer-events-none": action === "" || disableButtonAndLinks
|
|
15494
15516
|
});
|
|
15495
15517
|
var commonProps = {
|