@rpg-engine/long-bow 0.8.210 → 0.8.212
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 +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/package.json +2 -2
- package/src/components/DraggableContainer.tsx +2 -2
- package/src/components/Marketplace/CharacterListingModal.tsx +1 -1
package/dist/long-bow.esm.js
CHANGED
|
@@ -2493,8 +2493,8 @@ var DraggableContainer = function DraggableContainer(_ref) {
|
|
|
2493
2493
|
opacity = _ref.opacity;
|
|
2494
2494
|
var draggableRef = useRef(null);
|
|
2495
2495
|
if (isFullScreen) {
|
|
2496
|
-
width = '
|
|
2497
|
-
height = '
|
|
2496
|
+
width = '100vw';
|
|
2497
|
+
height = '100vh';
|
|
2498
2498
|
}
|
|
2499
2499
|
useOutsideClick(draggableRef, 'item-container');
|
|
2500
2500
|
var handleClickOutside = useCallback(function (event) {
|
|
@@ -13900,7 +13900,7 @@ var CharacterListingModal = function CharacterListingModal(_ref) {
|
|
|
13900
13900
|
}, []);
|
|
13901
13901
|
if (!isOpen) return null;
|
|
13902
13902
|
var eligibleCharacters = accountCharacters.filter(function (c) {
|
|
13903
|
-
return !c.isListedForSale
|
|
13903
|
+
return !c.isListedForSale;
|
|
13904
13904
|
});
|
|
13905
13905
|
var isActiveCharacter = function isActiveCharacter(c) {
|
|
13906
13906
|
return !!activeCharacterId && c._id === activeCharacterId;
|