@rpg-engine/long-bow 0.6.65 → 0.6.68
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/Friends/FriendList.d.ts +2 -2
- package/dist/components/Table/Table.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/long-bow.cjs.development.js +87 -85
- 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 +83 -86
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Friends/FriendList.tsx +86 -94
- package/src/components/PartySystem/PartyManager/PartyManager.tsx +0 -17
- package/src/components/Table/Table.tsx +33 -0
- package/src/index.tsx +2 -0
package/dist/long-bow.esm.js
CHANGED
|
@@ -28781,6 +28781,27 @@ var EquipmentColumn = /*#__PURE__*/styled.div.withConfig({
|
|
|
28781
28781
|
componentId: "sc-1wuddg2-1"
|
|
28782
28782
|
})(["display:flex;justify-content:center;flex-wrap:wrap;flex-direction:column;touch-action:none;"]);
|
|
28783
28783
|
|
|
28784
|
+
var Table = /*#__PURE__*/styled.table.withConfig({
|
|
28785
|
+
displayName: "Table",
|
|
28786
|
+
componentId: "sc-1c24pcj-0"
|
|
28787
|
+
})(["width:100%;border-collapse:collapse;margin-top:1rem;"]);
|
|
28788
|
+
var TableRow = /*#__PURE__*/styled.tr.withConfig({
|
|
28789
|
+
displayName: "Table__TableRow",
|
|
28790
|
+
componentId: "sc-1c24pcj-1"
|
|
28791
|
+
})(["&:nth-child(even){background-color:rgba(255,255,255,0.05) !important;}"]);
|
|
28792
|
+
var TableHeader = /*#__PURE__*/styled.th.withConfig({
|
|
28793
|
+
displayName: "Table__TableHeader",
|
|
28794
|
+
componentId: "sc-1c24pcj-2"
|
|
28795
|
+
})(["text-align:left;padding:0.5rem;color:", " !important;border-bottom:1px solid ", ";"], uiColors.yellow, uiColors.lightGray);
|
|
28796
|
+
var TableCell = /*#__PURE__*/styled.td.withConfig({
|
|
28797
|
+
displayName: "Table__TableCell",
|
|
28798
|
+
componentId: "sc-1c24pcj-3"
|
|
28799
|
+
})(["padding:0.5rem;color:", ";border-bottom:1px solid ", ";"], uiColors.white, uiColors.lightGray);
|
|
28800
|
+
var ActionButtons = /*#__PURE__*/styled.div.withConfig({
|
|
28801
|
+
displayName: "Table__ActionButtons",
|
|
28802
|
+
componentId: "sc-1c24pcj-4"
|
|
28803
|
+
})(["display:flex;gap:10px;align-items:center;"]);
|
|
28804
|
+
|
|
28784
28805
|
var SearchFriend = function SearchFriend(props) {
|
|
28785
28806
|
var searchedCharacters = props.searchedCharacters,
|
|
28786
28807
|
friendRequests = props.friendRequests,
|
|
@@ -28871,32 +28892,22 @@ var AcceptRejectButtonContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
28871
28892
|
componentId: "sc-1lt1ols-5"
|
|
28872
28893
|
})(["display:flex;justify-content:space-between;gap:0.5rem;"]);
|
|
28873
28894
|
|
|
28874
|
-
var FriendList = function FriendList(
|
|
28895
|
+
var FriendList = function FriendList(_ref) {
|
|
28896
|
+
var friends = _ref.friends,
|
|
28897
|
+
friendRequests = _ref.friendRequests,
|
|
28898
|
+
searchedCharacters = _ref.searchedCharacters,
|
|
28899
|
+
onFocus = _ref.onFocus,
|
|
28900
|
+
onBlur = _ref.onBlur,
|
|
28901
|
+
onSearch = _ref.onSearch,
|
|
28902
|
+
onAcceptRequest = _ref.onAcceptRequest,
|
|
28903
|
+
onSendFriendRequest = _ref.onSendFriendRequest,
|
|
28904
|
+
onRemoveFriend = _ref.onRemoveFriend,
|
|
28905
|
+
onOpenPrivateMessage = _ref.onOpenPrivateMessage,
|
|
28906
|
+
onRejectRequest = _ref.onRejectRequest;
|
|
28875
28907
|
var _useState = useState(false),
|
|
28876
28908
|
isAddFriendUI = _useState[0],
|
|
28877
28909
|
setIsAddFriendUI = _useState[1];
|
|
28878
|
-
|
|
28879
|
-
friends = props.friends,
|
|
28880
|
-
friendRequests = props.friendRequests,
|
|
28881
|
-
searchedCharacters = props.searchedCharacters,
|
|
28882
|
-
onBlur = props.onBlur,
|
|
28883
|
-
onFocus = props.onFocus,
|
|
28884
|
-
onClose = props.onClose,
|
|
28885
|
-
onSearch = props.onSearch,
|
|
28886
|
-
onAcceptRequest = props.onAcceptRequest,
|
|
28887
|
-
onSendFriendRequest = props.onSendFriendRequest,
|
|
28888
|
-
onRemoveFriend = props.onRemoveFriend,
|
|
28889
|
-
onOpenPrivateMessage = props.onOpenPrivateMessage,
|
|
28890
|
-
onRejectRequest = props.onRejectRequest;
|
|
28891
|
-
return React.createElement(DraggableContainer, {
|
|
28892
|
-
type: RPGUIContainerTypes.Framed,
|
|
28893
|
-
onCloseButton: function onCloseButton() {
|
|
28894
|
-
if (onClose) onClose();
|
|
28895
|
-
},
|
|
28896
|
-
width: "800px",
|
|
28897
|
-
cancelDrag: "#FriendListContainer, .rpgui-dropdown-imp, input, .empty-slot, button",
|
|
28898
|
-
scale: scale
|
|
28899
|
-
}, isAddFriendUI ? React.createElement(SearchFriend, {
|
|
28910
|
+
return React.createElement(ListWrapper, null, isAddFriendUI ? React.createElement(SearchFriend, {
|
|
28900
28911
|
searchedCharacters: searchedCharacters,
|
|
28901
28912
|
onSendFriendRequest: onSendFriendRequest,
|
|
28902
28913
|
onAcceptRequest: onAcceptRequest,
|
|
@@ -28905,58 +28916,58 @@ var FriendList = function FriendList(props) {
|
|
|
28905
28916
|
onSearch: onSearch,
|
|
28906
28917
|
onBlur: onBlur,
|
|
28907
28918
|
onFocus: onFocus
|
|
28908
|
-
}) : React.createElement(
|
|
28909
|
-
return React.createElement(
|
|
28919
|
+
}) : React.createElement(React.Fragment, null, React.createElement(ScrollableArea, null, React.createElement(Table, null, React.createElement("thead", null, React.createElement(TableRow, null, React.createElement(TableHeader, null, "Online"), React.createElement(TableHeader, null, "Name"), React.createElement(TableHeader, null, "Actions"))), React.createElement("tbody", null, friends.map(function (friend) {
|
|
28920
|
+
return React.createElement(TableRow, {
|
|
28910
28921
|
key: friend._id
|
|
28911
|
-
}, React.createElement(
|
|
28922
|
+
}, React.createElement(TableCell, null, React.createElement(IsOnlineBadge, {
|
|
28912
28923
|
"$isOnline": friend.isOnline
|
|
28913
|
-
}), friend.name), React.createElement(
|
|
28914
|
-
|
|
28915
|
-
|
|
28924
|
+
})), React.createElement(TableCell, null, friend.name), React.createElement(TableCell, null, React.createElement(ActionButtons, null, React.createElement(UserAction, {
|
|
28925
|
+
color: uiColors.yellow,
|
|
28926
|
+
onClick: function onClick() {
|
|
28916
28927
|
return onOpenPrivateMessage(friend);
|
|
28917
28928
|
}
|
|
28918
|
-
}, "
|
|
28919
|
-
|
|
28920
|
-
|
|
28929
|
+
}, "Chat"), React.createElement(UserAction, {
|
|
28930
|
+
color: uiColors.red,
|
|
28931
|
+
onClick: function onClick() {
|
|
28921
28932
|
return onRemoveFriend(friend);
|
|
28922
28933
|
}
|
|
28923
|
-
}, "Remove")));
|
|
28924
|
-
})), React.createElement(ButtonContainer$1, null, React.createElement(Button, {
|
|
28934
|
+
}, "Remove"))));
|
|
28935
|
+
}))))), React.createElement(ButtonContainer$1, null, React.createElement(Button, {
|
|
28925
28936
|
buttonType: ButtonTypes.RPGUIButton,
|
|
28926
28937
|
onClick: function onClick() {
|
|
28927
|
-
return setIsAddFriendUI(function (
|
|
28928
|
-
return !
|
|
28938
|
+
return setIsAddFriendUI(function (prev) {
|
|
28939
|
+
return !prev;
|
|
28929
28940
|
});
|
|
28930
28941
|
}
|
|
28931
28942
|
}, isAddFriendUI ? 'Back' : 'Add New Friend')));
|
|
28932
28943
|
};
|
|
28933
|
-
|
|
28934
|
-
|
|
28944
|
+
// Styled components for FriendList UI
|
|
28945
|
+
var ListWrapper = /*#__PURE__*/styled.div.withConfig({
|
|
28946
|
+
displayName: "FriendList__ListWrapper",
|
|
28935
28947
|
componentId: "sc-3jf9vt-0"
|
|
28936
|
-
})(["
|
|
28937
|
-
var
|
|
28938
|
-
displayName: "
|
|
28948
|
+
})(["margin-top:1rem;max-height:350px;display:flex;flex-direction:column;"]);
|
|
28949
|
+
var ScrollableArea = /*#__PURE__*/styled.div.withConfig({
|
|
28950
|
+
displayName: "FriendList__ScrollableArea",
|
|
28939
28951
|
componentId: "sc-3jf9vt-1"
|
|
28940
|
-
})(["
|
|
28941
|
-
var ListElement$4 = /*#__PURE__*/styled.li.withConfig({
|
|
28942
|
-
displayName: "FriendList__ListElement",
|
|
28943
|
-
componentId: "sc-3jf9vt-2"
|
|
28944
|
-
})(["margin:0.5rem 0 !important;font-size:", ";padding:0.5rem 4px;display:flex;align-items:center;justify-content:space-between;border-radius:4px;& div{display:flex;align-items:center;}"], uiFonts.size.small);
|
|
28952
|
+
})(["overflow-y:auto;max-height:300px;"]);
|
|
28945
28953
|
var IsOnlineBadge = /*#__PURE__*/styled.div.withConfig({
|
|
28946
28954
|
displayName: "FriendList__IsOnlineBadge",
|
|
28947
|
-
componentId: "sc-3jf9vt-
|
|
28948
|
-
})(["width:10px;height:10px;border-radius:50%;background-color:", ";margin-right:1rem;"], function (
|
|
28949
|
-
var $isOnline =
|
|
28955
|
+
componentId: "sc-3jf9vt-2"
|
|
28956
|
+
})(["width:10px;height:10px;border-radius:50%;background-color:", ";margin-right:1rem;"], function (_ref2) {
|
|
28957
|
+
var $isOnline = _ref2.$isOnline;
|
|
28950
28958
|
return $isOnline ? uiColors.lightGreen : uiColors.red;
|
|
28951
28959
|
});
|
|
28952
28960
|
var ButtonContainer$1 = /*#__PURE__*/styled.div.withConfig({
|
|
28953
28961
|
displayName: "FriendList__ButtonContainer",
|
|
28954
|
-
componentId: "sc-3jf9vt-
|
|
28962
|
+
componentId: "sc-3jf9vt-3"
|
|
28955
28963
|
})(["display:flex;justify-content:center;align-items:center;width:100%;margin-top:1rem;"]);
|
|
28956
|
-
var
|
|
28957
|
-
displayName: "
|
|
28958
|
-
componentId: "sc-3jf9vt-
|
|
28959
|
-
})(["
|
|
28964
|
+
var UserAction = /*#__PURE__*/styled.span.withConfig({
|
|
28965
|
+
displayName: "FriendList__UserAction",
|
|
28966
|
+
componentId: "sc-3jf9vt-4"
|
|
28967
|
+
})(["color:", " !important;cursor:pointer;margin-right:0.5rem;&:hover{text-decoration:underline;}"], function (_ref3) {
|
|
28968
|
+
var color = _ref3.color;
|
|
28969
|
+
return color;
|
|
28970
|
+
});
|
|
28960
28971
|
|
|
28961
28972
|
var IS_MOBILE_OR_TABLET = /*#__PURE__*/isMobileOrTablet();
|
|
28962
28973
|
|
|
@@ -30472,7 +30483,7 @@ var ListMenu = function ListMenu(_ref) {
|
|
|
30472
30483
|
overflow: 'hidden'
|
|
30473
30484
|
}
|
|
30474
30485
|
}, options.map(function (params, index) {
|
|
30475
|
-
return React.createElement(ListElement$
|
|
30486
|
+
return React.createElement(ListElement$4, {
|
|
30476
30487
|
key: (params == null ? void 0 : params.id) || index,
|
|
30477
30488
|
onPointerDown: function onPointerDown() {
|
|
30478
30489
|
onSelected(params == null ? void 0 : params.id);
|
|
@@ -30488,7 +30499,7 @@ var Container$l = /*#__PURE__*/styled.div.withConfig({
|
|
|
30488
30499
|
}, function (props) {
|
|
30489
30500
|
return props.x || 0;
|
|
30490
30501
|
}, uiFonts.size.xsmall);
|
|
30491
|
-
var ListElement$
|
|
30502
|
+
var ListElement$4 = /*#__PURE__*/styled.li.withConfig({
|
|
30492
30503
|
displayName: "ListMenu__ListElement",
|
|
30493
30504
|
componentId: "sc-i9097t-1"
|
|
30494
30505
|
})(["margin-right:0.5rem;"]);
|
|
@@ -31405,13 +31416,7 @@ var PartyManager = function PartyManager(_ref) {
|
|
|
31405
31416
|
var sortedMembers = partyRows != null && partyRows.leader && partyRows != null && partyRows.members ? [partyRows.leader].concat(partyRows.members).sort(function (a, b) {
|
|
31406
31417
|
return a._id === partyRows.leader._id ? -1 : b._id === partyRows.leader._id ? 1 : 0;
|
|
31407
31418
|
}) : [];
|
|
31408
|
-
return React.createElement(React.Fragment, null, React.createElement(
|
|
31409
|
-
style: {
|
|
31410
|
-
width: '100%'
|
|
31411
|
-
}
|
|
31412
|
-
}, React.createElement(Title$7, null, "Party Dashboard"), React.createElement("hr", {
|
|
31413
|
-
className: "golden"
|
|
31414
|
-
}))), React.createElement(RowsWrapper$2, {
|
|
31419
|
+
return React.createElement(React.Fragment, null, React.createElement(RowsWrapper$2, {
|
|
31415
31420
|
className: "partyRows"
|
|
31416
31421
|
}, partyRows && sortedMembers.length ? sortedMembers.map(function (partyRow) {
|
|
31417
31422
|
return React.createElement(PartyManagerRow, {
|
|
@@ -31439,17 +31444,9 @@ var YellowText = /*#__PURE__*/styled.span.withConfig({
|
|
|
31439
31444
|
displayName: "PartyManager__YellowText",
|
|
31440
31445
|
componentId: "sc-1yqcad8-1"
|
|
31441
31446
|
})(["color:", " !important;"], uiColors.yellow);
|
|
31442
|
-
var Wrapper$5 = /*#__PURE__*/styled.div.withConfig({
|
|
31443
|
-
displayName: "PartyManager__Wrapper",
|
|
31444
|
-
componentId: "sc-1yqcad8-2"
|
|
31445
|
-
})(["display:flex;flex-direction:column;width:100%;"]);
|
|
31446
|
-
var Title$7 = /*#__PURE__*/styled.h1.withConfig({
|
|
31447
|
-
displayName: "PartyManager__Title",
|
|
31448
|
-
componentId: "sc-1yqcad8-3"
|
|
31449
|
-
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
31450
31447
|
var NotInParty = /*#__PURE__*/styled.h1.withConfig({
|
|
31451
31448
|
displayName: "PartyManager__NotInParty",
|
|
31452
|
-
componentId: "sc-1yqcad8-
|
|
31449
|
+
componentId: "sc-1yqcad8-2"
|
|
31453
31450
|
})(["font-size:0.6rem;margin:auto;"]);
|
|
31454
31451
|
|
|
31455
31452
|
var mockedPartyRows = [{
|
|
@@ -31788,7 +31785,7 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
31788
31785
|
onPointerDown: onRightClick
|
|
31789
31786
|
}), React.createElement(QuestContainer, null, React.createElement(TitleContainer$1, {
|
|
31790
31787
|
className: "drag-handler"
|
|
31791
|
-
}, React.createElement(Title$
|
|
31788
|
+
}, React.createElement(Title$7, null, React.createElement(Thumbnail, {
|
|
31792
31789
|
src: quests[currentIndex].thumbnail || img$8
|
|
31793
31790
|
}), quests[currentIndex].title), React.createElement(QuestSplitDiv, null, React.createElement("hr", {
|
|
31794
31791
|
className: "golden"
|
|
@@ -31807,7 +31804,7 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
31807
31804
|
}, button.title);
|
|
31808
31805
|
})))) : React.createElement(QuestsContainer, null, React.createElement(QuestContainer, null, React.createElement(TitleContainer$1, {
|
|
31809
31806
|
className: "drag-handler"
|
|
31810
|
-
}, React.createElement(Title$
|
|
31807
|
+
}, React.createElement(Title$7, null, React.createElement(Thumbnail, {
|
|
31811
31808
|
src: quests[0].thumbnail || img$8
|
|
31812
31809
|
}), quests[0].title), React.createElement(QuestSplitDiv, null, React.createElement("hr", {
|
|
31813
31810
|
className: "golden"
|
|
@@ -31854,7 +31851,7 @@ var TitleContainer$1 = /*#__PURE__*/styled.div.withConfig({
|
|
|
31854
31851
|
displayName: "QuestInfo__TitleContainer",
|
|
31855
31852
|
componentId: "sc-15s2boc-6"
|
|
31856
31853
|
})(["width:100%;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;margin-top:1rem;"]);
|
|
31857
|
-
var Title$
|
|
31854
|
+
var Title$7 = /*#__PURE__*/styled.h1.withConfig({
|
|
31858
31855
|
displayName: "QuestInfo__Title",
|
|
31859
31856
|
componentId: "sc-15s2boc-7"
|
|
31860
31857
|
})(["color:white;z-index:22;font-size:", " !important;color:", " !important;"], uiFonts.size.medium, uiColors.yellow);
|
|
@@ -31878,7 +31875,7 @@ var QuestList = function QuestList(_ref) {
|
|
|
31878
31875
|
style: {
|
|
31879
31876
|
width: '100%'
|
|
31880
31877
|
}
|
|
31881
|
-
}, React.createElement(Title$
|
|
31878
|
+
}, React.createElement(Title$8, null, "Quests"), React.createElement("hr", {
|
|
31882
31879
|
className: "golden"
|
|
31883
31880
|
}), React.createElement(QuestListContainer, null, quests ? quests.map(function (quest, i) {
|
|
31884
31881
|
return React.createElement("div", {
|
|
@@ -31899,7 +31896,7 @@ var QuestDraggableContainer$1 = /*#__PURE__*/styled(DraggableContainer).withConf
|
|
|
31899
31896
|
displayName: "QuestList__QuestDraggableContainer",
|
|
31900
31897
|
componentId: "sc-1a2vx6q-0"
|
|
31901
31898
|
})([".container-close{top:10px;right:10px;}.quest-title{text-align:left;margin-left:44px;margin-top:20px;color:yellow;}.quest-desc{margin-top:12px;margin-left:44px;}.rpgui-progress{min-width:80%;margin:0 auto;}"]);
|
|
31902
|
-
var Title$
|
|
31899
|
+
var Title$8 = /*#__PURE__*/styled.h1.withConfig({
|
|
31903
31900
|
displayName: "QuestList__Title",
|
|
31904
31901
|
componentId: "sc-1a2vx6q-1"
|
|
31905
31902
|
})(["z-index:22;font-size:", " !important;color:yellow !important;"], uiFonts.size.medium);
|
|
@@ -32393,7 +32390,7 @@ var SpellInfo = function SpellInfo(_ref) {
|
|
|
32393
32390
|
castingType = spell.castingType,
|
|
32394
32391
|
cooldown = spell.cooldown,
|
|
32395
32392
|
maxDistanceGrid = spell.maxDistanceGrid;
|
|
32396
|
-
return React.createElement(Container$s, null, React.createElement(Header$1, null, React.createElement("div", null, React.createElement(Title$
|
|
32393
|
+
return React.createElement(Container$s, null, React.createElement(Header$1, null, React.createElement("div", null, React.createElement(Title$9, null, name), React.createElement(Type$1, null, magicWords))), React.createElement(Statistic$1, null, React.createElement("div", {
|
|
32397
32394
|
className: "label"
|
|
32398
32395
|
}, "Casting Type:"), React.createElement("div", {
|
|
32399
32396
|
className: "value"
|
|
@@ -32423,7 +32420,7 @@ var Container$s = /*#__PURE__*/styled.div.withConfig({
|
|
|
32423
32420
|
displayName: "SpellInfo__Container",
|
|
32424
32421
|
componentId: "sc-4hbw3q-0"
|
|
32425
32422
|
})(["color:white;background-color:#222;border-radius:5px;padding:0.5rem;font-size:", ";border:3px solid ", ";height:max-content;width:30rem;@media (max-width:580px){width:80vw;}"], uiFonts.size.small, uiColors.lightGray);
|
|
32426
|
-
var Title$
|
|
32423
|
+
var Title$9 = /*#__PURE__*/styled.div.withConfig({
|
|
32427
32424
|
displayName: "SpellInfo__Title",
|
|
32428
32425
|
componentId: "sc-4hbw3q-1"
|
|
32429
32426
|
})(["font-size:", ";font-weight:bold;margin-bottom:0.5rem;display:flex;align-items:center;margin:0;"], uiFonts.size.medium);
|
|
@@ -32618,7 +32615,7 @@ var Spell = function Spell(_ref) {
|
|
|
32618
32615
|
imgScale: IMAGE_SCALE,
|
|
32619
32616
|
containerStyle: CONTAINER_STYLE,
|
|
32620
32617
|
centered: true
|
|
32621
|
-
})), React.createElement(Info, null, React.createElement(Title$
|
|
32618
|
+
})), React.createElement(Info, null, React.createElement(Title$a, null, React.createElement("span", null, name), React.createElement("span", {
|
|
32622
32619
|
className: "spell"
|
|
32623
32620
|
}, "(", magicWords, ")")), React.createElement(Description$3, null, description)), React.createElement(Divider, null), React.createElement(Cost, null, React.createElement("span", null, "Mana cost:"), React.createElement("span", {
|
|
32624
32621
|
className: "mana"
|
|
@@ -32639,7 +32636,7 @@ var Info = /*#__PURE__*/styled.span.withConfig({
|
|
|
32639
32636
|
displayName: "Spell__Info",
|
|
32640
32637
|
componentId: "sc-j96fa2-2"
|
|
32641
32638
|
})(["width:0;flex:1;@media (orientation:portrait){display:none;}"]);
|
|
32642
|
-
var Title$
|
|
32639
|
+
var Title$a = /*#__PURE__*/styled.p.withConfig({
|
|
32643
32640
|
displayName: "Spell__Title",
|
|
32644
32641
|
componentId: "sc-j96fa2-3"
|
|
32645
32642
|
})(["display:flex;flex-wrap:wrap;align-items:center;margin-bottom:5px;margin:0;span{font-size:", " !important;font-weight:bold !important;color:", " !important;margin-right:0.5rem;}.spell{font-size:", " !important;font-weight:normal !important;color:", " !important;}"], uiFonts.size.medium, uiColors.yellow, uiFonts.size.small, uiColors.lightGray);
|
|
@@ -32703,7 +32700,7 @@ var Spellbook = function Spellbook(_ref) {
|
|
|
32703
32700
|
height: "inherit",
|
|
32704
32701
|
cancelDrag: "#spellbook-search, #shortcuts_list, .spell",
|
|
32705
32702
|
scale: scale
|
|
32706
|
-
}, React.createElement(Container$w, null, React.createElement(Title$
|
|
32703
|
+
}, React.createElement(Container$w, null, React.createElement(Title$b, null, "Learned Spells"), React.createElement(ShortcutsSetter, {
|
|
32707
32704
|
setSettingShortcutIndex: setSettingShortcutIndex,
|
|
32708
32705
|
settingShortcutIndex: settingShortcutIndex,
|
|
32709
32706
|
shortcuts: shortcuts,
|
|
@@ -32735,7 +32732,7 @@ var Spellbook = function Spellbook(_ref) {
|
|
|
32735
32732
|
}, spell)));
|
|
32736
32733
|
}))));
|
|
32737
32734
|
};
|
|
32738
|
-
var Title$
|
|
32735
|
+
var Title$b = /*#__PURE__*/styled.h1.withConfig({
|
|
32739
32736
|
displayName: "Spellbook__Title",
|
|
32740
32737
|
componentId: "sc-r02nfq-0"
|
|
32741
32738
|
})(["font-size:", " !important;margin-bottom:0 !important;"], uiFonts.size.large);
|
|
@@ -33225,7 +33222,7 @@ var TradingMenu = function TradingMenu(_ref) {
|
|
|
33225
33222
|
style: {
|
|
33226
33223
|
width: '100%'
|
|
33227
33224
|
}
|
|
33228
|
-
}, React.createElement(Title$
|
|
33225
|
+
}, React.createElement(Title$c, null, Capitalize(type), " Menu"), React.createElement("hr", {
|
|
33229
33226
|
className: "golden"
|
|
33230
33227
|
})), React.createElement(TradingComponentScrollWrapper, {
|
|
33231
33228
|
id: "TraderContainer"
|
|
@@ -33256,7 +33253,7 @@ var TradingMenu = function TradingMenu(_ref) {
|
|
|
33256
33253
|
}
|
|
33257
33254
|
}, "Cancel"))));
|
|
33258
33255
|
};
|
|
33259
|
-
var Title$
|
|
33256
|
+
var Title$c = /*#__PURE__*/styled.h1.withConfig({
|
|
33260
33257
|
displayName: "TradingMenu__Title",
|
|
33261
33258
|
componentId: "sc-1wjsz1l-0"
|
|
33262
33259
|
})(["z-index:22;font-size:0.6rem;color:yellow !important;"]);
|
|
@@ -33440,5 +33437,5 @@ var LessonContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
33440
33437
|
componentId: "sc-7tgzv2-6"
|
|
33441
33438
|
})(["display:flex;flex-direction:column;justify-content:space-between;min-height:200px;p{font-size:0.7rem !important;}"]);
|
|
33442
33439
|
|
|
33443
|
-
export { AsyncDropdown, Button, ButtonTypes, CharacterSelection, Chat, ChatDeprecated, ChatRevamp, CheckButton, CheckItem, CircularController, CraftBook, DraggableContainer, Dropdown, DropdownSelectorContainer, DynamicText, EquipmentSet, EquipmentSlotSpriteByType, ErrorBoundary, FriendList, HistoryDialog, ImageCarousel, ImgSide, Input, InputRadio$1 as InputRadio, ItemContainer$1 as ItemContainer, ItemSelector, ItemSlot, Leaderboard, ListMenu, Marketplace, MarketplaceRows, MultitabType, NPCDialog, NPCDialogType, NPCMultiDialog, PartyCreate, PartyDashboard, PartyInvite, PartyManager, PartyManagerRow, PartyRow, PlayersRow, ProgressBar, PropertySelect, QuestInfo, QuestList, QuestionDialog, RPGUIContainer, RPGUIContainerTypes, RPGUIRoot, RangeSlider, RangeSliderType, Shortcuts, SimpleImageCarousel, SkillProgressBar, SkillsContainer, Spellbook, SpriteFromAtlas, Stepper, TabBody, TableTab, TabsContainer, TextArea, TimeWidget, TradingMenu, Truncate, TutorialStepper, _RPGUI, getMockedPlayersRowsLeader, getMockedPlayersRowsNotLeader, mockedPartyManager, mockedPartyRows, mockedPlayersRows, mockedPlayersRows2, useEventListener };
|
|
33440
|
+
export { ActionButtons, AsyncDropdown, Button, ButtonTypes, CharacterSelection, Chat, ChatDeprecated, ChatRevamp, CheckButton, CheckItem, CircularController, CraftBook, DraggableContainer, Dropdown, DropdownSelectorContainer, DynamicText, EquipmentSet, EquipmentSlotSpriteByType, ErrorBoundary, FriendList, HistoryDialog, ImageCarousel, ImgSide, Input, InputRadio$1 as InputRadio, ItemContainer$1 as ItemContainer, ItemSelector, ItemSlot, Leaderboard, ListMenu, Marketplace, MarketplaceRows, MultitabType, NPCDialog, NPCDialogType, NPCMultiDialog, PartyCreate, PartyDashboard, PartyInvite, PartyManager, PartyManagerRow, PartyRow, PlayersRow, ProgressBar, PropertySelect, QuestInfo, QuestList, QuestionDialog, RPGUIContainer, RPGUIContainerTypes, RPGUIRoot, RangeSlider, RangeSliderType, Shortcuts, SimpleImageCarousel, SkillProgressBar, SkillsContainer, Spellbook, SpriteFromAtlas, Stepper, TabBody, Table, TableCell, TableHeader, TableRow, TableTab, TabsContainer, TextArea, TimeWidget, TradingMenu, Truncate, TutorialStepper, _RPGUI, getMockedPlayersRowsLeader, getMockedPlayersRowsNotLeader, mockedPartyManager, mockedPartyRows, mockedPlayersRows, mockedPlayersRows2, useEventListener };
|
|
33444
33441
|
//# sourceMappingURL=long-bow.esm.js.map
|