@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.
- package/dist/components/Store/Store.d.ts +1 -0
- package/dist/long-bow.cjs.development.js +3 -2
- 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 +3 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Store/Store.tsx +3 -1
|
@@ -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
|
}),
|