@rpg-engine/long-bow 0.2.38 → 0.2.39
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/components/TradingMenu/TradingMenu.d.ts +0 -1
- package/dist/long-bow.cjs.development.js +1 -7
- 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 +1 -7
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/TradingMenu/TradingMenu.tsx +2 -8
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ITradeResponseItem, TradeTransactionType } from '@rpg-engine/shared';
|
|
2
|
-
import React, {
|
|
2
|
+
import React, { useState } from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
4
|
import { Button, ButtonTypes } from '../Button';
|
|
5
5
|
import { DraggableContainer } from '../DraggableContainer';
|
|
@@ -13,7 +13,6 @@ export interface ITrandingMenu {
|
|
|
13
13
|
atlasJSON: any;
|
|
14
14
|
atlasIMG: any;
|
|
15
15
|
characterAvailableGold: number;
|
|
16
|
-
onChangeTraderItems: (traderItems: ITradeResponseItem[]) => void;
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
export const TradingMenu: React.FC<ITrandingMenu> = ({
|
|
@@ -23,7 +22,6 @@ export const TradingMenu: React.FC<ITrandingMenu> = ({
|
|
|
23
22
|
atlasJSON,
|
|
24
23
|
atlasIMG,
|
|
25
24
|
characterAvailableGold,
|
|
26
|
-
onChangeTraderItems,
|
|
27
25
|
onConfirm,
|
|
28
26
|
}) => {
|
|
29
27
|
const [sum, setSum] = useState(0);
|
|
@@ -40,11 +38,6 @@ export const TradingMenu: React.FC<ITrandingMenu> = ({
|
|
|
40
38
|
});
|
|
41
39
|
};
|
|
42
40
|
|
|
43
|
-
useEffect(() => {
|
|
44
|
-
if (onChangeTraderItems) {
|
|
45
|
-
onChangeTraderItems(traderItems);
|
|
46
|
-
}
|
|
47
|
-
}, [traderItems]);
|
|
48
41
|
const Capitalize = (word: string) => {
|
|
49
42
|
return word[0].toUpperCase() + word.substring(1);
|
|
50
43
|
};
|
|
@@ -158,6 +151,7 @@ const GoldWrapper = styled.div`
|
|
|
158
151
|
`;
|
|
159
152
|
|
|
160
153
|
const AlertWrapper = styled.div`
|
|
154
|
+
margin-top: 1rem;
|
|
161
155
|
display: flex;
|
|
162
156
|
width: 100%;
|
|
163
157
|
justify-content: center;
|