@rpg-engine/long-bow 0.8.128 → 0.8.129

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.
@@ -16,6 +16,7 @@ export interface IStoreProps {
16
16
  tabOrder?: TabId[];
17
17
  defaultActiveTab?: TabId;
18
18
  textInputItemKeys?: string[];
19
+ customPacksContent?: React.ReactNode;
19
20
  }
20
21
  export declare const Store: React.FC<IStoreProps>;
21
22
  export {};
@@ -59069,7 +59069,8 @@ var Store = function Store(_ref) {
59069
59069
  tabOrder = _ref.tabOrder,
59070
59070
  defaultActiveTab = _ref.defaultActiveTab,
59071
59071
  _ref$textInputItemKey = _ref.textInputItemKeys,
59072
- textInputItemKeys = _ref$textInputItemKey === void 0 ? [] : _ref$textInputItemKey;
59072
+ textInputItemKeys = _ref$textInputItemKey === void 0 ? [] : _ref$textInputItemKey,
59073
+ customPacksContent = _ref.customPacksContent;
59073
59074
  var _useState = React.useState(null),
59074
59075
  selectedPack = _useState[0],
59075
59076
  setSelectedPack = _useState[1];
@@ -59194,7 +59195,7 @@ var Store = function Store(_ref) {
59194
59195
  packs: {
59195
59196
  id: 'packs',
59196
59197
  title: 'Packs',
59197
- content: React__default.createElement(StorePacksSection, {
59198
+ content: customPacksContent != null ? customPacksContent : React__default.createElement(StorePacksSection, {
59198
59199
  packs: packs.filter(function (pack) {
59199
59200
  return pack.priceUSD < 9.99;
59200
59201
  }),