@rpg-engine/long-bow 0.8.217 → 0.8.218

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.
@@ -28,7 +28,7 @@ export interface IStoreProps {
28
28
  fullScreen?: boolean;
29
29
  /** Override the DraggableContainer width (e.g. "90vw"). Defaults to "1000px". */
30
30
  containerWidth?: string;
31
- /** Override the DraggableContainer height (e.g. "80vh"). Defaults to "auto". */
31
+ /** Override the DraggableContainer height (e.g. "80vh"). Defaults to "80vh" so the inner scroll area is bounded. */
32
32
  containerHeight?: string;
33
33
  packsBadge?: string;
34
34
  featuredItems?: IFeaturedItem[];
@@ -40074,7 +40074,7 @@ var Store = function Store(_ref) {
40074
40074
  onCloseButton: onClose,
40075
40075
  width: containerWidth != null ? containerWidth : "1000px",
40076
40076
  minWidth: "700px",
40077
- height: containerHeight != null ? containerHeight : "auto",
40077
+ height: containerHeight != null ? containerHeight : "80vh",
40078
40078
  type: exports.RPGUIContainerTypes.Framed,
40079
40079
  cancelDrag: "[class*='Store__Container'], [class*='CartView'], [class*='StoreItemDetails'], .close-button",
40080
40080
  isFullScreen: fullScreen