@rpg-engine/long-bow 0.3.85 → 0.3.87
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 +4 -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 +4 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Item/Inventory/ItemSlot.tsx +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpg-engine/long-bow",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.87",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
85
|
"@rollup/plugin-image": "^2.1.1",
|
|
86
|
-
"@rpg-engine/shared": "^0.
|
|
86
|
+
"@rpg-engine/shared": "^0.7.38",
|
|
87
87
|
"dayjs": "^1.11.2",
|
|
88
88
|
"font-awesome": "^4.7.0",
|
|
89
89
|
"fs-extra": "^10.1.0",
|
|
@@ -179,6 +179,7 @@ export const ItemSlot: React.FC<IProps> = observer(
|
|
|
179
179
|
key: itemToRender.texturePath,
|
|
180
180
|
texturePath: itemToRender.texturePath,
|
|
181
181
|
stackQty: itemToRender.stackQty || 1,
|
|
182
|
+
isStackable: itemToRender.isStackable,
|
|
182
183
|
},
|
|
183
184
|
atlasJSON
|
|
184
185
|
)}
|
|
@@ -217,6 +218,7 @@ export const ItemSlot: React.FC<IProps> = observer(
|
|
|
217
218
|
key: itemToRender.texturePath,
|
|
218
219
|
texturePath: itemToRender.texturePath,
|
|
219
220
|
stackQty: itemToRender.stackQty || 1,
|
|
221
|
+
isStackable: itemToRender.isStackable,
|
|
220
222
|
},
|
|
221
223
|
atlasJSON
|
|
222
224
|
)}
|