@rpg-engine/long-bow 0.2.28 → 0.2.29

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.
@@ -7,5 +7,7 @@ export interface ISkillProgressBarProps {
7
7
  skillPointsToNextLevel?: number;
8
8
  texturePath: string;
9
9
  showSkillPoints?: boolean;
10
+ atlasJSON: any;
11
+ atlasIMG: any;
10
12
  }
11
13
  export declare const SkillProgressBar: React.FC<ISkillProgressBarProps>;
@@ -3,5 +3,7 @@ import React from 'react';
3
3
  export interface ISkillContainerProps {
4
4
  skill: ISkill;
5
5
  onCloseButton: () => void;
6
+ atlasJSON: any;
7
+ atlasIMG: any;
6
8
  }
7
9
  export declare const SkillsContainer: React.FC<ISkillContainerProps>;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { ITransactionItem, TradeTransactionType } from '@rpg-engine/shared';
3
+ export interface ITrandingMenu {
4
+ traderItems: ITransactionItem[];
5
+ onClose: () => void;
6
+ type: TradeTransactionType;
7
+ atlasJSON: any;
8
+ atlasIMG: any;
9
+ characterAvailableGold: number;
10
+ onChangeTraderItems: (traderItems: ITransactionItem[]) => void;
11
+ }
12
+ export declare const TrandingMenu: React.FC<ITrandingMenu>;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { ITransactionItem } from '@rpg-engine/shared';
3
+ export interface ITradeComponentProps {
4
+ traderItem: ITransactionItem;
5
+ updateChartTotals: (traderItem: ITransactionItem) => void;
6
+ atlasJSON: any;
7
+ atlasIMG: any;
8
+ }
9
+ export declare const ItemTradingComponent: React.FC<ITradeComponentProps>;
@@ -0,0 +1,2 @@
1
+ import { ITransactionItem } from '@rpg-engine/shared';
2
+ export declare const itemMock: ITransactionItem[];
package/dist/index.d.ts CHANGED
@@ -27,4 +27,5 @@ export * from './components/Truncate';
27
27
  export * from './components/typography/DynamicText';
28
28
  export * from './components/NPCDialog/NPCMultiDialog';
29
29
  export * from './components/HistoryDialog';
30
+ export * from './components/TradingMenu/TrandingMenu';
30
31
  export { useEventListener } from './hooks/useEventListener';