@rpg-engine/long-bow 0.2.39 → 0.2.41
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 +5 -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 +5 -3
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/RelativeListMenu.tsx +1 -1
- package/src/components/TradingMenu/TradingMenu.tsx +2 -2
- package/src/stories/ItemTradingComponent.stories.tsx +2 -2
package/dist/long-bow.esm.js
CHANGED
|
@@ -27871,7 +27871,7 @@ var RelativeListMenu = function RelativeListMenu(_ref) {
|
|
|
27871
27871
|
var Container$7 = /*#__PURE__*/styled.div.withConfig({
|
|
27872
27872
|
displayName: "RelativeListMenu__Container",
|
|
27873
27873
|
componentId: "sc-7hohf-0"
|
|
27874
|
-
})(["position:absolute;top:1rem;left:4rem;display:flex;flex-direction:column;width:
|
|
27874
|
+
})(["position:absolute;top:1rem;left:4rem;display:flex;flex-direction:column;width:max-content;justify-content:start;align-items:flex-start;li{font-size:", "em;}"], function (props) {
|
|
27875
27875
|
return props.fontSize;
|
|
27876
27876
|
});
|
|
27877
27877
|
var ListElement = /*#__PURE__*/styled.li.withConfig({
|
|
@@ -29465,8 +29465,10 @@ var TradingMenu = function TradingMenu(_ref) {
|
|
|
29465
29465
|
}
|
|
29466
29466
|
}, React.createElement(Title$3, null, Capitalize(type), " Menu"), React.createElement("hr", {
|
|
29467
29467
|
className: "golden"
|
|
29468
|
-
})), React.createElement(TradingComponentScrollWrapper, null, traderItems.map(function (tradeItem) {
|
|
29469
|
-
return React.createElement(ItemWrapper$1,
|
|
29468
|
+
})), React.createElement(TradingComponentScrollWrapper, null, traderItems.map(function (tradeItem, index) {
|
|
29469
|
+
return React.createElement(ItemWrapper$1, {
|
|
29470
|
+
key: tradeItem.key + "_" + index
|
|
29471
|
+
}, React.createElement(TradingItemRow, {
|
|
29470
29472
|
atlasIMG: atlasIMG,
|
|
29471
29473
|
atlasJSON: atlasJSON,
|
|
29472
29474
|
updateChartTotals: updateChartTotals,
|