@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.
- package/dist/components/CaracterStatus/CaracterStatus.d.ts +9 -0
- package/dist/long-bow.cjs.development.js +3 -3
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +3 -3
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/stories/CaracterStatus.stories.d.ts +5 -0
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/CaracterStatus/CaracterStatus.tsx +86 -0
- package/src/components/CaracterStatus/Character.png +0 -0
- package/src/components/Chat/Chat.tsx +1 -0
- package/src/components/TradingMenu/TradingItemRow.tsx +1 -2
- package/src/components/TradingMenu/items.mock.ts +1 -0
- package/src/stories/CaracterStatus.stories.tsx +29 -0
|
@@ -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
|
|
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
|
}
|