@rpg-engine/long-bow 0.2.64 → 0.2.65

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.
@@ -26997,7 +26997,9 @@ var Chat = function Chat(_ref) {
26997
26997
  width = _ref$width === void 0 ? '100%' : _ref$width,
26998
26998
  _ref$height = _ref.height,
26999
26999
  height = _ref$height === void 0 ? '250px' : _ref$height,
27000
- onCloseButton = _ref.onCloseButton;
27000
+ onCloseButton = _ref.onCloseButton,
27001
+ onFocus = _ref.onFocus,
27002
+ onBlur = _ref.onBlur;
27001
27003
  var _useState = useState(''),
27002
27004
  message = _useState[0],
27003
27005
  setMessage = _useState[1];
@@ -27064,7 +27066,9 @@ var Chat = function Chat(_ref) {
27064
27066
  height: 20,
27065
27067
  className: "chat-input dark-background",
27066
27068
  type: "text",
27067
- autoComplete: "off"
27069
+ autoComplete: "off",
27070
+ onFocus: onFocus,
27071
+ onBlur: onBlur
27068
27072
  })), React.createElement(Column, {
27069
27073
  justifyContent: "flex-end"
27070
27074
  }, React.createElement(Button, {