@rpg-engine/long-bow 0.3.41 → 0.3.43

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.
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface ICharacterStatusProps {
3
+ healthValue: number;
4
+ healthMaxValue: number;
5
+ manaValue: number;
6
+ manaMaxValue: number;
7
+ charName: string;
8
+ }
9
+ export declare const CharacterStatus: React.FC<ICharacterStatusProps>;
@@ -32792,7 +32792,8 @@ var Chat = function Chat(_ref) {
32792
32792
  autoComplete: "off",
32793
32793
  onFocus: onFocus,
32794
32794
  onBlur: onBlur,
32795
- onTouchStart: onFocus
32795
+ onTouchStart: onFocus,
32796
+ autoFocus: true
32796
32797
  })), React__default.createElement(Column, {
32797
32798
  justifyContent: "flex-end"
32798
32799
  }, React__default.createElement(Button$1, {
@@ -35834,8 +35835,7 @@ var TradingItemRow = function TradingItemRow(_ref) {
35834
35835
  };
35835
35836
  var onRightOutClick = function onRightOutClick() {
35836
35837
  var _traderItem$qty2;
35837
- if (selectedQty + 10 < ((_traderItem$qty2 = traderItem.qty) != null ? _traderItem$qty2 : 999)) {
35838
- console.log(traderItem);
35838
+ if (selectedQty + 10 <= ((_traderItem$qty2 = traderItem.qty) != null ? _traderItem$qty2 : 999)) {
35839
35839
  var newQuantity = selectedQty + 10;
35840
35840
  onQuantityChange(traderItem, newQuantity);
35841
35841
  }