@rpg-engine/long-bow 0.8.145 → 0.8.148

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.
@@ -11,6 +11,8 @@ export interface IBlueprintSearchModalProps {
11
11
  isLoading: boolean;
12
12
  atlasJSON: any;
13
13
  atlasIMG: any;
14
+ enableHotkeys?: () => void;
15
+ disableHotkeys?: () => void;
14
16
  }
15
17
  declare const BLUEPRINTS_PER_PAGE = 10;
16
18
  export declare const BlueprintSearchModal: React.FC<IBlueprintSearchModalProps>;
@@ -0,0 +1,9 @@
1
+ import { IMarketplaceBlueprintSummary } from '@rpg-engine/shared';
2
+ import React from 'react';
3
+ export interface IBlueprintTableProps {
4
+ blueprints: IMarketplaceBlueprintSummary[];
5
+ atlasJSON: any;
6
+ atlasIMG: any;
7
+ onSelect?: (blueprint: IMarketplaceBlueprintSummary) => void;
8
+ }
9
+ export declare const BlueprintTable: React.FC<IBlueprintTableProps>;
@@ -13,5 +13,7 @@ export interface IBuyOrderDetailsModalProps {
13
13
  onConfirm: () => void;
14
14
  atlasJSON: any;
15
15
  atlasIMG: any;
16
+ enableHotkeys?: () => void;
17
+ disableHotkeys?: () => void;
16
18
  }
17
19
  export declare const BuyOrderDetailsModal: React.FC<IBuyOrderDetailsModalProps>;
@@ -18,6 +18,8 @@ export interface IBuyOrderPanelProps {
18
18
  yourBuyOrdersPage: number;
19
19
  onYourBuyOrdersPageChange: (page: number) => void;
20
20
  onCancelBuyOrder: (buyOrderId: string) => void;
21
+ enableHotkeys?: () => void;
22
+ disableHotkeys?: () => void;
21
23
  }
22
24
  declare const BUY_ORDERS_PER_PAGE = 5;
23
25
  export declare const BuyOrderPanel: React.FC<IBuyOrderPanelProps>;