@rpg-engine/long-bow 0.6.20 → 0.6.21

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.
@@ -4,7 +4,6 @@ export interface IPartyManagerProps {
4
4
  partyRows: ICharacterPartyShared | null;
5
5
  isLeader: boolean;
6
6
  userId: string;
7
- onClose?: () => void;
8
7
  onRemovePlayer: (id: string) => void;
9
8
  onChangeLeader: (id: string) => void;
10
9
  }
@@ -31411,17 +31411,10 @@ var PartyManager = function PartyManager(_ref) {
31411
31411
  var partyRows = _ref.partyRows,
31412
31412
  isLeader = _ref.isLeader,
31413
31413
  userId = _ref.userId,
31414
- onClose = _ref.onClose,
31415
31414
  _onRemovePlayer = _ref.onRemovePlayer,
31416
31415
  _onChangeLeader = _ref.onChangeLeader;
31417
31416
  var invitationActionText = shared.isMobileOrTablet() ? 'Tap' : 'Right click';
31418
- return React__default.createElement(DraggableContainer, {
31419
- type: exports.RPGUIContainerTypes.Framed,
31420
- onCloseButton: onClose,
31421
- width: "800px",
31422
- height: "400px",
31423
- cancelDrag: ".partyRows"
31424
- }, React__default.createElement(Wrapper$5, null, React__default.createElement("div", {
31417
+ return React__default.createElement(React__default.Fragment, null, React__default.createElement(Wrapper$5, null, React__default.createElement("div", {
31425
31418
  style: {
31426
31419
  width: '100%'
31427
31420
  }