@rpg-engine/long-bow 0.8.213 → 0.8.214
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 +4 -0
- package/dist/long-bow.cjs.development.js +4 -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 +4 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Store/Store.tsx +8 -2
package/dist/long-bow.esm.js
CHANGED
|
@@ -39708,6 +39708,8 @@ var Store = function Store(_ref) {
|
|
|
39708
39708
|
customHistoryContent = _ref.customHistoryContent,
|
|
39709
39709
|
_ref$fullScreen = _ref.fullScreen,
|
|
39710
39710
|
fullScreen = _ref$fullScreen === void 0 ? false : _ref$fullScreen,
|
|
39711
|
+
containerWidth = _ref.containerWidth,
|
|
39712
|
+
containerHeight = _ref.containerHeight,
|
|
39711
39713
|
_ref$packsTabLabel = _ref.packsTabLabel,
|
|
39712
39714
|
packsTabLabel = _ref$packsTabLabel === void 0 ? 'Packs' : _ref$packsTabLabel,
|
|
39713
39715
|
packsBadge = _ref.packsBadge,
|
|
@@ -40045,9 +40047,9 @@ var Store = function Store(_ref) {
|
|
|
40045
40047
|
return React.createElement(DraggableContainer, {
|
|
40046
40048
|
title: "Store",
|
|
40047
40049
|
onCloseButton: onClose,
|
|
40048
|
-
width: "1000px",
|
|
40050
|
+
width: containerWidth != null ? containerWidth : "1000px",
|
|
40049
40051
|
minWidth: "700px",
|
|
40050
|
-
height: "auto",
|
|
40052
|
+
height: containerHeight != null ? containerHeight : "auto",
|
|
40051
40053
|
type: RPGUIContainerTypes.Framed,
|
|
40052
40054
|
cancelDrag: "[class*='Store__Container'], [class*='CartView'], [class*='StoreItemDetails'], .close-button",
|
|
40053
40055
|
isFullScreen: fullScreen
|