@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
package/dist/long-bow.esm.js
CHANGED
|
@@ -20401,9 +20401,11 @@ var PropertySelect = function PropertySelect(_ref) {
|
|
|
20401
20401
|
return React.createElement(Container$1, null, React.createElement(TextOverlay, null, React.createElement(Item, null, getCurrentSelectionName())), React.createElement("div", {
|
|
20402
20402
|
className: "rpgui-progress-track"
|
|
20403
20403
|
}), React.createElement(LeftArrow, {
|
|
20404
|
-
onClick: onLeftClick
|
|
20404
|
+
onClick: onLeftClick,
|
|
20405
|
+
onTouchStart: onLeftClick
|
|
20405
20406
|
}), React.createElement(RightArrow, {
|
|
20406
|
-
onClick: onRightClick
|
|
20407
|
+
onClick: onRightClick,
|
|
20408
|
+
onTouchStart: onRightClick
|
|
20407
20409
|
}));
|
|
20408
20410
|
};
|
|
20409
20411
|
var Item = /*#__PURE__*/styled.span.withConfig({
|
|
@@ -27105,11 +27107,15 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
27105
27107
|
if (onClose) onClose();
|
|
27106
27108
|
},
|
|
27107
27109
|
width: "730px",
|
|
27108
|
-
cancelDrag: ".equipment-container-body"
|
|
27110
|
+
cancelDrag: ".equipment-container-body .arrow-selector"
|
|
27109
27111
|
}, quests.length >= 2 ? React.createElement(QuestsContainer, null, currentIndex !== 0 && React.createElement(LeftArrow$1, {
|
|
27110
|
-
|
|
27112
|
+
className: "arrow-selector",
|
|
27113
|
+
onClick: onLeftClick,
|
|
27114
|
+
onTouchStart: onLeftClick
|
|
27111
27115
|
}), currentIndex !== quests.length - 1 && React.createElement(RightArrow$1, {
|
|
27112
|
-
|
|
27116
|
+
className: "arrow-selector",
|
|
27117
|
+
onClick: onRightClick,
|
|
27118
|
+
onTouchStart: onRightClick
|
|
27113
27119
|
}), React.createElement(QuestContainer, null, React.createElement(TitleContainer$1, {
|
|
27114
27120
|
className: "drag-handler"
|
|
27115
27121
|
}, React.createElement(Title$1, null, React.createElement(Thumbnail, {
|
|
@@ -27153,7 +27159,7 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
27153
27159
|
var QuestDraggableContainer = /*#__PURE__*/styled(DraggableContainer).withConfig({
|
|
27154
27160
|
displayName: "QuestInfo__QuestDraggableContainer",
|
|
27155
27161
|
componentId: "sc-15s2boc-0"
|
|
27156
|
-
})(["border:1px solid black;width:600px;
|
|
27162
|
+
})(["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;}"]);
|
|
27157
27163
|
var QuestContainer = /*#__PURE__*/styled.div.withConfig({
|
|
27158
27164
|
displayName: "QuestInfo__QuestContainer",
|
|
27159
27165
|
componentId: "sc-15s2boc-1"
|