@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.3.87",
3
+ "version": "0.3.88",
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.7.38",
86
+ "@rpg-engine/shared": "^0.7.40",
87
87
  "dayjs": "^1.11.2",
88
88
  "font-awesome": "^4.7.0",
89
89
  "fs-extra": "^10.1.0",
@@ -97,6 +97,7 @@ export const CircularController: React.FC<CircularControllerProps> = ({
97
97
  key: payload.texturePath,
98
98
  texturePath: payload.texturePath,
99
99
  stackQty: payload.stackQty || 1,
100
+ isStackable: payload.isStackable,
100
101
  },
101
102
  atlasJSON
102
103
  )}
@@ -95,6 +95,7 @@ export const Shortcuts: React.FC<ShortcutsProps> = ({
95
95
  key: payload.texturePath,
96
96
  texturePath: payload.texturePath,
97
97
  stackQty: payload.stackQty || 1,
98
+ isStackable: payload.isStackable,
98
99
  },
99
100
  atlasJSON
100
101
  )}
@@ -42,6 +42,7 @@ export const ShortcutsSetter: React.FC<ShortcutsSetterProps> = ({
42
42
  key: payload.texturePath,
43
43
  texturePath: payload.texturePath,
44
44
  stackQty: payload.stackQty || 1,
45
+ isStackable: payload.isStackable,
45
46
  },
46
47
  atlasJSON
47
48
  )}
@@ -66,6 +66,7 @@ export const TradingItemRow: React.FC<ITradeComponentProps> = ({
66
66
  key: traderItem.key,
67
67
  stackQty: traderItem.stackQty || 1,
68
68
  texturePath: traderItem.texturePath,
69
+ isStackable: traderItem.isStackable,
69
70
  },
70
71
  atlasJSON
71
72
  )}