@7shifts/sous-chef 3.45.2 → 3.45.4

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.css CHANGED
@@ -1810,7 +1810,7 @@ h5._32amZ {
1810
1810
  }
1811
1811
 
1812
1812
  ._2Gjlw td {
1813
- background-color: var(--color-eggplant-100);
1813
+ background-color: var(--color-blackberry-100);
1814
1814
  }
1815
1815
  ._13W8D {
1816
1816
  white-space: nowrap;
@@ -2654,6 +2654,8 @@ input:disabled + ._2W10t::after {
2654
2654
  all: unset;
2655
2655
  cursor: pointer;
2656
2656
  width: 100%;
2657
+ padding: 16px;
2658
+ margin: -16px;
2657
2659
  }
2658
2660
  ._34Ht7 {
2659
2661
  transition: 0.2s ease-in-out;
@@ -3071,8 +3073,8 @@ input:focus-visible + ._W4HpY {
3071
3073
  position: absolute;
3072
3074
  }
3073
3075
  input:checked ~ ._3mCob {
3074
- border-color: var(--color-eggplant-300);
3075
- box-shadow: 0 0 8px var(--color-eggplant-300);
3076
+ border-color: var(--color-blackberry-300);
3077
+ box-shadow: 0 0 8px var(--color-blackberry-300);
3076
3078
  cursor: default;
3077
3079
  }
3078
3080
  ._3mCob {
package/dist/index.js CHANGED
@@ -892,6 +892,7 @@ var ButtonElement = React.forwardRef(function (_ref2, ref) {
892
892
  }, React__default.createElement("a", _extends({}, commonProps, rest, {
893
893
  href: href,
894
894
  target: target,
895
+ rel: target === BUTTON_TARGETS.BLANK ? 'noopener noreferrer' : '',
895
896
  "aria-disabled": disabled,
896
897
  ref: ref
897
898
  }), children));
@@ -5853,7 +5854,8 @@ var Link = function Link(_ref) {
5853
5854
  className: classnames(styles$8['link'], (_classNames = {}, _classNames[styles$8['link--primary']] = theme === LINK_THEME.PRIMARY, _classNames[styles$8['link--contrast']] = theme === LINK_THEME.CONTRAST, _classNames)),
5854
5855
  href: href,
5855
5856
  target: target,
5856
- onClick: onClick
5857
+ onClick: onClick,
5858
+ rel: target === LINK_TARGET.BLANK ? 'noopener noreferrer' : ''
5857
5859
  }), children);
5858
5860
  };
5859
5861
 
@@ -7216,7 +7218,7 @@ var DropdownListItem = function DropdownListItem(_ref) {
7216
7218
  };
7217
7219
  var getCaptionColor = function getCaptionColor() {
7218
7220
  if (selected) {
7219
- return 'eggplant-500';
7221
+ return 'blackberry-500';
7220
7222
  }
7221
7223
  if (disabled) {
7222
7224
  return 'grey-400';