@rpg-engine/long-bow 0.3.87 → 0.3.88
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 +8 -4
- 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 +8 -4
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/CircularController/CircularController.tsx +1 -0
- package/src/components/Shortcuts/Shortcuts.tsx +1 -0
- package/src/components/Shortcuts/ShortcutsSetter.tsx +1 -0
- package/src/components/TradingMenu/TradingItemRow.tsx +1 -0
|
@@ -33116,7 +33116,8 @@ var CircularController = function CircularController(_ref) {
|
|
|
33116
33116
|
spriteKey: shared.getItemTextureKeyPath({
|
|
33117
33117
|
key: _payload.texturePath,
|
|
33118
33118
|
texturePath: _payload.texturePath,
|
|
33119
|
-
stackQty: _payload.stackQty || 1
|
|
33119
|
+
stackQty: _payload.stackQty || 1,
|
|
33120
|
+
isStackable: _payload.isStackable
|
|
33120
33121
|
}, atlasJSON),
|
|
33121
33122
|
width: 32,
|
|
33122
33123
|
height: 32,
|
|
@@ -35358,7 +35359,8 @@ var ShortcutsSetter = function ShortcutsSetter(_ref) {
|
|
|
35358
35359
|
spriteKey: shared.getItemTextureKeyPath({
|
|
35359
35360
|
key: _payload.texturePath,
|
|
35360
35361
|
texturePath: _payload.texturePath,
|
|
35361
|
-
stackQty: _payload.stackQty || 1
|
|
35362
|
+
stackQty: _payload.stackQty || 1,
|
|
35363
|
+
isStackable: _payload.isStackable
|
|
35362
35364
|
}, atlasJSON),
|
|
35363
35365
|
width: 32,
|
|
35364
35366
|
height: 32,
|
|
@@ -35989,7 +35991,8 @@ var Shortcuts = function Shortcuts(_ref) {
|
|
|
35989
35991
|
spriteKey: shared.getItemTextureKeyPath({
|
|
35990
35992
|
key: _payload.texturePath,
|
|
35991
35993
|
texturePath: _payload.texturePath,
|
|
35992
|
-
stackQty: _payload.stackQty || 1
|
|
35994
|
+
stackQty: _payload.stackQty || 1,
|
|
35995
|
+
isStackable: _payload.isStackable
|
|
35993
35996
|
}, atlasJSON),
|
|
35994
35997
|
width: 32,
|
|
35995
35998
|
height: 32
|
|
@@ -36504,7 +36507,8 @@ var TradingItemRow = function TradingItemRow(_ref) {
|
|
|
36504
36507
|
spriteKey: shared.getItemTextureKeyPath({
|
|
36505
36508
|
key: traderItem.key,
|
|
36506
36509
|
stackQty: traderItem.stackQty || 1,
|
|
36507
|
-
texturePath: traderItem.texturePath
|
|
36510
|
+
texturePath: traderItem.texturePath,
|
|
36511
|
+
isStackable: traderItem.isStackable
|
|
36508
36512
|
}, atlasJSON),
|
|
36509
36513
|
imgScale: 2.5
|
|
36510
36514
|
})))), React__default.createElement(ItemNameContainer, null, React__default.createElement(NameValue, null, React__default.createElement("p", null, React__default.createElement(Ellipsis, {
|