@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
package/dist/long-bow.esm.js
CHANGED
|
@@ -59066,7 +59066,8 @@ var Store = function Store(_ref) {
|
|
|
59066
59066
|
tabOrder = _ref.tabOrder,
|
|
59067
59067
|
defaultActiveTab = _ref.defaultActiveTab,
|
|
59068
59068
|
_ref$textInputItemKey = _ref.textInputItemKeys,
|
|
59069
|
-
textInputItemKeys = _ref$textInputItemKey === void 0 ? [] : _ref$textInputItemKey
|
|
59069
|
+
textInputItemKeys = _ref$textInputItemKey === void 0 ? [] : _ref$textInputItemKey,
|
|
59070
|
+
customPacksContent = _ref.customPacksContent;
|
|
59070
59071
|
var _useState = useState(null),
|
|
59071
59072
|
selectedPack = _useState[0],
|
|
59072
59073
|
setSelectedPack = _useState[1];
|
|
@@ -59191,7 +59192,7 @@ var Store = function Store(_ref) {
|
|
|
59191
59192
|
packs: {
|
|
59192
59193
|
id: 'packs',
|
|
59193
59194
|
title: 'Packs',
|
|
59194
|
-
content: React.createElement(StorePacksSection, {
|
|
59195
|
+
content: customPacksContent != null ? customPacksContent : React.createElement(StorePacksSection, {
|
|
59195
59196
|
packs: packs.filter(function (pack) {
|
|
59196
59197
|
return pack.priceUSD < 9.99;
|
|
59197
59198
|
}),
|