@7shifts/sous-chef 3.57.2-beta0 → 3.57.2-beta2

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.
@@ -22,7 +22,7 @@ export type Props<T> = {
22
22
  onChange?: (e: SelectOption<T>) => void;
23
23
  onBlur?: (e: SelectOption<T>) => void;
24
24
  options: SelectOptions<T>;
25
- placeholder?: string;
25
+ placeholder?: React.ReactNode;
26
26
  /** Use a prefix for things like currency symbols (“$”, “¥”, “£”) or icons. */
27
27
  prefix?: React.ReactNode;
28
28
  /** Use a suffix for things like (“%”, “Jr.”, “.00”) or icons. */
package/dist/index.js CHANGED
@@ -9403,7 +9403,7 @@ var AccordionItem = function AccordionItem(props) {
9403
9403
  }))), React__default["default"].createElement("div", {
9404
9404
  "data-testid": "" + (isOpen ? 'accordion-item-' + id + '-open' : 'accordion-item-' + id + '-closed'),
9405
9405
  className: styles$y["accordion-item__content" + (isOpen ? '--active' : '')]
9406
- }, isOpen && React__default["default"].createElement(Text, {
9406
+ }, React__default["default"].createElement(Text, {
9407
9407
  color: "grey-500"
9408
9408
  }, content)));
9409
9409
  };