@rpg-engine/long-bow 0.2.9 → 0.2.11
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/long-bow.cjs.development.js +12 -6
- 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 +12 -6
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/PropertySelect/PropertySelect.tsx +5 -2
- package/src/components/QuestInfo/QuestInfo.tsx +14 -5
|
@@ -20407,9 +20407,11 @@ var PropertySelect = function PropertySelect(_ref) {
|
|
|
20407
20407
|
return React__default.createElement(Container$1, null, React__default.createElement(TextOverlay, null, React__default.createElement(Item, null, getCurrentSelectionName())), React__default.createElement("div", {
|
|
20408
20408
|
className: "rpgui-progress-track"
|
|
20409
20409
|
}), React__default.createElement(LeftArrow, {
|
|
20410
|
-
onClick: onLeftClick
|
|
20410
|
+
onClick: onLeftClick,
|
|
20411
|
+
onTouchStart: onLeftClick
|
|
20411
20412
|
}), React__default.createElement(RightArrow, {
|
|
20412
|
-
onClick: onRightClick
|
|
20413
|
+
onClick: onRightClick,
|
|
20414
|
+
onTouchStart: onRightClick
|
|
20413
20415
|
}));
|
|
20414
20416
|
};
|
|
20415
20417
|
var Item = /*#__PURE__*/styled.span.withConfig({
|
|
@@ -27107,11 +27109,15 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
27107
27109
|
if (onClose) onClose();
|
|
27108
27110
|
},
|
|
27109
27111
|
width: "730px",
|
|
27110
|
-
cancelDrag: ".equipment-container-body"
|
|
27112
|
+
cancelDrag: ".equipment-container-body .arrow-selector"
|
|
27111
27113
|
}, quests.length >= 2 ? React__default.createElement(QuestsContainer, null, currentIndex !== 0 && React__default.createElement(LeftArrow$1, {
|
|
27112
|
-
|
|
27114
|
+
className: "arrow-selector",
|
|
27115
|
+
onClick: onLeftClick,
|
|
27116
|
+
onTouchStart: onLeftClick
|
|
27113
27117
|
}), currentIndex !== quests.length - 1 && React__default.createElement(RightArrow$1, {
|
|
27114
|
-
|
|
27118
|
+
className: "arrow-selector",
|
|
27119
|
+
onClick: onRightClick,
|
|
27120
|
+
onTouchStart: onRightClick
|
|
27115
27121
|
}), React__default.createElement(QuestContainer, null, React__default.createElement(TitleContainer$1, {
|
|
27116
27122
|
className: "drag-handler"
|
|
27117
27123
|
}, React__default.createElement(Title$1, null, React__default.createElement(Thumbnail, {
|
|
@@ -27155,7 +27161,7 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
27155
27161
|
var QuestDraggableContainer = /*#__PURE__*/styled(DraggableContainer).withConfig({
|
|
27156
27162
|
displayName: "QuestInfo__QuestDraggableContainer",
|
|
27157
27163
|
componentId: "sc-15s2boc-0"
|
|
27158
|
-
})(["border:1px solid black;width:600px;
|
|
27164
|
+
})(["border:1px solid black;width:600px;padding:0 0 0 0 !important;.DraggableContainer__TitleContainer-sc-184mpyl-2{height:auto;}.container-close{position:absolute;margin-left:auto;top:20px;padding-right:5px;}img{display:inline-block;vertical-align:middle;line-height:normal;}"]);
|
|
27159
27165
|
var QuestContainer = /*#__PURE__*/styled.div.withConfig({
|
|
27160
27166
|
displayName: "QuestInfo__QuestContainer",
|
|
27161
27167
|
componentId: "sc-15s2boc-1"
|