@rpg-engine/long-bow 0.5.10 → 0.5.11
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/long-bow.cjs.development.js +2 -2
- 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 +2 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Item/Inventory/ItemContainer.tsx +22 -18
|
@@ -15682,7 +15682,7 @@ var ItemContainer$1 = function ItemContainer(_ref) {
|
|
|
15682
15682
|
atlasJSON: atlasJSON
|
|
15683
15683
|
}), React__default.createElement(ItemsContainer, {
|
|
15684
15684
|
className: "item-container-body"
|
|
15685
|
-
}, onRenderSlots()), totalPages > 1 && React__default.createElement(ArrowContainer$1, null, React__default.createElement(SelectArrow, {
|
|
15685
|
+
}, onRenderSlots()), totalPages > 1 && React__default.createElement(ArrowContainer$1, null, currentPage > 1 && React__default.createElement(SelectArrow, {
|
|
15686
15686
|
className: 'arrow .arrow-up',
|
|
15687
15687
|
direction: "left",
|
|
15688
15688
|
onPointerDown: function onPointerDown() {
|
|
@@ -15690,7 +15690,7 @@ var ItemContainer$1 = function ItemContainer(_ref) {
|
|
|
15690
15690
|
goToPreviousPage();
|
|
15691
15691
|
}
|
|
15692
15692
|
}
|
|
15693
|
-
}), React__default.createElement(SelectArrow, {
|
|
15693
|
+
}), currentPage < totalPages && React__default.createElement(SelectArrow, {
|
|
15694
15694
|
className: 'arrow .arrow-down',
|
|
15695
15695
|
direction: "right",
|
|
15696
15696
|
onPointerDown: function onPointerDown() {
|