@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.js CHANGED
@@ -2651,7 +2651,11 @@ var SPACING_VALUES = {
2651
2651
  "6xl": 80,
2652
2652
  "7xl": 96,
2653
2653
  "8xl": 112,
2654
- "9xl": 128
2654
+ "9xl": 128,
2655
+ "10xl": 144,
2656
+ "11xl": 160,
2657
+ "12xl": 176,
2658
+ "13xl": 192
2655
2659
  };
2656
2660
  var BACKGROUND_IMAGE_SIZE_VALUES = {
2657
2661
  auto: "auto",
@@ -14162,10 +14166,28 @@ var StyledAnchor = styled.a.attrs(function (props) {
14162
14166
  color0: design.backgroundColor,
14163
14167
  percentage: percentage
14164
14168
  }),
14165
- color: !isButton && blendColors({
14169
+ "&:before": {
14170
+ width: "100%",
14171
+ display: isButton && "none",
14172
+ transitionProperty: "all",
14173
+ transitionTimingFunction: "cubic-bezier(.4,0,.2,1)",
14174
+ transitionDuration: ".2s"
14175
+ }
14176
+ },
14177
+ "&:before": {
14178
+ content: '""',
14179
+ position: "absolute",
14180
+ bottom: "-0.225rem",
14181
+ left: 0,
14182
+ width: 0,
14183
+ height: "1px",
14184
+ backgroundColor: blendColors({
14166
14185
  color0: design.color,
14167
14186
  percentage: percentage
14168
- })
14187
+ }),
14188
+ transitionProperty: "all",
14189
+ transitionTimingFunction: "cubic-bezier(.4,0,.2,1)",
14190
+ transitionDuration: ".2s"
14169
14191
  }
14170
14192
  };
14171
14193
  return mergeAll([design, borderColorStyles, anchorStyles]);
@@ -15443,7 +15465,7 @@ var LinkElement = function LinkElement(_ref) {
15443
15465
  disableButtonAndLinks = _ref$disableButtonAnd === void 0 ? false : _ref$disableButtonAnd,
15444
15466
  _ref$children = _ref.children,
15445
15467
  children = _ref$children === void 0 ? null : _ref$children;
15446
- var baseClass = classnames("inline-flex items-center transition-all duration-300 ease-in-out", {
15468
+ var baseClass = classnames("inline-flex items-center transition-all duration-300 ease-in-out relative", {
15447
15469
  "pointer-events-none": action === "" || disableButtonAndLinks
15448
15470
  });
15449
15471
  var commonProps = {