@rpg-engine/long-bow 0.5.49 → 0.5.51
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/ImageCarousel/SimpleImageCarousel.d.ts +10 -0
- package/dist/index.d.ts +1 -0
- package/dist/long-bow.cjs.development.js +384 -298
- 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 +86 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/stories/SimpleImageCarousel.stories.d.ts +5 -0
- package/package.json +2 -2
- package/src/components/ImageCarousel/SimpleImageCarousel.tsx +132 -0
- package/src/index.tsx +1 -0
- package/src/stories/ImageCarousel.stories.tsx +1 -1
- package/src/stories/SimpleImageCarousel.stories.tsx +44 -0
|
@@ -6,7 +6,8 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau
|
|
|
6
6
|
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var React__default = _interopDefault(React);
|
|
9
|
-
var styled =
|
|
9
|
+
var styled = require('styled-components');
|
|
10
|
+
var styled__default = _interopDefault(styled);
|
|
10
11
|
var shared = require('@rpg-engine/shared');
|
|
11
12
|
var dayjs = _interopDefault(require('dayjs'));
|
|
12
13
|
var reactErrorBoundary = require('react-error-boundary');
|
|
@@ -95,7 +96,7 @@ var Button = function Button(_ref) {
|
|
|
95
96
|
onPointerDown: onPointerDown
|
|
96
97
|
}), React__default.createElement("p", null, children));
|
|
97
98
|
};
|
|
98
|
-
var ButtonContainer = /*#__PURE__*/
|
|
99
|
+
var ButtonContainer = /*#__PURE__*/styled__default.button.withConfig({
|
|
99
100
|
displayName: "Button__ButtonContainer",
|
|
100
101
|
componentId: "sc-obzd3o-0"
|
|
101
102
|
})(["height:45px;font-size:", ";"], uiFonts.size.small);
|
|
@@ -146,7 +147,7 @@ var SpriteFromAtlas = function SpriteFromAtlas(_ref) {
|
|
|
146
147
|
borderRadius: borderRadius
|
|
147
148
|
}));
|
|
148
149
|
};
|
|
149
|
-
var Container = /*#__PURE__*/
|
|
150
|
+
var Container = /*#__PURE__*/styled__default.div.withConfig({
|
|
150
151
|
displayName: "SpriteFromAtlas__Container",
|
|
151
152
|
componentId: "sc-1lpani8-0"
|
|
152
153
|
})(["width:", "px;height:", "px;", ""], function (props) {
|
|
@@ -156,7 +157,7 @@ var Container = /*#__PURE__*/styled.div.withConfig({
|
|
|
156
157
|
}, function (props) {
|
|
157
158
|
return !props.hasHover ? "&:hover {\n filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg);\n }" : "";
|
|
158
159
|
});
|
|
159
|
-
var ImgSprite = /*#__PURE__*/
|
|
160
|
+
var ImgSprite = /*#__PURE__*/styled__default.div.withConfig({
|
|
160
161
|
displayName: "SpriteFromAtlas__ImgSprite",
|
|
161
162
|
componentId: "sc-1lpani8-1"
|
|
162
163
|
})(["width:", "px;height:", "px;background-image:url(", ");background-position:-", "px -", "px;transform:scale(", ");position:relative;top:", ";left:", ";filter:", ";opacity:", ";border-radius:", ";"], function (props) {
|
|
@@ -12339,7 +12340,7 @@ var SelectArrow = function SelectArrow(_ref) {
|
|
|
12339
12340
|
}
|
|
12340
12341
|
}, props)));
|
|
12341
12342
|
};
|
|
12342
|
-
var LeftArrow = /*#__PURE__*/
|
|
12343
|
+
var LeftArrow = /*#__PURE__*/styled__default.span.withConfig({
|
|
12343
12344
|
displayName: "SelectArrow__LeftArrow",
|
|
12344
12345
|
componentId: "sc-1h7cpoe-0"
|
|
12345
12346
|
})(["background-image:url(", ");background-size:100% 100%;left:0;position:absolute;width:", "px;height:", "px;:active{background-image:url(", ");}z-index:2;"], img$2, function (props) {
|
|
@@ -12347,7 +12348,7 @@ var LeftArrow = /*#__PURE__*/styled.span.withConfig({
|
|
|
12347
12348
|
}, function (props) {
|
|
12348
12349
|
return props.size || 42;
|
|
12349
12350
|
}, img$1);
|
|
12350
|
-
var RightArrow = /*#__PURE__*/
|
|
12351
|
+
var RightArrow = /*#__PURE__*/styled__default.span.withConfig({
|
|
12351
12352
|
displayName: "SelectArrow__RightArrow",
|
|
12352
12353
|
componentId: "sc-1h7cpoe-1"
|
|
12353
12354
|
})(["background-image:url(", ");right:0;position:absolute;width:", "px;height:", "px;background-size:100% 100%;:active{background-image:url(", ");}z-index:2;"], img$4, function (props) {
|
|
@@ -12370,7 +12371,7 @@ var Ellipsis = function Ellipsis(_ref) {
|
|
|
12370
12371
|
className: "ellipsis-" + maxLines + "-lines"
|
|
12371
12372
|
}, children));
|
|
12372
12373
|
};
|
|
12373
|
-
var Container$1 = /*#__PURE__*/
|
|
12374
|
+
var Container$1 = /*#__PURE__*/styled__default.span.withConfig({
|
|
12374
12375
|
displayName: "Ellipsis__Container",
|
|
12375
12376
|
componentId: "sc-ysrlju-0"
|
|
12376
12377
|
})(["display:block;margin:0;.ellipsis-1-lines{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:", ";font-size:", ";", "}.ellipsis-2-lines{display:block;display:-webkit-box;max-width:", "px;height:25px;margin:0 auto;line-height:1;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden;font-size:", ";}.ellipsis-3-lines{display:block;display:-webkit-box;max-width:", "px;height:43px;margin:0 auto;line-height:1;-webkit-line-clamp:3;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden;font-size:", ";}"], function (props) {
|
|
@@ -12433,15 +12434,15 @@ var PropertySelect = function PropertySelect(_ref) {
|
|
|
12433
12434
|
onPointerDown: onRightClick
|
|
12434
12435
|
}));
|
|
12435
12436
|
};
|
|
12436
|
-
var Item = /*#__PURE__*/
|
|
12437
|
+
var Item = /*#__PURE__*/styled__default.span.withConfig({
|
|
12437
12438
|
displayName: "PropertySelect__Item",
|
|
12438
12439
|
componentId: "sc-12uqx6s-0"
|
|
12439
12440
|
})(["font-size:1rem;color:white;text-align:center;z-index:1;position:absolute;top:12px;width:100%;p{margin:0 auto;font-size:", ";}"], uiFonts.size.small);
|
|
12440
|
-
var TextOverlay = /*#__PURE__*/
|
|
12441
|
+
var TextOverlay = /*#__PURE__*/styled__default.div.withConfig({
|
|
12441
12442
|
displayName: "PropertySelect__TextOverlay",
|
|
12442
12443
|
componentId: "sc-12uqx6s-1"
|
|
12443
12444
|
})(["width:100%;position:relative;"]);
|
|
12444
|
-
var Container$2 = /*#__PURE__*/
|
|
12445
|
+
var Container$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
12445
12446
|
displayName: "PropertySelect__Container",
|
|
12446
12447
|
componentId: "sc-12uqx6s-2"
|
|
12447
12448
|
})(["position:relative;display:flex;flex-direction:column;justify-content:start;align-items:flex-start;min-width:100px;width:40%;"]);
|
|
@@ -12500,12 +12501,12 @@ var CharacterSelection = function CharacterSelection(_ref) {
|
|
|
12500
12501
|
}
|
|
12501
12502
|
}));
|
|
12502
12503
|
};
|
|
12503
|
-
var Container$3 = /*#__PURE__*/
|
|
12504
|
+
var Container$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
12504
12505
|
displayName: "CharacterSelection__Container",
|
|
12505
12506
|
componentId: "sc-b34498-0"
|
|
12506
12507
|
})(["display:flex;flex-direction:column;align-items:center;image-rendering:pixelated;"]);
|
|
12507
12508
|
|
|
12508
|
-
var Column = /*#__PURE__*/
|
|
12509
|
+
var Column = /*#__PURE__*/styled__default.div.withConfig({
|
|
12509
12510
|
displayName: "Column",
|
|
12510
12511
|
componentId: "sc-1pesqff-0"
|
|
12511
12512
|
})(["flex:", ";display:flex;flex-wrap:", ";align-items:", ";justify-content:", ";"], function (props) {
|
|
@@ -12605,32 +12606,32 @@ var Chat = function Chat(_ref) {
|
|
|
12605
12606
|
size: 15
|
|
12606
12607
|
}))))));
|
|
12607
12608
|
};
|
|
12608
|
-
var ChatContainer = /*#__PURE__*/
|
|
12609
|
+
var ChatContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12609
12610
|
displayName: "Chat__ChatContainer",
|
|
12610
12611
|
componentId: "sc-1bk05n6-0"
|
|
12611
12612
|
})(["height:", " !important;width:100%;padding:10px;background-color:rgba(0,0,0,0.2);height:auto;"], function (props) {
|
|
12612
12613
|
return props.height;
|
|
12613
12614
|
});
|
|
12614
|
-
var TextField = /*#__PURE__*/
|
|
12615
|
+
var TextField = /*#__PURE__*/styled__default.input.withConfig({
|
|
12615
12616
|
displayName: "Chat__TextField",
|
|
12616
12617
|
componentId: "sc-1bk05n6-1"
|
|
12617
12618
|
})(["width:100%;background-color:rgba(0,0,0,0.25) !important;border:none !important;max-height:28px !important;"]);
|
|
12618
|
-
var MessagesContainer = /*#__PURE__*/
|
|
12619
|
+
var MessagesContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12619
12620
|
displayName: "Chat__MessagesContainer",
|
|
12620
12621
|
componentId: "sc-1bk05n6-2"
|
|
12621
12622
|
})(["height:70%;margin-bottom:10px;overflow-y:auto;"]);
|
|
12622
|
-
var Message = /*#__PURE__*/
|
|
12623
|
+
var Message = /*#__PURE__*/styled__default.div.withConfig({
|
|
12623
12624
|
displayName: "Chat__Message",
|
|
12624
12625
|
componentId: "sc-1bk05n6-3"
|
|
12625
12626
|
})(["margin-bottom:8px;color:", ";"], function (_ref2) {
|
|
12626
12627
|
var color = _ref2.color;
|
|
12627
12628
|
return color;
|
|
12628
12629
|
});
|
|
12629
|
-
var Form = /*#__PURE__*/
|
|
12630
|
+
var Form = /*#__PURE__*/styled__default.form.withConfig({
|
|
12630
12631
|
displayName: "Chat__Form",
|
|
12631
12632
|
componentId: "sc-1bk05n6-4"
|
|
12632
12633
|
})(["display:flex;width:100%;justify-content:center;align-items:center;"]);
|
|
12633
|
-
var Button$1 = /*#__PURE__*/
|
|
12634
|
+
var Button$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
12634
12635
|
displayName: "Chat__Button",
|
|
12635
12636
|
componentId: "sc-1bk05n6-5"
|
|
12636
12637
|
})(["color:", ";background-color:", ";width:28px;height:28px;border:none !important;"], function (_ref3) {
|
|
@@ -12744,19 +12745,19 @@ var SearchCharacter = function SearchCharacter(_ref) {
|
|
|
12744
12745
|
}, character.name);
|
|
12745
12746
|
})));
|
|
12746
12747
|
};
|
|
12747
|
-
var SearchContainer = /*#__PURE__*/
|
|
12748
|
+
var SearchContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12748
12749
|
displayName: "SearchCharacter__SearchContainer",
|
|
12749
12750
|
componentId: "sc-172lyfr-0"
|
|
12750
12751
|
})(["width:100%;"]);
|
|
12751
|
-
var Form$1 = /*#__PURE__*/
|
|
12752
|
+
var Form$1 = /*#__PURE__*/styled__default.form.withConfig({
|
|
12752
12753
|
displayName: "SearchCharacter__Form",
|
|
12753
12754
|
componentId: "sc-172lyfr-1"
|
|
12754
12755
|
})(["display:flex;width:100%;justify-content:center;align-items:center;"]);
|
|
12755
|
-
var TextField$1 = /*#__PURE__*/
|
|
12756
|
+
var TextField$1 = /*#__PURE__*/styled__default.input.withConfig({
|
|
12756
12757
|
displayName: "SearchCharacter__TextField",
|
|
12757
12758
|
componentId: "sc-172lyfr-2"
|
|
12758
12759
|
})(["width:100%;background-color:rgba(0,0,0,0.25) !important;border:none !important;max-height:28px !important;"]);
|
|
12759
|
-
var SearchButton = /*#__PURE__*/
|
|
12760
|
+
var SearchButton = /*#__PURE__*/styled__default.button.withConfig({
|
|
12760
12761
|
displayName: "SearchCharacter__SearchButton",
|
|
12761
12762
|
componentId: "sc-172lyfr-3"
|
|
12762
12763
|
})(["color:", ";background-color:", ";width:28px;height:28px;border:none !important;"], function (_ref2) {
|
|
@@ -12766,11 +12767,11 @@ var SearchButton = /*#__PURE__*/styled.button.withConfig({
|
|
|
12766
12767
|
var buttonBackgroundColor = _ref3.buttonBackgroundColor;
|
|
12767
12768
|
return buttonBackgroundColor;
|
|
12768
12769
|
});
|
|
12769
|
-
var ListContainer = /*#__PURE__*/
|
|
12770
|
+
var ListContainer = /*#__PURE__*/styled__default.ul.withConfig({
|
|
12770
12771
|
displayName: "SearchCharacter__ListContainer",
|
|
12771
12772
|
componentId: "sc-172lyfr-4"
|
|
12772
12773
|
})(["border:none;overflow-y:scroll;list-style:none;padding:0;"]);
|
|
12773
|
-
var ListElement = /*#__PURE__*/
|
|
12774
|
+
var ListElement = /*#__PURE__*/styled__default.li.withConfig({
|
|
12774
12775
|
displayName: "SearchCharacter__ListElement",
|
|
12775
12776
|
componentId: "sc-172lyfr-5"
|
|
12776
12777
|
})(["margin:0.5rem 0 !important;font-size:", ";padding:0.5rem 2px;&:hover{color:#ff0;background-color:", ";}button{all:unset;}"], uiFonts.size.small, uiColors.darkGray);
|
|
@@ -12877,11 +12878,11 @@ var ChatRevamp = function ChatRevamp(_ref) {
|
|
|
12877
12878
|
onBlur: onBlur
|
|
12878
12879
|
})));
|
|
12879
12880
|
};
|
|
12880
|
-
var TabContainer = /*#__PURE__*/
|
|
12881
|
+
var TabContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12881
12882
|
displayName: "ChatRevamp__TabContainer",
|
|
12882
12883
|
componentId: "sc-1sdiknw-0"
|
|
12883
12884
|
})(["width:100%;display:flex;gap:10px;"]);
|
|
12884
|
-
var Tab = /*#__PURE__*/
|
|
12885
|
+
var Tab = /*#__PURE__*/styled__default.button.withConfig({
|
|
12885
12886
|
displayName: "ChatRevamp__Tab",
|
|
12886
12887
|
componentId: "sc-1sdiknw-1"
|
|
12887
12888
|
})(["width:120px;color:white;font-size:0.8rem;all:unset;padding:0.6rem;font-size:0.8rem;border-radius:5px 5px 0 0;border-width:0.25rem 0.25rem 0 0.25rem;border-style:solid;border-color:", ";background-color:", ";color:", ";"], function (props) {
|
|
@@ -12891,7 +12892,7 @@ var Tab = /*#__PURE__*/styled.button.withConfig({
|
|
|
12891
12892
|
}, function (props) {
|
|
12892
12893
|
return props.active ? 'white' : uiColors.raisinBlack;
|
|
12893
12894
|
});
|
|
12894
|
-
var PrivateChatContainer = /*#__PURE__*/
|
|
12895
|
+
var PrivateChatContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12895
12896
|
displayName: "ChatRevamp__PrivateChatContainer",
|
|
12896
12897
|
componentId: "sc-1sdiknw-2"
|
|
12897
12898
|
})(["width:", ";min-height:", " !important;padding:10px;background-color:rgba(0,0,0,0.2);height:auto;display:flex;gap:10px;"], function (_ref2) {
|
|
@@ -12901,7 +12902,7 @@ var PrivateChatContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
12901
12902
|
var height = _ref3.height;
|
|
12902
12903
|
return height;
|
|
12903
12904
|
});
|
|
12904
|
-
var RecentChatTabContainer = /*#__PURE__*/
|
|
12905
|
+
var RecentChatTabContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12905
12906
|
displayName: "ChatRevamp__RecentChatTabContainer",
|
|
12906
12907
|
componentId: "sc-1sdiknw-3"
|
|
12907
12908
|
})(["display:", ";flex-direction:column;border-right:1px solid ", ";outline:none;width:", " !important;transition:width 0.3s ease-in-out;overflow:hidden;@media (max-width:768px){width:", " !important;}"], function (props) {
|
|
@@ -12911,47 +12912,47 @@ var RecentChatTabContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
12911
12912
|
}, function (props) {
|
|
12912
12913
|
return props.isOpen ? '40%' : '30px';
|
|
12913
12914
|
});
|
|
12914
|
-
var RecentChatTopBar = /*#__PURE__*/
|
|
12915
|
+
var RecentChatTopBar = /*#__PURE__*/styled__default.div.withConfig({
|
|
12915
12916
|
displayName: "ChatRevamp__RecentChatTopBar",
|
|
12916
12917
|
componentId: "sc-1sdiknw-4"
|
|
12917
12918
|
})(["display:flex;align-items:center;justify-content:space-between;height:30px;"]);
|
|
12918
|
-
var SearchButton$1 = /*#__PURE__*/
|
|
12919
|
+
var SearchButton$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
12919
12920
|
displayName: "ChatRevamp__SearchButton",
|
|
12920
12921
|
componentId: "sc-1sdiknw-5"
|
|
12921
12922
|
})(["border:none;background-color:transparent;display:flex;flex-direction:column;align-items:flex-end;gap:2px;padding:4px;position:relative;"]);
|
|
12922
|
-
var BurgerIconContainer = /*#__PURE__*/
|
|
12923
|
+
var BurgerIconContainer = /*#__PURE__*/styled__default.button.withConfig({
|
|
12923
12924
|
displayName: "ChatRevamp__BurgerIconContainer",
|
|
12924
12925
|
componentId: "sc-1sdiknw-6"
|
|
12925
12926
|
})(["border:none;background-color:transparent;display:flex;flex-direction:column;align-items:flex-end;padding:4px;gap:2px;position:relative;&:after{content:'';width:6px;height:6px;position:absolute;top:0;right:2px;border-radius:50%;background-color:", ";display:", ";}"], uiColors.lightGreen, function (props) {
|
|
12926
12927
|
return props.hasUnseenMessages ? 'block' : 'none';
|
|
12927
12928
|
});
|
|
12928
|
-
var BurgerLineIcon = /*#__PURE__*/
|
|
12929
|
+
var BurgerLineIcon = /*#__PURE__*/styled__default.span.withConfig({
|
|
12929
12930
|
displayName: "ChatRevamp__BurgerLineIcon",
|
|
12930
12931
|
componentId: "sc-1sdiknw-7"
|
|
12931
12932
|
})(["width:1rem;height:2px;background-color:#ffffff;"]);
|
|
12932
|
-
var RecentChatLogContainer = /*#__PURE__*/
|
|
12933
|
+
var RecentChatLogContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12933
12934
|
displayName: "ChatRevamp__RecentChatLogContainer",
|
|
12934
12935
|
componentId: "sc-1sdiknw-8"
|
|
12935
12936
|
})(["border:none;list-style:none;display:flex;opacity:", ";flex-direction:column;gap:0.5rem;transition:opacity 0.3s ease-in-out;padding:0;margin:0;flex:1;"], function (props) {
|
|
12936
12937
|
return props.isOpen ? 1 : 0;
|
|
12937
12938
|
});
|
|
12938
|
-
var ListElementContainer = /*#__PURE__*/
|
|
12939
|
+
var ListElementContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
12939
12940
|
displayName: "ChatRevamp__ListElementContainer",
|
|
12940
12941
|
componentId: "sc-1sdiknw-9"
|
|
12941
12942
|
})(["display:flex;justify-content:space-between;align-items:center;"]);
|
|
12942
|
-
var ListElement$1 = /*#__PURE__*/
|
|
12943
|
+
var ListElement$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
12943
12944
|
displayName: "ChatRevamp__ListElement",
|
|
12944
12945
|
componentId: "sc-1sdiknw-10"
|
|
12945
12946
|
})(["margin:0.5rem 0 !important;font-size:", " !important;padding:2px;all:unset;color:", ";width:100%;position:relative;display:flex;align-items:center;gap:4px;&:hover{color:#ff0;}"], uiFonts.size.small, function (props) {
|
|
12946
12947
|
return props.active ? uiColors.yellow : uiColors.white;
|
|
12947
12948
|
});
|
|
12948
|
-
var StatusDot = /*#__PURE__*/
|
|
12949
|
+
var StatusDot = /*#__PURE__*/styled__default.span.withConfig({
|
|
12949
12950
|
displayName: "ChatRevamp__StatusDot",
|
|
12950
12951
|
componentId: "sc-1sdiknw-11"
|
|
12951
12952
|
})(["width:6px;height:6px;border-radius:50%;background-color:", ";display:inline-block;margin-right:6px;"], function (props) {
|
|
12952
12953
|
return props.isUnseen ? uiColors.lightGreen : uiColors.gray;
|
|
12953
12954
|
});
|
|
12954
|
-
var CloseButton = /*#__PURE__*/
|
|
12955
|
+
var CloseButton = /*#__PURE__*/styled__default.button.withConfig({
|
|
12955
12956
|
displayName: "ChatRevamp__CloseButton",
|
|
12956
12957
|
componentId: "sc-1sdiknw-12"
|
|
12957
12958
|
})(["all:unset;font-size:", ";margin:0 0.5rem;transition:all 0.2s ease-in-out;background-color:", ";color:", ";&:hover{background-color:", ";color:", ";}"], uiFonts.size.xxsmall, uiColors.red, uiColors.white, uiColors.white, uiColors.red);
|
|
@@ -12984,7 +12985,7 @@ var RPGUIContainer = function RPGUIContainer(_ref) {
|
|
|
12984
12985
|
className: "rpgui-container " + type + " " + className
|
|
12985
12986
|
}, children);
|
|
12986
12987
|
};
|
|
12987
|
-
var Container$4 = /*#__PURE__*/
|
|
12988
|
+
var Container$4 = /*#__PURE__*/styled__default.div.withConfig({
|
|
12988
12989
|
displayName: "RPGUIContainer__Container",
|
|
12989
12990
|
componentId: "sc-a7heha-0"
|
|
12990
12991
|
})(["height:", ";width:", ";display:flex;flex-wrap:wrap;image-rendering:pixelated;"], function (props) {
|
|
@@ -13081,29 +13082,29 @@ var ChatDeprecated = function ChatDeprecated(_ref) {
|
|
|
13081
13082
|
id: "chat-send-button"
|
|
13082
13083
|
}, "Send"))))));
|
|
13083
13084
|
};
|
|
13084
|
-
var Container$5 = /*#__PURE__*/
|
|
13085
|
+
var Container$5 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13085
13086
|
displayName: "ChatDeprecated__Container",
|
|
13086
13087
|
componentId: "sc-fuuod3-0"
|
|
13087
13088
|
})(["position:relative;"]);
|
|
13088
|
-
var CloseButton$1 = /*#__PURE__*/
|
|
13089
|
+
var CloseButton$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13089
13090
|
displayName: "ChatDeprecated__CloseButton",
|
|
13090
13091
|
componentId: "sc-fuuod3-1"
|
|
13091
13092
|
})(["position:absolute;top:2px;right:0px;color:white;z-index:22;font-size:0.7rem;"]);
|
|
13092
|
-
var CustomInput = /*#__PURE__*/
|
|
13093
|
+
var CustomInput = /*#__PURE__*/styled__default(Input).withConfig({
|
|
13093
13094
|
displayName: "ChatDeprecated__CustomInput",
|
|
13094
13095
|
componentId: "sc-fuuod3-2"
|
|
13095
13096
|
})(["height:30px;width:100%;.rpgui-content .input{min-height:39px;}"]);
|
|
13096
|
-
var CustomContainer = /*#__PURE__*/
|
|
13097
|
+
var CustomContainer = /*#__PURE__*/styled__default(RPGUIContainer).withConfig({
|
|
13097
13098
|
displayName: "ChatDeprecated__CustomContainer",
|
|
13098
13099
|
componentId: "sc-fuuod3-3"
|
|
13099
13100
|
})(["display:block;opacity:", ";&:hover{opacity:1;}.dark-background{background-color:", " !important;}.chat-body{&.rpgui-container.framed-grey{background:unset;}max-height:170px;overflow-y:auto;}"], function (props) {
|
|
13100
13101
|
return props.opacity;
|
|
13101
13102
|
}, uiColors.darkGray);
|
|
13102
|
-
var Form$2 = /*#__PURE__*/
|
|
13103
|
+
var Form$2 = /*#__PURE__*/styled__default.form.withConfig({
|
|
13103
13104
|
displayName: "ChatDeprecated__Form",
|
|
13104
13105
|
componentId: "sc-fuuod3-4"
|
|
13105
13106
|
})(["display:flex;width:100%;justify-content:center;align-items:center;"]);
|
|
13106
|
-
var MessageText = /*#__PURE__*/
|
|
13107
|
+
var MessageText = /*#__PURE__*/styled__default.p.withConfig({
|
|
13107
13108
|
displayName: "ChatDeprecated__MessageText",
|
|
13108
13109
|
componentId: "sc-fuuod3-5"
|
|
13109
13110
|
})(["display:block !important;width:100%;font-size:", " !important;overflow-y:auto;margin:0;"], uiFonts.size.xsmall);
|
|
@@ -13148,7 +13149,7 @@ var CheckButton = function CheckButton(_ref) {
|
|
|
13148
13149
|
}));
|
|
13149
13150
|
};
|
|
13150
13151
|
|
|
13151
|
-
var SingleShortcut = /*#__PURE__*/
|
|
13152
|
+
var SingleShortcut = /*#__PURE__*/styled__default.button.withConfig({
|
|
13152
13153
|
displayName: "SingleShortcut",
|
|
13153
13154
|
componentId: "sc-vz5ev8-0"
|
|
13154
13155
|
})(["width:3rem;height:3rem;background-color:", ";border:2px solid ", ";border-radius:50%;text-transform:uppercase;font-size:0.7rem;font-weight:bold;display:flex;align-items:center;justify-content:center;position:relative;span{pointer-events:none;}.mana{position:absolute;top:-5px;right:0;font-size:0.65rem;color:", ";}.qty{position:absolute;top:-5px;right:0;font-size:0.65rem;}.magicWords{margin-top:4px;}.keyboard{position:absolute;bottom:-5px;left:0;font-size:0.65rem;color:", ";}.onCooldown{color:", ";}.cooldown{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:inherit;background-color:rgba(0 0 0 / 60%);font-size:0.7rem;display:flex;align-items:center;justify-content:center;color:", ";}&:hover,&:focus{background-color:", ";}&:active{background-color:", ";border-color:", ";}&:disabled{opacity:0.5;}"], uiColors.lightGray, uiColors.darkGray, uiColors.blue, uiColors.yellow, uiColors.gray, uiColors.darkYellow, uiColors.darkGray, uiColors.gray, uiColors.yellow);
|
|
@@ -13302,23 +13303,23 @@ var CircularController = function CircularController(_ref) {
|
|
|
13302
13303
|
onTouchEnd: onTouchEnd.bind(null, onCancelClick)
|
|
13303
13304
|
}, React__default.createElement("span", null, "X")));
|
|
13304
13305
|
};
|
|
13305
|
-
var Button$2 = /*#__PURE__*/
|
|
13306
|
+
var Button$2 = /*#__PURE__*/styled__default.button.withConfig({
|
|
13306
13307
|
displayName: "CircularController__Button",
|
|
13307
13308
|
componentId: "sc-1fewf3h-0"
|
|
13308
13309
|
})(["width:4.3rem;height:4.3rem;background-color:", ";border:2px solid ", ";border-radius:50%;text-transform:uppercase;font-size:0.7rem;font-weight:bold;display:flex;align-items:center;justify-content:center;position:relative;transition:all 0.1s;margin-top:-3rem;top:-144px;&.active{background-color:", ";border-color:", ";}.sword{transform:rotate(-45deg);height:2.5rem;width:1.9rem;pointer-events:none;}"], uiColors.lightGray, uiColors.darkGray, uiColors.gray, uiColors.yellow);
|
|
13309
|
-
var CancelButton = /*#__PURE__*/
|
|
13310
|
+
var CancelButton = /*#__PURE__*/styled__default(Button$2).withConfig({
|
|
13310
13311
|
displayName: "CircularController__CancelButton",
|
|
13311
13312
|
componentId: "sc-1fewf3h-1"
|
|
13312
13313
|
})(["width:3rem;height:3rem;font-size:0.8rem;position:relative;left:2.6rem;span{margin-top:4px;margin-left:2px;pointer-events:none;}"]);
|
|
13313
|
-
var ButtonsContainer = /*#__PURE__*/
|
|
13314
|
+
var ButtonsContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
13314
13315
|
displayName: "CircularController__ButtonsContainer",
|
|
13315
13316
|
componentId: "sc-1fewf3h-2"
|
|
13316
13317
|
})(["display:flex;align-items:center;justify-content:center;gap:0.5rem;scale:0.9;"]);
|
|
13317
|
-
var ShortcutsContainer = /*#__PURE__*/
|
|
13318
|
+
var ShortcutsContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
13318
13319
|
displayName: "CircularController__ShortcutsContainer",
|
|
13319
13320
|
componentId: "sc-1fewf3h-3"
|
|
13320
13321
|
})(["display:flex;align-items:center;justify-content:center;gap:0.5rem;flex-direction:column;margin-top:3rem;.top{transform:translate(93%,25%);}.bottom-0{transform:translate(93%,-25%);}.bottom-1{transform:translate(320%,calc(-4.5rem));}.bottom-2{transform:translate(-13.5%,calc(-5.6rem - 25%));}.bottom-3{transform:translate(318%,calc(-15.8rem - 25%));}.bottom-4{transform:translate(-15%,calc(-20.2rem - 25%));}.bottom-5{transform:translate(210%,calc(-15rem - 25%));}.bottom-6{transform:translate(210%,calc(-25.7rem - 25%));}.bottom-7{transform:translate(304%,calc(-24.9rem - 25%));}.bottom-8{transform:translate(-101%,calc(-27.7rem - 25%));}"]);
|
|
13321
|
-
var StyledShortcut = /*#__PURE__*/
|
|
13322
|
+
var StyledShortcut = /*#__PURE__*/styled__default(SingleShortcut).withConfig({
|
|
13322
13323
|
displayName: "CircularController__StyledShortcut",
|
|
13323
13324
|
componentId: "sc-1fewf3h-4"
|
|
13324
13325
|
})(["width:2.5rem;height:2.5rem;transition:all 0.1s;.mana,.qty{font-size:0.5rem;}&:hover,&:focus,&:active{background-color:", ";}&.active{background-color:", ";border-color:", ";}"], uiColors.lightGray, uiColors.gray, uiColors.yellow);
|
|
@@ -13432,7 +13433,7 @@ var DraggableContainer = function DraggableContainer(_ref) {
|
|
|
13432
13433
|
onPointerDown: onCloseButton
|
|
13433
13434
|
}, "X"), children));
|
|
13434
13435
|
};
|
|
13435
|
-
var Container$6 = /*#__PURE__*/
|
|
13436
|
+
var Container$6 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13436
13437
|
displayName: "DraggableContainer__Container",
|
|
13437
13438
|
componentId: "sc-184mpyl-0"
|
|
13438
13439
|
})(["height:", ";width:", ";display:flex;flex-wrap:wrap;image-rendering:pixelated;&.rpgui-container{padding-top:1.5rem;}"], function (props) {
|
|
@@ -13441,19 +13442,19 @@ var Container$6 = /*#__PURE__*/styled.div.withConfig({
|
|
|
13441
13442
|
var width = _ref2.width;
|
|
13442
13443
|
return width;
|
|
13443
13444
|
});
|
|
13444
|
-
var CloseButton$2 = /*#__PURE__*/
|
|
13445
|
+
var CloseButton$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13445
13446
|
displayName: "DraggableContainer__CloseButton",
|
|
13446
13447
|
componentId: "sc-184mpyl-1"
|
|
13447
13448
|
})(["position:absolute;top:3px;right:0px;color:white;z-index:22;font-size:1.5rem;@media (max-width:950px){font-size:1.7rem;padding:12px;}"]);
|
|
13448
|
-
var TitleContainer = /*#__PURE__*/
|
|
13449
|
+
var TitleContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
13449
13450
|
displayName: "DraggableContainer__TitleContainer",
|
|
13450
13451
|
componentId: "sc-184mpyl-2"
|
|
13451
13452
|
})(["width:100%;height:100%;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;"]);
|
|
13452
|
-
var Title = /*#__PURE__*/
|
|
13453
|
+
var Title = /*#__PURE__*/styled__default.h1.withConfig({
|
|
13453
13454
|
displayName: "DraggableContainer__Title",
|
|
13454
13455
|
componentId: "sc-184mpyl-3"
|
|
13455
13456
|
})(["color:white;z-index:22;font-size:", ";"], uiFonts.size.large);
|
|
13456
|
-
var Icon = /*#__PURE__*/
|
|
13457
|
+
var Icon = /*#__PURE__*/styled__default.img.withConfig({
|
|
13457
13458
|
displayName: "DraggableContainer__Icon",
|
|
13458
13459
|
componentId: "sc-184mpyl-4"
|
|
13459
13460
|
})(["color:white;z-index:22;font-size:", ";width:", ";margin-right:0.5rem;"], uiFonts.size.xsmall, function (props) {
|
|
@@ -13507,7 +13508,7 @@ var ModalPortal = function ModalPortal(_ref) {
|
|
|
13507
13508
|
className: "rpgui-content"
|
|
13508
13509
|
}, children), modalRoot);
|
|
13509
13510
|
};
|
|
13510
|
-
var Container$7 = /*#__PURE__*/
|
|
13511
|
+
var Container$7 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13511
13512
|
displayName: "ModalPortal__Container",
|
|
13512
13513
|
componentId: "sc-dgmp04-0"
|
|
13513
13514
|
})(["position:static !important;"]);
|
|
@@ -13556,11 +13557,11 @@ var ItemSlotQty = function ItemSlotQty(_ref) {
|
|
|
13556
13557
|
className: qtyClassName
|
|
13557
13558
|
}, Math.round(stackQty * 100) / 100, ' ')));
|
|
13558
13559
|
};
|
|
13559
|
-
var ItemQtyContainer = /*#__PURE__*/
|
|
13560
|
+
var ItemQtyContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
13560
13561
|
displayName: "ItemSlotQty__ItemQtyContainer",
|
|
13561
13562
|
componentId: "sc-keb1s5-0"
|
|
13562
13563
|
})(["position:relative;width:85%;height:16px;top:25px;left:2px;pointer-events:none;display:flex;justify-content:flex-end;"]);
|
|
13563
|
-
var ItemQty = /*#__PURE__*/
|
|
13564
|
+
var ItemQty = /*#__PURE__*/styled__default.span.withConfig({
|
|
13564
13565
|
displayName: "ItemSlotQty__ItemQty",
|
|
13565
13566
|
componentId: "sc-keb1s5-1"
|
|
13566
13567
|
})(["&.regular{font-size:", ";}&.small{font-size:", ";}&.xsmall{font-size:", ";}"], uiFonts.size.small, uiFonts.size.xsmall, uiFonts.size.xxsmall);
|
|
@@ -13659,7 +13660,7 @@ var RelativeListMenu = function RelativeListMenu(_ref) {
|
|
|
13659
13660
|
}, (params == null ? void 0 : params.text) || 'No text');
|
|
13660
13661
|
}))));
|
|
13661
13662
|
};
|
|
13662
|
-
var Container$8 = /*#__PURE__*/
|
|
13663
|
+
var Container$8 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13663
13664
|
displayName: "RelativeListMenu__Container",
|
|
13664
13665
|
componentId: "sc-7hohf-0"
|
|
13665
13666
|
})(["position:absolute;top:", "px;left:", "px;display:flex;flex-direction:column;width:max-content;justify-content:start;align-items:flex-start;li{font-size:", "em;}"], function (props) {
|
|
@@ -13669,7 +13670,7 @@ var Container$8 = /*#__PURE__*/styled.div.withConfig({
|
|
|
13669
13670
|
}, function (props) {
|
|
13670
13671
|
return props.fontSize;
|
|
13671
13672
|
});
|
|
13672
|
-
var ListElement$2 = /*#__PURE__*/
|
|
13673
|
+
var ListElement$2 = /*#__PURE__*/styled__default.li.withConfig({
|
|
13673
13674
|
displayName: "RelativeListMenu__ListElement",
|
|
13674
13675
|
componentId: "sc-7hohf-1"
|
|
13675
13676
|
})(["margin-right:0.5rem;"]);
|
|
@@ -13717,15 +13718,15 @@ var MobileItemTooltip = function MobileItemTooltip(_ref) {
|
|
|
13717
13718
|
}, option.text);
|
|
13718
13719
|
}))));
|
|
13719
13720
|
};
|
|
13720
|
-
var Container$9 = /*#__PURE__*/
|
|
13721
|
+
var Container$9 = /*#__PURE__*/styled__default.div.withConfig({
|
|
13721
13722
|
displayName: "MobileItemTooltip__Container",
|
|
13722
13723
|
componentId: "sc-ku4p1j-0"
|
|
13723
13724
|
})(["position:absolute;z-index:100;left:0;top:0;width:100vw;height:100vh;background-color:rgba(0 0 0 / 0.5);display:flex;justify-content:center;align-items:center;gap:0.5rem;transition:opacity 0.08s;animation:fadeIn 0.1s forwards;@keyframes fadeIn{0%{opacity:0;}100%{opacity:0.92;}}@keyframes fadeOut{0%{opacity:0.92;}100%{opacity:0;}}&.fadeOut{animation:fadeOut 0.1s forwards;}@media (max-width:640px){flex-direction:column;}"]);
|
|
13724
|
-
var OptionsContainer = /*#__PURE__*/
|
|
13725
|
+
var OptionsContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
13725
13726
|
displayName: "MobileItemTooltip__OptionsContainer",
|
|
13726
13727
|
componentId: "sc-ku4p1j-1"
|
|
13727
13728
|
})(["display:flex;flex-direction:column;gap:0.5rem;flex-wrap:wrap;@media (max-width:640px){flex-direction:row;justify-content:center;}"]);
|
|
13728
|
-
var Option = /*#__PURE__*/
|
|
13729
|
+
var Option = /*#__PURE__*/styled__default.button.withConfig({
|
|
13729
13730
|
displayName: "MobileItemTooltip__Option",
|
|
13730
13731
|
componentId: "sc-ku4p1j-2"
|
|
13731
13732
|
})(["padding:1rem;background-color:#333;color:white;border:none;border-radius:3px;width:8rem;transition:background-color 0.1s;&:hover{background-color:#555;}@media (max-width:640px){padding:1rem 0.5rem;}"]);
|
|
@@ -14195,7 +14196,7 @@ var ItemSlot = /*#__PURE__*/mobxReactLite.observer(function (_ref) {
|
|
|
14195
14196
|
setIsTooltipVisible: setTooltipVisible
|
|
14196
14197
|
}));
|
|
14197
14198
|
});
|
|
14198
|
-
var Container$a = /*#__PURE__*/
|
|
14199
|
+
var Container$a = /*#__PURE__*/styled__default.div.withConfig({
|
|
14199
14200
|
displayName: "ItemSlot__Container",
|
|
14200
14201
|
componentId: "sc-l2j5ef-0"
|
|
14201
14202
|
})(["margin:0.1rem;.react-draggable-dragging{opacity:", ";}position:relative;.sprite-from-atlas-img--item{position:relative;top:1.5rem;left:1.5rem;border-color:", ";box-shadow:", " inset,", ";}&::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;border-radius:12px;pointer-events:none;animation:", ";@keyframes bg-color-change{0%{background-color:rgba(255 255 255 / 0.5);}50%{background-color:transparent;}100%{background-color:rgba(255 255 255 / 0.5);}}}"], function (_ref2) {
|
|
@@ -14214,7 +14215,7 @@ var Container$a = /*#__PURE__*/styled.div.withConfig({
|
|
|
14214
14215
|
var isSelectingShortcut = _ref6.isSelectingShortcut;
|
|
14215
14216
|
return isSelectingShortcut ? 'bg-color-change 1s infinite' : 'none';
|
|
14216
14217
|
});
|
|
14217
|
-
var ItemContainer = /*#__PURE__*/
|
|
14218
|
+
var ItemContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
14218
14219
|
displayName: "ItemSlot__ItemContainer",
|
|
14219
14220
|
componentId: "sc-l2j5ef-1"
|
|
14220
14221
|
})(["width:64px;height:64px;position:relative;", ";"], function (props) {
|
|
@@ -14325,7 +14326,7 @@ var ItemInfo = function ItemInfo(_ref) {
|
|
|
14325
14326
|
"$isSpecial": true
|
|
14326
14327
|
}, "Two handed"), React__default.createElement(Description, null, item.description), item.maxStackSize && item.maxStackSize !== 1 && React__default.createElement(StackInfo, null, "x", Math.round(((_item$stackQty = item.stackQty) != null ? _item$stackQty : 1) * 100) / 100, "(", item.maxStackSize, ")"), renderMissingStatistic().length > 0 && React__default.createElement(MissingStatistics, null, React__default.createElement(Statistic, null, "Equipped Diff"), itemToCompare && renderMissingStatistic()));
|
|
14327
14328
|
};
|
|
14328
|
-
var Container$b = /*#__PURE__*/
|
|
14329
|
+
var Container$b = /*#__PURE__*/styled__default.div.withConfig({
|
|
14329
14330
|
displayName: "ItemInfo__Container",
|
|
14330
14331
|
componentId: "sc-1xm4q8k-0"
|
|
14331
14332
|
})(["color:white;background-color:#222;border-radius:5px;padding:0.5rem;font-size:", ";border:3px solid ", ";height:max-content;width:18rem;@media (max-width:640px){width:80vw;}"], uiFonts.size.small, function (_ref2) {
|
|
@@ -14333,49 +14334,49 @@ var Container$b = /*#__PURE__*/styled.div.withConfig({
|
|
|
14333
14334
|
var item = _ref2.item;
|
|
14334
14335
|
return (_rarityColor = rarityColor(item)) != null ? _rarityColor : uiColors.lightGray;
|
|
14335
14336
|
});
|
|
14336
|
-
var Title$1 = /*#__PURE__*/
|
|
14337
|
+
var Title$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
14337
14338
|
displayName: "ItemInfo__Title",
|
|
14338
14339
|
componentId: "sc-1xm4q8k-1"
|
|
14339
14340
|
})(["font-size:", ";font-weight:bold;margin-bottom:0.5rem;display:flex;align-items:center;margin:0;"], uiFonts.size.medium);
|
|
14340
|
-
var Rarity = /*#__PURE__*/
|
|
14341
|
+
var Rarity = /*#__PURE__*/styled__default.div.withConfig({
|
|
14341
14342
|
displayName: "ItemInfo__Rarity",
|
|
14342
14343
|
componentId: "sc-1xm4q8k-2"
|
|
14343
14344
|
})(["font-size:", ";font-weight:normal;margin-top:0.2rem;color:", ";filter:brightness(1.5);"], uiFonts.size.small, function (_ref3) {
|
|
14344
14345
|
var item = _ref3.item;
|
|
14345
14346
|
return rarityColor(item);
|
|
14346
14347
|
});
|
|
14347
|
-
var Type = /*#__PURE__*/
|
|
14348
|
+
var Type = /*#__PURE__*/styled__default.div.withConfig({
|
|
14348
14349
|
displayName: "ItemInfo__Type",
|
|
14349
14350
|
componentId: "sc-1xm4q8k-3"
|
|
14350
14351
|
})(["font-size:", ";margin-top:0.2rem;color:", ";"], uiFonts.size.small, uiColors.lightGray);
|
|
14351
|
-
var LevelRequirement = /*#__PURE__*/
|
|
14352
|
+
var LevelRequirement = /*#__PURE__*/styled__default.div.withConfig({
|
|
14352
14353
|
displayName: "ItemInfo__LevelRequirement",
|
|
14353
14354
|
componentId: "sc-1xm4q8k-4"
|
|
14354
14355
|
})(["font-size:", ";margin-top:0.2rem;margin-bottom:1rem;color:", ";.title{margin-bottom:4px;}div{margin-bottom:2px;}"], uiFonts.size.small, uiColors.orange);
|
|
14355
|
-
var Statistic = /*#__PURE__*/
|
|
14356
|
+
var Statistic = /*#__PURE__*/styled__default.div.withConfig({
|
|
14356
14357
|
displayName: "ItemInfo__Statistic",
|
|
14357
14358
|
componentId: "sc-1xm4q8k-5"
|
|
14358
14359
|
})(["margin-bottom:0.4rem;width:100%;color:", ";.label{display:inline-block;margin-right:0.5rem;color:inherit;}.value{display:inline-block;color:inherit;}&.better,.better{color:", ";}&.worse,.worse{color:", ";}"], function (_ref4) {
|
|
14359
14360
|
var $isSpecial = _ref4.$isSpecial;
|
|
14360
14361
|
return $isSpecial ? uiColors.darkYellow : 'inherit';
|
|
14361
14362
|
}, uiColors.lightGreen, uiColors.cardinal);
|
|
14362
|
-
var Description = /*#__PURE__*/
|
|
14363
|
+
var Description = /*#__PURE__*/styled__default.div.withConfig({
|
|
14363
14364
|
displayName: "ItemInfo__Description",
|
|
14364
14365
|
componentId: "sc-1xm4q8k-6"
|
|
14365
14366
|
})(["margin-top:1.5rem;font-size:", ";color:", ";font-style:italic;"], uiFonts.size.small, uiColors.lightGray);
|
|
14366
|
-
var Header = /*#__PURE__*/
|
|
14367
|
+
var Header = /*#__PURE__*/styled__default.div.withConfig({
|
|
14367
14368
|
displayName: "ItemInfo__Header",
|
|
14368
14369
|
componentId: "sc-1xm4q8k-7"
|
|
14369
14370
|
})(["display:flex;align-items:center;justify-content:space-between;margin-bottom:0.5rem;"]);
|
|
14370
|
-
var AllowedSlots = /*#__PURE__*/
|
|
14371
|
+
var AllowedSlots = /*#__PURE__*/styled__default.div.withConfig({
|
|
14371
14372
|
displayName: "ItemInfo__AllowedSlots",
|
|
14372
14373
|
componentId: "sc-1xm4q8k-8"
|
|
14373
14374
|
})(["display:flex;align-items:center;justify-content:center;gap:0.5rem;margin-left:auto;align-self:flex-start;"]);
|
|
14374
|
-
var StackInfo = /*#__PURE__*/
|
|
14375
|
+
var StackInfo = /*#__PURE__*/styled__default.div.withConfig({
|
|
14375
14376
|
displayName: "ItemInfo__StackInfo",
|
|
14376
14377
|
componentId: "sc-1xm4q8k-9"
|
|
14377
14378
|
})(["width:100%;text-align:right;font-size:", ";color:", ";margin-top:1rem;"], uiFonts.size.small, uiColors.orange);
|
|
14378
|
-
var MissingStatistics = /*#__PURE__*/
|
|
14379
|
+
var MissingStatistics = /*#__PURE__*/styled__default.div.withConfig({
|
|
14379
14380
|
displayName: "ItemInfo__MissingStatistics",
|
|
14380
14381
|
componentId: "sc-1xm4q8k-10"
|
|
14381
14382
|
})(["margin-top:1rem;color:", ";"], uiColors.cardinal);
|
|
@@ -14424,18 +14425,18 @@ var ItemInfoDisplay = function ItemInfoDisplay(_ref) {
|
|
|
14424
14425
|
atlasJSON: atlasJSON
|
|
14425
14426
|
})));
|
|
14426
14427
|
};
|
|
14427
|
-
var Flex = /*#__PURE__*/
|
|
14428
|
+
var Flex = /*#__PURE__*/styled__default.div.withConfig({
|
|
14428
14429
|
displayName: "ItemInfoDisplay__Flex",
|
|
14429
14430
|
componentId: "sc-1lftdo8-0"
|
|
14430
14431
|
})(["display:flex;gap:0.5rem;flex-direction:", ";align-items:center;@media (max-width:640px){flex-direction:column-reverse;align-items:center;}"], function (_ref2) {
|
|
14431
14432
|
var $isMobile = _ref2.$isMobile;
|
|
14432
14433
|
return $isMobile ? 'row-reverse' : 'row';
|
|
14433
14434
|
});
|
|
14434
|
-
var Equipped = /*#__PURE__*/
|
|
14435
|
+
var Equipped = /*#__PURE__*/styled__default.div.withConfig({
|
|
14435
14436
|
displayName: "ItemInfoDisplay__Equipped",
|
|
14436
14437
|
componentId: "sc-1lftdo8-1"
|
|
14437
14438
|
})(["position:absolute;bottom:100%;left:50%;transform:translateX(-50%);"]);
|
|
14438
|
-
var CompareContainer = /*#__PURE__*/
|
|
14439
|
+
var CompareContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
14439
14440
|
displayName: "ItemInfoDisplay__CompareContainer",
|
|
14440
14441
|
componentId: "sc-1lftdo8-2"
|
|
14441
14442
|
})(["position:relative;"]);
|
|
@@ -14480,7 +14481,7 @@ var ItemTooltip = function ItemTooltip(_ref) {
|
|
|
14480
14481
|
equipmentSet: equipmentSet
|
|
14481
14482
|
})));
|
|
14482
14483
|
};
|
|
14483
|
-
var Container$c = /*#__PURE__*/
|
|
14484
|
+
var Container$c = /*#__PURE__*/styled__default.div.withConfig({
|
|
14484
14485
|
displayName: "ItemTooltip__Container",
|
|
14485
14486
|
componentId: "sc-11d9r7x-0"
|
|
14486
14487
|
})(["position:absolute;z-index:100;pointer-events:none;left:0;top:0;opacity:0;transition:opacity 0.08s;"]);
|
|
@@ -14595,26 +14596,26 @@ var CraftingRecipe = function CraftingRecipe(_ref) {
|
|
|
14595
14596
|
}, modifyString(ingredient.key), " x", ingredient.qty, " (", itemQtyInInventory, ")"));
|
|
14596
14597
|
})));
|
|
14597
14598
|
};
|
|
14598
|
-
var Ingredient = /*#__PURE__*/
|
|
14599
|
+
var Ingredient = /*#__PURE__*/styled__default.p.withConfig({
|
|
14599
14600
|
displayName: "CraftingRecipe__Ingredient",
|
|
14600
14601
|
componentId: "sc-1fe04wz-0"
|
|
14601
14602
|
})(["margin:0;margin-left:14px;color:", " !important;"], function (_ref2) {
|
|
14602
14603
|
var isQuantityOk = _ref2.isQuantityOk;
|
|
14603
14604
|
return isQuantityOk ? uiColors.lightGreen : uiColors.lightGray;
|
|
14604
14605
|
});
|
|
14605
|
-
var Recipe = /*#__PURE__*/
|
|
14606
|
+
var Recipe = /*#__PURE__*/styled__default.div.withConfig({
|
|
14606
14607
|
displayName: "CraftingRecipe__Recipe",
|
|
14607
14608
|
componentId: "sc-1fe04wz-1"
|
|
14608
14609
|
})(["font-size:0.6rem;margin-bottom:3px;display:flex;align-items:center;margin-left:4px;.sprite-from-atlas-img{top:0px;left:0px;}"]);
|
|
14609
|
-
var SpriteAtlasWrapper = /*#__PURE__*/
|
|
14610
|
+
var SpriteAtlasWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
14610
14611
|
displayName: "CraftingRecipe__SpriteAtlasWrapper",
|
|
14611
14612
|
componentId: "sc-1fe04wz-2"
|
|
14612
14613
|
})(["margin-right:40px;"]);
|
|
14613
|
-
var RadioOptionsWrapper = /*#__PURE__*/
|
|
14614
|
+
var RadioOptionsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
14614
14615
|
displayName: "CraftingRecipe__RadioOptionsWrapper",
|
|
14615
14616
|
componentId: "sc-1fe04wz-3"
|
|
14616
14617
|
})(["display:flex;align-items:stretch;margin-bottom:40px;"]);
|
|
14617
|
-
var MinCraftingRequirementsText = /*#__PURE__*/
|
|
14618
|
+
var MinCraftingRequirementsText = /*#__PURE__*/styled__default.p.withConfig({
|
|
14618
14619
|
displayName: "CraftingRecipe__MinCraftingRequirementsText",
|
|
14619
14620
|
componentId: "sc-1fe04wz-4"
|
|
14620
14621
|
})(["font-size:0.6rem !important;margin:0 5px 0 35px;color:", " !important;"], function (_ref3) {
|
|
@@ -14766,31 +14767,31 @@ var CraftBook = function CraftBook(_ref) {
|
|
|
14766
14767
|
}
|
|
14767
14768
|
}, "Craft"))));
|
|
14768
14769
|
};
|
|
14769
|
-
var Wrapper = /*#__PURE__*/
|
|
14770
|
+
var Wrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
14770
14771
|
displayName: "CraftBook__Wrapper",
|
|
14771
14772
|
componentId: "sc-19q95ue-0"
|
|
14772
14773
|
})(["display:flex;flex-direction:column;width:100%;height:100%;"]);
|
|
14773
|
-
var Title$2 = /*#__PURE__*/
|
|
14774
|
+
var Title$2 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
14774
14775
|
displayName: "CraftBook__Title",
|
|
14775
14776
|
componentId: "sc-19q95ue-1"
|
|
14776
14777
|
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
14777
|
-
var Subtitle = /*#__PURE__*/
|
|
14778
|
+
var Subtitle = /*#__PURE__*/styled__default.h1.withConfig({
|
|
14778
14779
|
displayName: "CraftBook__Subtitle",
|
|
14779
14780
|
componentId: "sc-19q95ue-2"
|
|
14780
14781
|
})(["font-size:0.4rem;color:", " !important;"], uiColors.yellow);
|
|
14781
|
-
var RadioInputScroller = /*#__PURE__*/
|
|
14782
|
+
var RadioInputScroller = /*#__PURE__*/styled__default.div.withConfig({
|
|
14782
14783
|
displayName: "CraftBook__RadioInputScroller",
|
|
14783
14784
|
componentId: "sc-19q95ue-3"
|
|
14784
14785
|
})(["padding-left:15px;padding-top:10px;margin-top:1rem;align-items:center;align-items:flex-start;overflow-y:scroll;min-height:0;flex:1;margin-left:10px;-webkit-overflow-scrolling:touch;@media (max-width:", "){margin-left:0;}"], mobilePortrait.width);
|
|
14785
|
-
var ButtonWrapper = /*#__PURE__*/
|
|
14786
|
+
var ButtonWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
14786
14787
|
displayName: "CraftBook__ButtonWrapper",
|
|
14787
14788
|
componentId: "sc-19q95ue-4"
|
|
14788
14789
|
})(["display:flex;justify-content:flex-end;margin-top:10px;width:100%;button{padding:0px 50px;margin:5px;}@media (max-width:", "){justify-content:center;}"], mobilePortrait.width);
|
|
14789
|
-
var ContentContainer = /*#__PURE__*/
|
|
14790
|
+
var ContentContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
14790
14791
|
displayName: "CraftBook__ContentContainer",
|
|
14791
14792
|
componentId: "sc-19q95ue-5"
|
|
14792
14793
|
})(["display:flex;width:100%;min-height:0;flex:1;@media (max-width:", "){flex-direction:column;}"], mobilePortrait.width);
|
|
14793
|
-
var ItemTypes = /*#__PURE__*/
|
|
14794
|
+
var ItemTypes = /*#__PURE__*/styled__default.div.withConfig({
|
|
14794
14795
|
displayName: "CraftBook__ItemTypes",
|
|
14795
14796
|
componentId: "sc-19q95ue-6"
|
|
14796
14797
|
})(["display:flex;overflow-y:scroll;overflow-x:hidden;width:max-content;flex-direction:column;padding-right:5px;@media (max-width:", "){overflow-x:scroll;overflow-y:hidden;padding-right:0;width:100%;}"], mobilePortrait.width);
|
|
@@ -14860,17 +14861,17 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
14860
14861
|
}, option.option);
|
|
14861
14862
|
})));
|
|
14862
14863
|
};
|
|
14863
|
-
var Container$d = /*#__PURE__*/
|
|
14864
|
+
var Container$d = /*#__PURE__*/styled__default.div.withConfig({
|
|
14864
14865
|
displayName: "Dropdown__Container",
|
|
14865
14866
|
componentId: "sc-8arn65-0"
|
|
14866
14867
|
})(["position:relative;width:", ";"], function (props) {
|
|
14867
14868
|
return props.width || '100%';
|
|
14868
14869
|
});
|
|
14869
|
-
var DropdownSelect = /*#__PURE__*/
|
|
14870
|
+
var DropdownSelect = /*#__PURE__*/styled__default.p.withConfig({
|
|
14870
14871
|
displayName: "Dropdown__DropdownSelect",
|
|
14871
14872
|
componentId: "sc-8arn65-1"
|
|
14872
14873
|
})(["width:100%;box-sizing:border-box;label{display:inline-block;transform:translateY(-2px);}"]);
|
|
14873
|
-
var DropdownOptions = /*#__PURE__*/
|
|
14874
|
+
var DropdownOptions = /*#__PURE__*/styled__default.ul.withConfig({
|
|
14874
14875
|
displayName: "Dropdown__DropdownOptions",
|
|
14875
14876
|
componentId: "sc-8arn65-2"
|
|
14876
14877
|
})(["position:absolute;width:100%;max-height:300px;overflow-y:auto;display:", ";box-sizing:border-box;@media (max-width:768px){padding:8px 0;}"], function (props) {
|
|
@@ -14893,7 +14894,7 @@ var DropdownSelectorContainer = function DropdownSelectorContainer(_ref) {
|
|
|
14893
14894
|
onChange: onChange
|
|
14894
14895
|
}), React__default.createElement(Details, null, details));
|
|
14895
14896
|
};
|
|
14896
|
-
var Details = /*#__PURE__*/
|
|
14897
|
+
var Details = /*#__PURE__*/styled__default.p.withConfig({
|
|
14897
14898
|
displayName: "DropdownSelectorContainer__Details",
|
|
14898
14899
|
componentId: "sc-kaa0h9-0"
|
|
14899
14900
|
})(["font-size:", " !important;"], uiFonts.size.xsmall);
|
|
@@ -14990,11 +14991,11 @@ var DraggedItem = function DraggedItem(_ref) {
|
|
|
14990
14991
|
}), stackInfo));
|
|
14991
14992
|
};
|
|
14992
14993
|
var pulse = "\n @keyframes pulse {\n 0%, 100% {\n transform: scale(1) rotate(-3deg);\n }\n 50% {\n transform: scale(0.95) rotate(-3deg);\n }\n }\n";
|
|
14993
|
-
var Container$e = /*#__PURE__*/
|
|
14994
|
+
var Container$e = /*#__PURE__*/styled__default.div.withConfig({
|
|
14994
14995
|
displayName: "DraggedItem__Container",
|
|
14995
14996
|
componentId: "sc-mlzzcp-0"
|
|
14996
14997
|
})(["position:relative;"]);
|
|
14997
|
-
var SpriteContainer = /*#__PURE__*/
|
|
14998
|
+
var SpriteContainer = /*#__PURE__*/styled__default.div.attrs(function (props) {
|
|
14998
14999
|
return {
|
|
14999
15000
|
style: {
|
|
15000
15001
|
left: props.x + "px",
|
|
@@ -15102,11 +15103,11 @@ var EquipmentSet = function EquipmentSet(_ref) {
|
|
|
15102
15103
|
className: "equipment-container-body"
|
|
15103
15104
|
}, React__default.createElement(EquipmentColumn, null, onRenderEquipmentSlotRange(0, 3)), React__default.createElement(EquipmentColumn, null, onRenderEquipmentSlotRange(3, 7)), React__default.createElement(EquipmentColumn, null, onRenderEquipmentSlotRange(7, 10)))));
|
|
15104
15105
|
};
|
|
15105
|
-
var EquipmentSetContainer = /*#__PURE__*/
|
|
15106
|
+
var EquipmentSetContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15106
15107
|
displayName: "EquipmentSet__EquipmentSetContainer",
|
|
15107
15108
|
componentId: "sc-1wuddg2-0"
|
|
15108
15109
|
})(["width:inherit;display:flex;justify-content:center;flex-wrap:wrap;flex-direction:row;touch-action:none;"]);
|
|
15109
|
-
var EquipmentColumn = /*#__PURE__*/
|
|
15110
|
+
var EquipmentColumn = /*#__PURE__*/styled__default.div.withConfig({
|
|
15110
15111
|
displayName: "EquipmentSet__EquipmentColumn",
|
|
15111
15112
|
componentId: "sc-1wuddg2-1"
|
|
15112
15113
|
})(["display:flex;justify-content:center;flex-wrap:wrap;flex-direction:column;touch-action:none;"]);
|
|
@@ -15176,27 +15177,27 @@ var SearchFriend = function SearchFriend(props) {
|
|
|
15176
15177
|
}, "Reject")));
|
|
15177
15178
|
})));
|
|
15178
15179
|
};
|
|
15179
|
-
var Form$3 = /*#__PURE__*/
|
|
15180
|
+
var Form$3 = /*#__PURE__*/styled__default.form.withConfig({
|
|
15180
15181
|
displayName: "SearchFriend__Form",
|
|
15181
15182
|
componentId: "sc-1lt1ols-0"
|
|
15182
15183
|
})(["display:flex;width:100%;justify-content:center;align-items:center;margin-top:1rem;"]);
|
|
15183
|
-
var TextField$2 = /*#__PURE__*/
|
|
15184
|
+
var TextField$2 = /*#__PURE__*/styled__default.input.withConfig({
|
|
15184
15185
|
displayName: "SearchFriend__TextField",
|
|
15185
15186
|
componentId: "sc-1lt1ols-1"
|
|
15186
15187
|
})(["width:100%;background-color:rgba(0,0,0,0.25) !important;border:none !important;max-height:28px !important;"]);
|
|
15187
|
-
var ListContainer$1 = /*#__PURE__*/
|
|
15188
|
+
var ListContainer$1 = /*#__PURE__*/styled__default.ul.withConfig({
|
|
15188
15189
|
displayName: "SearchFriend__ListContainer",
|
|
15189
15190
|
componentId: "sc-1lt1ols-2"
|
|
15190
15191
|
})(["width:100%;c4height:50vh;border:none;overflow-y:scroll;list-style:none;padding:0;@media (max-width:768px){max-height:90wh;}"]);
|
|
15191
|
-
var ListElement$3 = /*#__PURE__*/
|
|
15192
|
+
var ListElement$3 = /*#__PURE__*/styled__default.li.withConfig({
|
|
15192
15193
|
displayName: "SearchFriend__ListElement",
|
|
15193
15194
|
componentId: "sc-1lt1ols-3"
|
|
15194
15195
|
})(["margin:0.5rem 0 !important;font-size:", ";padding:0.5rem 2px;display:flex;align-items:center;justify-content:space-between;"], uiFonts.size.small);
|
|
15195
|
-
var FriendRequestTitle = /*#__PURE__*/
|
|
15196
|
+
var FriendRequestTitle = /*#__PURE__*/styled__default.h3.withConfig({
|
|
15196
15197
|
displayName: "SearchFriend__FriendRequestTitle",
|
|
15197
15198
|
componentId: "sc-1lt1ols-4"
|
|
15198
15199
|
})(["font-size:", " !important;margin-top:0.5rem !important;text-align:center;gap:0.5rem;"], uiFonts.size.small);
|
|
15199
|
-
var AcceptRejectButtonContainer = /*#__PURE__*/
|
|
15200
|
+
var AcceptRejectButtonContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15200
15201
|
displayName: "SearchFriend__AcceptRejectButtonContainer",
|
|
15201
15202
|
componentId: "sc-1lt1ols-5"
|
|
15202
15203
|
})(["display:flex;justify-content:space-between;gap:0.5rem;"]);
|
|
@@ -15260,30 +15261,30 @@ var FriendList = function FriendList(props) {
|
|
|
15260
15261
|
}
|
|
15261
15262
|
}, isAddFriendUI ? 'Back' : 'Add New Friend')));
|
|
15262
15263
|
};
|
|
15263
|
-
var FriendsTitle = /*#__PURE__*/
|
|
15264
|
+
var FriendsTitle = /*#__PURE__*/styled__default.h2.withConfig({
|
|
15264
15265
|
displayName: "FriendList__FriendsTitle",
|
|
15265
15266
|
componentId: "sc-3jf9vt-0"
|
|
15266
15267
|
})(["font-size:", ";margin:0;padding:0;text-align:center;"], uiFonts.size.medium);
|
|
15267
|
-
var ListContainer$2 = /*#__PURE__*/
|
|
15268
|
+
var ListContainer$2 = /*#__PURE__*/styled__default.ul.withConfig({
|
|
15268
15269
|
displayName: "FriendList__ListContainer",
|
|
15269
15270
|
componentId: "sc-3jf9vt-1"
|
|
15270
15271
|
})(["border:none;overflow-y:scroll;list-style:none;padding:0;width:100%;height:50vh;@media (max-width:768px){max-height:90wh;}"]);
|
|
15271
|
-
var ListElement$4 = /*#__PURE__*/
|
|
15272
|
+
var ListElement$4 = /*#__PURE__*/styled__default.li.withConfig({
|
|
15272
15273
|
displayName: "FriendList__ListElement",
|
|
15273
15274
|
componentId: "sc-3jf9vt-2"
|
|
15274
15275
|
})(["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);
|
|
15275
|
-
var IsOnlineBadge = /*#__PURE__*/
|
|
15276
|
+
var IsOnlineBadge = /*#__PURE__*/styled__default.div.withConfig({
|
|
15276
15277
|
displayName: "FriendList__IsOnlineBadge",
|
|
15277
15278
|
componentId: "sc-3jf9vt-3"
|
|
15278
15279
|
})(["width:10px;height:10px;border-radius:50%;background-color:", ";margin-right:1rem;"], function (_ref) {
|
|
15279
15280
|
var $isOnline = _ref.$isOnline;
|
|
15280
15281
|
return $isOnline ? uiColors.lightGreen : uiColors.red;
|
|
15281
15282
|
});
|
|
15282
|
-
var ButtonContainer$1 = /*#__PURE__*/
|
|
15283
|
+
var ButtonContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15283
15284
|
displayName: "FriendList__ButtonContainer",
|
|
15284
15285
|
componentId: "sc-3jf9vt-4"
|
|
15285
15286
|
})(["display:flex;justify-content:center;align-items:center;width:100%;margin-top:1rem;"]);
|
|
15286
|
-
var MessageAndDeleteContainer = /*#__PURE__*/
|
|
15287
|
+
var MessageAndDeleteContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15287
15288
|
displayName: "FriendList__MessageAndDeleteContainer",
|
|
15288
15289
|
componentId: "sc-3jf9vt-5"
|
|
15289
15290
|
})(["display:flex;justify-content:space-between;gap:0.5rem;"]);
|
|
@@ -15326,7 +15327,7 @@ var DynamicText = function DynamicText(_ref) {
|
|
|
15326
15327
|
}, [text]);
|
|
15327
15328
|
return React__default.createElement(TextContainer, null, textState);
|
|
15328
15329
|
};
|
|
15329
|
-
var TextContainer = /*#__PURE__*/
|
|
15330
|
+
var TextContainer = /*#__PURE__*/styled__default.p.withConfig({
|
|
15330
15331
|
displayName: "DynamicText__TextContainer",
|
|
15331
15332
|
componentId: "sc-1ggl9nd-0"
|
|
15332
15333
|
})(["font-size:0.7rem !important;color:white;text-shadow:1px 1px 0px #000000;letter-spacing:1.2px;word-break:normal;"]);
|
|
@@ -15401,11 +15402,11 @@ var NPCDialogText = function NPCDialogText(_ref) {
|
|
|
15401
15402
|
}
|
|
15402
15403
|
}));
|
|
15403
15404
|
};
|
|
15404
|
-
var Container$f = /*#__PURE__*/
|
|
15405
|
+
var Container$f = /*#__PURE__*/styled__default.div.withConfig({
|
|
15405
15406
|
displayName: "NPCDialogText__Container",
|
|
15406
15407
|
componentId: "sc-1cxkdh9-0"
|
|
15407
15408
|
})([""]);
|
|
15408
|
-
var PressSpaceIndicator = /*#__PURE__*/
|
|
15409
|
+
var PressSpaceIndicator = /*#__PURE__*/styled__default.img.withConfig({
|
|
15409
15410
|
displayName: "NPCDialogText__PressSpaceIndicator",
|
|
15410
15411
|
componentId: "sc-1cxkdh9-1"
|
|
15411
15412
|
})(["position:absolute;right:", ";bottom:1rem;height:20.7px;image-rendering:-webkit-optimize-contrast;"], function (_ref2) {
|
|
@@ -15563,31 +15564,31 @@ var QuestionDialog = function QuestionDialog(_ref) {
|
|
|
15563
15564
|
}
|
|
15564
15565
|
})), canShowAnswers && React__default.createElement(AnswersContainer, null, onRenderCurrentAnswers()));
|
|
15565
15566
|
};
|
|
15566
|
-
var Container$g = /*#__PURE__*/
|
|
15567
|
+
var Container$g = /*#__PURE__*/styled__default.div.withConfig({
|
|
15567
15568
|
displayName: "QuestionDialog__Container",
|
|
15568
15569
|
componentId: "sc-bxc5u0-0"
|
|
15569
15570
|
})(["display:flex;word-break:break-all;box-sizing:border-box;justify-content:flex-start;align-items:flex-start;flex-wrap:wrap;"]);
|
|
15570
|
-
var QuestionContainer = /*#__PURE__*/
|
|
15571
|
+
var QuestionContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15571
15572
|
displayName: "QuestionDialog__QuestionContainer",
|
|
15572
15573
|
componentId: "sc-bxc5u0-1"
|
|
15573
15574
|
})(["flex:100%;width:100%;"]);
|
|
15574
|
-
var AnswersContainer = /*#__PURE__*/
|
|
15575
|
+
var AnswersContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15575
15576
|
displayName: "QuestionDialog__AnswersContainer",
|
|
15576
15577
|
componentId: "sc-bxc5u0-2"
|
|
15577
15578
|
})(["flex:100%;"]);
|
|
15578
|
-
var Answer = /*#__PURE__*/
|
|
15579
|
+
var Answer = /*#__PURE__*/styled__default.p.withConfig({
|
|
15579
15580
|
displayName: "QuestionDialog__Answer",
|
|
15580
15581
|
componentId: "sc-bxc5u0-3"
|
|
15581
15582
|
})(["flex:auto;color:", " !important;font-size:0.65rem !important;background:inherit;border:none;"], function (props) {
|
|
15582
15583
|
return props.color;
|
|
15583
15584
|
});
|
|
15584
|
-
var AnswerSelectedIcon = /*#__PURE__*/
|
|
15585
|
+
var AnswerSelectedIcon = /*#__PURE__*/styled__default.span.withConfig({
|
|
15585
15586
|
displayName: "QuestionDialog__AnswerSelectedIcon",
|
|
15586
15587
|
componentId: "sc-bxc5u0-4"
|
|
15587
15588
|
})(["flex:5% 0 0;color:", " !important;"], function (props) {
|
|
15588
15589
|
return props.color;
|
|
15589
15590
|
});
|
|
15590
|
-
var AnswerRow = /*#__PURE__*/
|
|
15591
|
+
var AnswerRow = /*#__PURE__*/styled__default.div.withConfig({
|
|
15591
15592
|
displayName: "QuestionDialog__AnswerRow",
|
|
15592
15593
|
componentId: "sc-bxc5u0-5"
|
|
15593
15594
|
})(["display:flex;flex-wrap:wrap;justify-content:center;align-items:center;margin-bottom:0.5rem;height:22px;p{line-height:unset;margin-top:0;margin-bottom:0rem;}"]);
|
|
@@ -15637,22 +15638,22 @@ var NPCDialog = function NPCDialog(_ref) {
|
|
|
15637
15638
|
src: imagePath || img$7
|
|
15638
15639
|
})))));
|
|
15639
15640
|
};
|
|
15640
|
-
var Container$h = /*#__PURE__*/
|
|
15641
|
+
var Container$h = /*#__PURE__*/styled__default.div.withConfig({
|
|
15641
15642
|
displayName: "NPCDialog__Container",
|
|
15642
15643
|
componentId: "sc-1b4aw74-0"
|
|
15643
15644
|
})(["display:flex;width:100%;height:100%;box-sizing:border-box;justify-content:center;align-items:flex-start;position:relative;"]);
|
|
15644
|
-
var TextContainer$1 = /*#__PURE__*/
|
|
15645
|
+
var TextContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15645
15646
|
displayName: "NPCDialog__TextContainer",
|
|
15646
15647
|
componentId: "sc-1b4aw74-1"
|
|
15647
15648
|
})(["flex:", " 0 0;width:355px;"], function (_ref2) {
|
|
15648
15649
|
var flex = _ref2.flex;
|
|
15649
15650
|
return flex;
|
|
15650
15651
|
});
|
|
15651
|
-
var ThumbnailContainer = /*#__PURE__*/
|
|
15652
|
+
var ThumbnailContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15652
15653
|
displayName: "NPCDialog__ThumbnailContainer",
|
|
15653
15654
|
componentId: "sc-1b4aw74-2"
|
|
15654
15655
|
})(["flex:30% 0 0;display:flex;justify-content:flex-end;"]);
|
|
15655
|
-
var NPCThumbnail = /*#__PURE__*/
|
|
15656
|
+
var NPCThumbnail = /*#__PURE__*/styled__default.img.withConfig({
|
|
15656
15657
|
displayName: "NPCDialog__NPCThumbnail",
|
|
15657
15658
|
componentId: "sc-1b4aw74-3"
|
|
15658
15659
|
})(["image-rendering:pixelated;height:128px;width:128px;"]);
|
|
@@ -15735,26 +15736,26 @@ var NPCMultiDialog = function NPCMultiDialog(_ref) {
|
|
|
15735
15736
|
src: img$6
|
|
15736
15737
|
}))), ")"));
|
|
15737
15738
|
};
|
|
15738
|
-
var Container$i = /*#__PURE__*/
|
|
15739
|
+
var Container$i = /*#__PURE__*/styled__default.div.withConfig({
|
|
15739
15740
|
displayName: "NPCMultiDialog__Container",
|
|
15740
15741
|
componentId: "sc-rvu5wg-0"
|
|
15741
15742
|
})(["display:flex;width:100%;height:100%;box-sizing:border-box;justify-content:center;align-items:flex-start;position:relative;"]);
|
|
15742
|
-
var TextContainer$2 = /*#__PURE__*/
|
|
15743
|
+
var TextContainer$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15743
15744
|
displayName: "NPCMultiDialog__TextContainer",
|
|
15744
15745
|
componentId: "sc-rvu5wg-1"
|
|
15745
15746
|
})(["flex:", " 0 0;width:355px;"], function (_ref2) {
|
|
15746
15747
|
var flex = _ref2.flex;
|
|
15747
15748
|
return flex;
|
|
15748
15749
|
});
|
|
15749
|
-
var ThumbnailContainer$1 = /*#__PURE__*/
|
|
15750
|
+
var ThumbnailContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15750
15751
|
displayName: "NPCMultiDialog__ThumbnailContainer",
|
|
15751
15752
|
componentId: "sc-rvu5wg-2"
|
|
15752
15753
|
})(["flex:30% 0 0;display:flex;justify-content:flex-end;"]);
|
|
15753
|
-
var NPCThumbnail$1 = /*#__PURE__*/
|
|
15754
|
+
var NPCThumbnail$1 = /*#__PURE__*/styled__default.img.withConfig({
|
|
15754
15755
|
displayName: "NPCMultiDialog__NPCThumbnail",
|
|
15755
15756
|
componentId: "sc-rvu5wg-3"
|
|
15756
15757
|
})(["image-rendering:pixelated;height:128px;width:128px;"]);
|
|
15757
|
-
var PressSpaceIndicator$1 = /*#__PURE__*/
|
|
15758
|
+
var PressSpaceIndicator$1 = /*#__PURE__*/styled__default.img.withConfig({
|
|
15758
15759
|
displayName: "NPCMultiDialog__PressSpaceIndicator",
|
|
15759
15760
|
componentId: "sc-rvu5wg-4"
|
|
15760
15761
|
})(["position:absolute;right:", ";bottom:1rem;height:20.7px;image-rendering:-webkit-optimize-contrast;"], function (_ref3) {
|
|
@@ -15813,7 +15814,7 @@ var HistoryDialog = function HistoryDialog(_ref) {
|
|
|
15813
15814
|
type: exports.NPCDialogType.TextOnly
|
|
15814
15815
|
})));
|
|
15815
15816
|
};
|
|
15816
|
-
var BackgroundContainer = /*#__PURE__*/
|
|
15817
|
+
var BackgroundContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15817
15818
|
displayName: "HistoryDialog__BackgroundContainer",
|
|
15818
15819
|
componentId: "sc-u6oe75-0"
|
|
15819
15820
|
})(["width:100%;height:100%;background-image:url(", ");background-size:", ";display:flex;justify-content:space-evenly;align-items:center;"], function (props) {
|
|
@@ -15821,7 +15822,7 @@ var BackgroundContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
15821
15822
|
}, function (props) {
|
|
15822
15823
|
return props.imgPath ? 'cover' : 'auto';
|
|
15823
15824
|
});
|
|
15824
|
-
var DialogContainer = /*#__PURE__*/
|
|
15825
|
+
var DialogContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15825
15826
|
displayName: "HistoryDialog__DialogContainer",
|
|
15826
15827
|
componentId: "sc-u6oe75-1"
|
|
15827
15828
|
})(["display:flex;justify-content:center;padding-top:200px;"]);
|
|
@@ -15889,15 +15890,15 @@ var ImageCarousel = function ImageCarousel(_ref) {
|
|
|
15889
15890
|
onPointerDown: onCloseButton
|
|
15890
15891
|
}, "X"));
|
|
15891
15892
|
};
|
|
15892
|
-
var CarouselWrapper = /*#__PURE__*/
|
|
15893
|
+
var CarouselWrapper = /*#__PURE__*/styled__default(DraggableContainer).withConfig({
|
|
15893
15894
|
displayName: "ImageCarousel__CarouselWrapper",
|
|
15894
15895
|
componentId: "sc-jl6f8-0"
|
|
15895
15896
|
})(["width:100%;height:100%;"]);
|
|
15896
|
-
var ArrowContainer = /*#__PURE__*/
|
|
15897
|
+
var ArrowContainer = /*#__PURE__*/styled__default.span.withConfig({
|
|
15897
15898
|
displayName: "ImageCarousel__ArrowContainer",
|
|
15898
15899
|
componentId: "sc-jl6f8-1"
|
|
15899
15900
|
})(["display:flex;height:100%;align-items:center;"]);
|
|
15900
|
-
var BackgroundImage = /*#__PURE__*/
|
|
15901
|
+
var BackgroundImage = /*#__PURE__*/styled__default.div.withConfig({
|
|
15901
15902
|
displayName: "ImageCarousel__BackgroundImage",
|
|
15902
15903
|
componentId: "sc-jl6f8-2"
|
|
15903
15904
|
})(["background-image:url(", ");background-repeat:no-repeat;background-attachment:fixed;background-size:contain;background-position:center;width:100%;height:", ";"], function (props) {
|
|
@@ -15905,7 +15906,7 @@ var BackgroundImage = /*#__PURE__*/styled.div.withConfig({
|
|
|
15905
15906
|
}, function (props) {
|
|
15906
15907
|
return props.isTextFixed ? '80%' : '100%';
|
|
15907
15908
|
});
|
|
15908
|
-
var Description$1 = /*#__PURE__*/
|
|
15909
|
+
var Description$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15909
15910
|
displayName: "ImageCarousel__Description",
|
|
15910
15911
|
componentId: "sc-jl6f8-3"
|
|
15911
15912
|
})(["width:100%;height:", ";display:flex;align-items:", ";p{background-color:", ";border-radius:5px;text-align:justify;height:auto;}"], function (props) {
|
|
@@ -15915,11 +15916,95 @@ var Description$1 = /*#__PURE__*/styled.div.withConfig({
|
|
|
15915
15916
|
}, function (props) {
|
|
15916
15917
|
return props.isTextFixed ? 'none' : 'rgba(0, 0, 0, 0.6)';
|
|
15917
15918
|
});
|
|
15918
|
-
var CloseButton$3 = /*#__PURE__*/
|
|
15919
|
+
var CloseButton$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
15919
15920
|
displayName: "ImageCarousel__CloseButton",
|
|
15920
15921
|
componentId: "sc-jl6f8-4"
|
|
15921
15922
|
})(["position:absolute;top:3px;right:0px;color:white;z-index:22;font-size:1.5rem;@media (max-width:950px){font-size:1.7rem;padding:12px;}"]);
|
|
15922
15923
|
|
|
15924
|
+
var SimpleImageCarousel = function SimpleImageCarousel(_ref) {
|
|
15925
|
+
var basePath = _ref.basePath,
|
|
15926
|
+
imagesSrc = _ref.imagesSrc,
|
|
15927
|
+
styles = _ref.styles,
|
|
15928
|
+
_ref$autoCycle = _ref.autoCycle,
|
|
15929
|
+
autoCycle = _ref$autoCycle === void 0 ? false : _ref$autoCycle,
|
|
15930
|
+
_ref$autoCycleDelay = _ref.autoCycleDelay,
|
|
15931
|
+
autoCycleDelay = _ref$autoCycleDelay === void 0 ? 3000 : _ref$autoCycleDelay,
|
|
15932
|
+
_ref$stopAutoCyclingO = _ref.stopAutoCyclingOnInteraction,
|
|
15933
|
+
stopAutoCyclingOnInteraction = _ref$stopAutoCyclingO === void 0 ? false : _ref$stopAutoCyclingO;
|
|
15934
|
+
var _useState = React.useState(0),
|
|
15935
|
+
currentImage = _useState[0],
|
|
15936
|
+
setCurrentImage = _useState[1];
|
|
15937
|
+
var isInteracted = React.useRef(false);
|
|
15938
|
+
React.useEffect(function () {
|
|
15939
|
+
var timer = null;
|
|
15940
|
+
if (autoCycle && !isInteracted.current) {
|
|
15941
|
+
timer = setInterval(function () {
|
|
15942
|
+
if (stopAutoCyclingOnInteraction && isInteracted.current) {
|
|
15943
|
+
clearInterval(timer);
|
|
15944
|
+
return;
|
|
15945
|
+
}
|
|
15946
|
+
handleRightClick();
|
|
15947
|
+
}, autoCycleDelay);
|
|
15948
|
+
}
|
|
15949
|
+
return function () {
|
|
15950
|
+
if (timer) {
|
|
15951
|
+
clearInterval(timer);
|
|
15952
|
+
}
|
|
15953
|
+
};
|
|
15954
|
+
}, [autoCycle, autoCycleDelay]);
|
|
15955
|
+
var handleLeftClick = function handleLeftClick() {
|
|
15956
|
+
isInteracted.current = true;
|
|
15957
|
+
setCurrentImage(function (oldImage) {
|
|
15958
|
+
return oldImage === 0 ? imagesSrc.length - 1 : oldImage - 1;
|
|
15959
|
+
});
|
|
15960
|
+
};
|
|
15961
|
+
var handleRightClick = function handleRightClick() {
|
|
15962
|
+
isInteracted.current = true;
|
|
15963
|
+
setCurrentImage(function (oldImage) {
|
|
15964
|
+
return oldImage === imagesSrc.length - 1 ? 0 : oldImage + 1;
|
|
15965
|
+
});
|
|
15966
|
+
};
|
|
15967
|
+
var hasMoreThanOneImage = imagesSrc.length > 1;
|
|
15968
|
+
return React__default.createElement(ImageContainer, {
|
|
15969
|
+
style: styles
|
|
15970
|
+
}, hasMoreThanOneImage && React__default.createElement(CustomLeftArrow, {
|
|
15971
|
+
direction: "left",
|
|
15972
|
+
onPointerDown: handleLeftClick
|
|
15973
|
+
}), hasMoreThanOneImage && React__default.createElement(CustomRightArrow, {
|
|
15974
|
+
direction: "right",
|
|
15975
|
+
onPointerDown: handleRightClick
|
|
15976
|
+
}), React__default.createElement(Carousel, null, React__default.createElement(FadeInCarouselImg, {
|
|
15977
|
+
key: currentImage,
|
|
15978
|
+
src: basePath + "/" + imagesSrc[currentImage],
|
|
15979
|
+
alt: imagesSrc[currentImage]
|
|
15980
|
+
})));
|
|
15981
|
+
};
|
|
15982
|
+
var ImageContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
15983
|
+
displayName: "SimpleImageCarousel__ImageContainer",
|
|
15984
|
+
componentId: "sc-gdvbly-0"
|
|
15985
|
+
})(["flex:1;display:flex;justify-content:center;align-items:center;height:100%;margin-right:0.5rem;max-width:400px;position:relative;"]);
|
|
15986
|
+
var CustomLeftArrow = /*#__PURE__*/styled__default(SelectArrow).withConfig({
|
|
15987
|
+
displayName: "SimpleImageCarousel__CustomLeftArrow",
|
|
15988
|
+
componentId: "sc-gdvbly-1"
|
|
15989
|
+
})(["position:absolute;left:-0.5rem;top:50%;transform:translateY(-50%);"]);
|
|
15990
|
+
var CustomRightArrow = /*#__PURE__*/styled__default(SelectArrow).withConfig({
|
|
15991
|
+
displayName: "SimpleImageCarousel__CustomRightArrow",
|
|
15992
|
+
componentId: "sc-gdvbly-2"
|
|
15993
|
+
})(["position:absolute;right:-2.5rem;top:50%;transform:translateY(-50%);"]);
|
|
15994
|
+
var Carousel = /*#__PURE__*/styled__default.div.withConfig({
|
|
15995
|
+
displayName: "SimpleImageCarousel__Carousel",
|
|
15996
|
+
componentId: "sc-gdvbly-3"
|
|
15997
|
+
})(["display:flex;"]);
|
|
15998
|
+
var CarouselImg = /*#__PURE__*/styled__default.img.withConfig({
|
|
15999
|
+
displayName: "SimpleImageCarousel__CarouselImg",
|
|
16000
|
+
componentId: "sc-gdvbly-4"
|
|
16001
|
+
})(["flex:0 0 auto;width:100%;height:auto;margin:0 1rem;border-radius:5px;box-shadow:0 0 10px 0 rgba(0,0,0,0.2);scroll-snap-align:start;margin-right:3rem;"]);
|
|
16002
|
+
var fadeIn = /*#__PURE__*/styled.keyframes(["from{opacity:0;}to{opacity:1;}"]);
|
|
16003
|
+
var FadeInCarouselImg = /*#__PURE__*/styled__default(CarouselImg).withConfig({
|
|
16004
|
+
displayName: "SimpleImageCarousel__FadeInCarouselImg",
|
|
16005
|
+
componentId: "sc-gdvbly-5"
|
|
16006
|
+
})(["animation:", " 0.5s;"], fadeIn);
|
|
16007
|
+
|
|
15923
16008
|
var SlotsContainer = function SlotsContainer(_ref) {
|
|
15924
16009
|
var children = _ref.children,
|
|
15925
16010
|
title = _ref.title,
|
|
@@ -16092,18 +16177,18 @@ var ShortcutsSetter = function ShortcutsSetter(_ref) {
|
|
|
16092
16177
|
}, getContent(i));
|
|
16093
16178
|
})));
|
|
16094
16179
|
};
|
|
16095
|
-
var Container$j = /*#__PURE__*/
|
|
16180
|
+
var Container$j = /*#__PURE__*/styled__default.div.withConfig({
|
|
16096
16181
|
displayName: "ShortcutsSetter__Container",
|
|
16097
16182
|
componentId: "sc-xuouuf-0"
|
|
16098
16183
|
})(["p{margin:0;margin-left:0.5rem;font-size:10px;}width:100%;"]);
|
|
16099
|
-
var Shortcut = /*#__PURE__*/
|
|
16184
|
+
var Shortcut = /*#__PURE__*/styled__default.button.withConfig({
|
|
16100
16185
|
displayName: "ShortcutsSetter__Shortcut",
|
|
16101
16186
|
componentId: "sc-xuouuf-1"
|
|
16102
16187
|
})(["width:2.4rem;height:2.4rem;background-color:", ";border:2px solid ", ";border-radius:50%;text-transform:uppercase;font-size:0.7rem;font-weight:bold;display:flex;align-items:center;justify-content:center;span{margin-top:4px;}&:hover,&:focus{background-color:", ";}&:active{background-color:", ";}&:disabled{opacity:0.5;}"], uiColors.lightGray, function (_ref2) {
|
|
16103
16188
|
var isBeingSet = _ref2.isBeingSet;
|
|
16104
16189
|
return isBeingSet ? uiColors.yellow : uiColors.darkGray;
|
|
16105
16190
|
}, uiColors.darkGray, uiColors.gray);
|
|
16106
|
-
var List = /*#__PURE__*/
|
|
16191
|
+
var List = /*#__PURE__*/styled__default.div.withConfig({
|
|
16107
16192
|
displayName: "ShortcutsSetter__List",
|
|
16108
16193
|
componentId: "sc-xuouuf-2"
|
|
16109
16194
|
})(["width:100%;display:flex;align-items:center;gap:0.4rem;box-sizing:border-box;margin:0 !important;flex-wrap:wrap;padding:0.3rem;padding-bottom:1rem;"]);
|
|
@@ -16167,7 +16252,7 @@ var RangeSlider = function RangeSlider(_ref) {
|
|
|
16167
16252
|
className: "rpgui-cursor-point"
|
|
16168
16253
|
}));
|
|
16169
16254
|
};
|
|
16170
|
-
var Input$1 = /*#__PURE__*/
|
|
16255
|
+
var Input$1 = /*#__PURE__*/styled__default.input.withConfig({
|
|
16171
16256
|
displayName: "RangeSlider__Input",
|
|
16172
16257
|
componentId: "sc-v8mte9-0"
|
|
16173
16258
|
})(["opacity:0;position:absolute;width:100%;height:100%;top:0;left:0;margin-top:-5px;"]);
|
|
@@ -16245,19 +16330,19 @@ var ItemQuantitySelector = function ItemQuantitySelector(_ref) {
|
|
|
16245
16330
|
type: "submit"
|
|
16246
16331
|
}, "Confirm")));
|
|
16247
16332
|
};
|
|
16248
|
-
var StyledContainer = /*#__PURE__*/
|
|
16333
|
+
var StyledContainer = /*#__PURE__*/styled__default(RPGUIContainer).withConfig({
|
|
16249
16334
|
displayName: "ItemQuantitySelector__StyledContainer",
|
|
16250
16335
|
componentId: "sc-yfdtpn-0"
|
|
16251
16336
|
})(["display:flex;flex-direction:column;align-items:center;"]);
|
|
16252
|
-
var StyledForm = /*#__PURE__*/
|
|
16337
|
+
var StyledForm = /*#__PURE__*/styled__default.form.withConfig({
|
|
16253
16338
|
displayName: "ItemQuantitySelector__StyledForm",
|
|
16254
16339
|
componentId: "sc-yfdtpn-1"
|
|
16255
16340
|
})(["display:flex;flex-direction:column;align-items:center;width:100%;"]);
|
|
16256
|
-
var StyledInput = /*#__PURE__*/
|
|
16341
|
+
var StyledInput = /*#__PURE__*/styled__default(Input).withConfig({
|
|
16257
16342
|
displayName: "ItemQuantitySelector__StyledInput",
|
|
16258
16343
|
componentId: "sc-yfdtpn-2"
|
|
16259
16344
|
})(["text-align:center;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}&[type='number']{-moz-appearance:textfield;}"]);
|
|
16260
|
-
var CloseButton$4 = /*#__PURE__*/
|
|
16345
|
+
var CloseButton$4 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16261
16346
|
displayName: "ItemQuantitySelector__CloseButton",
|
|
16262
16347
|
componentId: "sc-yfdtpn-3"
|
|
16263
16348
|
})(["position:absolute;top:3px;right:0px;color:white;z-index:22;font-size:0.8rem;"]);
|
|
@@ -16285,7 +16370,7 @@ var ItemQuantitySelectorModal = function ItemQuantitySelectorModal(_ref) {
|
|
|
16285
16370
|
}
|
|
16286
16371
|
})));
|
|
16287
16372
|
};
|
|
16288
|
-
var QuantitySelectorContainer = /*#__PURE__*/
|
|
16373
|
+
var QuantitySelectorContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16289
16374
|
displayName: "ItemQuantitySelectorModal__QuantitySelectorContainer",
|
|
16290
16375
|
componentId: "sc-1b8cosc-0"
|
|
16291
16376
|
})(["position:absolute;top:0;left:0;width:100vw;height:100vh;z-index:100;display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,0.5);"]);
|
|
@@ -16453,7 +16538,7 @@ var ItemContainer$1 = function ItemContainer(_ref) {
|
|
|
16453
16538
|
setQuantitySelect: setQuantitySelect
|
|
16454
16539
|
}));
|
|
16455
16540
|
};
|
|
16456
|
-
var ItemsContainer = /*#__PURE__*/
|
|
16541
|
+
var ItemsContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16457
16542
|
displayName: "ItemContainer__ItemsContainer",
|
|
16458
16543
|
componentId: "sc-15y5p9l-0"
|
|
16459
16544
|
})(["display:flex;justify-content:center;flex-wrap:wrap;max-height:270px;overflow-y:", ";overflow-x:hidden;width:415px;"], function (_ref2) {
|
|
@@ -16498,11 +16583,11 @@ var LeaderboardTable = function LeaderboardTable(props) {
|
|
|
16498
16583
|
}, entry.level))));
|
|
16499
16584
|
})));
|
|
16500
16585
|
};
|
|
16501
|
-
var TableRowWrapper = /*#__PURE__*/
|
|
16586
|
+
var TableRowWrapper = /*#__PURE__*/styled__default.tr.withConfig({
|
|
16502
16587
|
displayName: "LeaderboardTable__TableRowWrapper",
|
|
16503
16588
|
componentId: "sc-kk017f-0"
|
|
16504
16589
|
})(["margin:auto;padding:0.5rem;&:hover{background-color:", ";}p{font-size:0.8rem;}"], uiColors.darkGray);
|
|
16505
|
-
var TableRowValue = /*#__PURE__*/
|
|
16590
|
+
var TableRowValue = /*#__PURE__*/styled__default.td.withConfig({
|
|
16506
16591
|
displayName: "LeaderboardTable__TableRowValue",
|
|
16507
16592
|
componentId: "sc-kk017f-1"
|
|
16508
16593
|
})(["padding:0 20px;"]);
|
|
@@ -16562,19 +16647,19 @@ var Leaderboard = function Leaderboard(props) {
|
|
|
16562
16647
|
rankType: rankType
|
|
16563
16648
|
}))));
|
|
16564
16649
|
};
|
|
16565
|
-
var WrapperContainer = /*#__PURE__*/
|
|
16650
|
+
var WrapperContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16566
16651
|
displayName: "Leaderboard__WrapperContainer",
|
|
16567
16652
|
componentId: "sc-1wdsq7i-0"
|
|
16568
16653
|
})(["display:grid;grid-template-columns:50% 50%;justify-content:space-between;width:calc(100% - 40px);margin-left:10px;.rpgui-content .rpgui-dropdown-imp-header{padding:0px 10px 0 !important;}"]);
|
|
16569
|
-
var StyledDropdown = /*#__PURE__*/
|
|
16654
|
+
var StyledDropdown = /*#__PURE__*/styled__default(Dropdown).withConfig({
|
|
16570
16655
|
displayName: "Leaderboard__StyledDropdown",
|
|
16571
16656
|
componentId: "sc-1wdsq7i-1"
|
|
16572
16657
|
})(["margin:3px !important;width:170px !important;"]);
|
|
16573
|
-
var ItemComponentScrollWrapper = /*#__PURE__*/
|
|
16658
|
+
var ItemComponentScrollWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16574
16659
|
displayName: "Leaderboard__ItemComponentScrollWrapper",
|
|
16575
16660
|
componentId: "sc-1wdsq7i-2"
|
|
16576
16661
|
})(["overflow-y:scroll;height:390px;width:100%;margin-top:1rem;@media (max-width:950px){height:250px;}"]);
|
|
16577
|
-
var TableWrapper = /*#__PURE__*/
|
|
16662
|
+
var TableWrapper = /*#__PURE__*/styled__default.table.withConfig({
|
|
16578
16663
|
displayName: "Leaderboard__TableWrapper",
|
|
16579
16664
|
componentId: "sc-1wdsq7i-3"
|
|
16580
16665
|
})(["margin:auto;width:100%;"]);
|
|
@@ -16601,7 +16686,7 @@ var ListMenu = function ListMenu(_ref) {
|
|
|
16601
16686
|
}, (params == null ? void 0 : params.text) || 'No text');
|
|
16602
16687
|
})));
|
|
16603
16688
|
};
|
|
16604
|
-
var Container$k = /*#__PURE__*/
|
|
16689
|
+
var Container$k = /*#__PURE__*/styled__default.div.withConfig({
|
|
16605
16690
|
displayName: "ListMenu__Container",
|
|
16606
16691
|
componentId: "sc-i9097t-0"
|
|
16607
16692
|
})(["display:flex;flex-direction:column;width:100%;justify-content:start;align-items:flex-start;position:absolute;top:", "px;left:", "px;li{font-size:", ";}"], function (props) {
|
|
@@ -16609,7 +16694,7 @@ var Container$k = /*#__PURE__*/styled.div.withConfig({
|
|
|
16609
16694
|
}, function (props) {
|
|
16610
16695
|
return props.x || 0;
|
|
16611
16696
|
}, uiFonts.size.xsmall);
|
|
16612
|
-
var ListElement$5 = /*#__PURE__*/
|
|
16697
|
+
var ListElement$5 = /*#__PURE__*/styled__default.li.withConfig({
|
|
16613
16698
|
displayName: "ListMenu__ListElement",
|
|
16614
16699
|
componentId: "sc-i9097t-1"
|
|
16615
16700
|
})(["margin-right:0.5rem;"]);
|
|
@@ -16634,11 +16719,11 @@ var Pager = function Pager(_ref) {
|
|
|
16634
16719
|
}
|
|
16635
16720
|
}, '>')));
|
|
16636
16721
|
};
|
|
16637
|
-
var Container$l = /*#__PURE__*/
|
|
16722
|
+
var Container$l = /*#__PURE__*/styled__default.div.withConfig({
|
|
16638
16723
|
displayName: "Pager__Container",
|
|
16639
16724
|
componentId: "sc-1ekmf50-0"
|
|
16640
16725
|
})(["display:flex;flex-direction:column;align-items:center;p{margin:0;font-size:", ";}"], uiFonts.size.xsmall);
|
|
16641
|
-
var PagerContainer = /*#__PURE__*/
|
|
16726
|
+
var PagerContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16642
16727
|
displayName: "Pager__PagerContainer",
|
|
16643
16728
|
componentId: "sc-1ekmf50-1"
|
|
16644
16729
|
})(["display:flex;justify-content:center;align-items:center;gap:5px;p{margin:0;}div{color:white;}button{width:40px;height:40px;background-color:", ";border:none;border-radius:5px;color:white;:hover{background-color:", ";}:disabled{opacity:0.5;}&.active{background-color:", ";font-weight:bold;color:black;}}"], uiColors.darkGray, uiColors.lightGray, uiColors.orange);
|
|
@@ -16666,19 +16751,19 @@ var ConfirmModal = function ConfirmModal(_ref) {
|
|
|
16666
16751
|
onPointerDown: onConfirm
|
|
16667
16752
|
}, "Yes"))))));
|
|
16668
16753
|
};
|
|
16669
|
-
var Background = /*#__PURE__*/
|
|
16754
|
+
var Background = /*#__PURE__*/styled__default.div.withConfig({
|
|
16670
16755
|
displayName: "ConfirmModal__Background",
|
|
16671
16756
|
componentId: "sc-11qkyu1-0"
|
|
16672
16757
|
})(["position:absolute;width:100%;height:100%;background-color:#000000;opacity:0.5;left:0;top:0;z-index:1000;"]);
|
|
16673
|
-
var Container$m = /*#__PURE__*/
|
|
16758
|
+
var Container$m = /*#__PURE__*/styled__default.div.withConfig({
|
|
16674
16759
|
displayName: "ConfirmModal__Container",
|
|
16675
16760
|
componentId: "sc-11qkyu1-1"
|
|
16676
16761
|
})(["position:absolute;width:100%;height:100%;left:0;top:0;display:flex;justify-content:center;align-items:center;z-index:1001;"]);
|
|
16677
|
-
var Wrapper$1 = /*#__PURE__*/
|
|
16762
|
+
var Wrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16678
16763
|
displayName: "ConfirmModal__Wrapper",
|
|
16679
16764
|
componentId: "sc-11qkyu1-2"
|
|
16680
16765
|
})(["p{margin:0;}"]);
|
|
16681
|
-
var ButtonsWrapper = /*#__PURE__*/
|
|
16766
|
+
var ButtonsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16682
16767
|
displayName: "ConfirmModal__ButtonsWrapper",
|
|
16683
16768
|
componentId: "sc-11qkyu1-3"
|
|
16684
16769
|
})(["display:flex;justify-content:flex-end;gap:5px;margin-top:5px;.cancel-button{filter:grayscale(0.7);}"]);
|
|
@@ -16734,39 +16819,39 @@ var MarketplaceRows = function MarketplaceRows(_ref) {
|
|
|
16734
16819
|
}
|
|
16735
16820
|
}, onMarketPlaceItemBuy ? 'Buy' : 'Remove'))));
|
|
16736
16821
|
};
|
|
16737
|
-
var MarketplaceWrapper = /*#__PURE__*/
|
|
16822
|
+
var MarketplaceWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16738
16823
|
displayName: "MarketplaceRows__MarketplaceWrapper",
|
|
16739
16824
|
componentId: "sc-wmpr1o-0"
|
|
16740
16825
|
})(["margin:auto;display:flex;justify-content:space-between;padding:0.5rem;&:hover{background-color:", ";}p{font-size:0.8rem;}"], uiColors.darkGray);
|
|
16741
|
-
var QuantityContainer = /*#__PURE__*/
|
|
16826
|
+
var QuantityContainer = /*#__PURE__*/styled__default.p.withConfig({
|
|
16742
16827
|
displayName: "MarketplaceRows__QuantityContainer",
|
|
16743
16828
|
componentId: "sc-wmpr1o-1"
|
|
16744
16829
|
})(["position:absolute;display:block;top:15px;left:25px;font-size:", " !important;"], uiFonts.size.xsmall);
|
|
16745
|
-
var Flex$1 = /*#__PURE__*/
|
|
16830
|
+
var Flex$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16746
16831
|
displayName: "MarketplaceRows__Flex",
|
|
16747
16832
|
componentId: "sc-wmpr1o-2"
|
|
16748
16833
|
})(["display:flex;gap:24px;"]);
|
|
16749
|
-
var ItemIconContainer = /*#__PURE__*/
|
|
16834
|
+
var ItemIconContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16750
16835
|
displayName: "MarketplaceRows__ItemIconContainer",
|
|
16751
16836
|
componentId: "sc-wmpr1o-3"
|
|
16752
16837
|
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
16753
|
-
var GoldContainer = /*#__PURE__*/
|
|
16838
|
+
var GoldContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16754
16839
|
displayName: "MarketplaceRows__GoldContainer",
|
|
16755
16840
|
componentId: "sc-wmpr1o-4"
|
|
16756
16841
|
})(["position:relative;top:-0.5rem;left:0.5rem;"]);
|
|
16757
|
-
var SpriteContainer$1 = /*#__PURE__*/
|
|
16842
|
+
var SpriteContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16758
16843
|
displayName: "MarketplaceRows__SpriteContainer",
|
|
16759
16844
|
componentId: "sc-wmpr1o-5"
|
|
16760
16845
|
})(["position:relative;left:0.5rem;"]);
|
|
16761
|
-
var PriceValue = /*#__PURE__*/
|
|
16846
|
+
var PriceValue = /*#__PURE__*/styled__default.div.withConfig({
|
|
16762
16847
|
displayName: "MarketplaceRows__PriceValue",
|
|
16763
16848
|
componentId: "sc-wmpr1o-6"
|
|
16764
16849
|
})(["margin-left:40px;"]);
|
|
16765
|
-
var ButtonContainer$2 = /*#__PURE__*/
|
|
16850
|
+
var ButtonContainer$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16766
16851
|
displayName: "MarketplaceRows__ButtonContainer",
|
|
16767
16852
|
componentId: "sc-wmpr1o-7"
|
|
16768
16853
|
})(["margin:auto;"]);
|
|
16769
|
-
var RarityContainer = /*#__PURE__*/
|
|
16854
|
+
var RarityContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
16770
16855
|
displayName: "MarketplaceRows__RarityContainer",
|
|
16771
16856
|
componentId: "sc-wmpr1o-8"
|
|
16772
16857
|
})(["border-color:", ";box-shadow:", " inset,", ";width:32px;height:32px;"], function (_ref2) {
|
|
@@ -16971,27 +17056,27 @@ var BuyPanel = function BuyPanel(_ref) {
|
|
|
16971
17056
|
});
|
|
16972
17057
|
})));
|
|
16973
17058
|
};
|
|
16974
|
-
var InputWrapper = /*#__PURE__*/
|
|
17059
|
+
var InputWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16975
17060
|
displayName: "BuyPanel__InputWrapper",
|
|
16976
17061
|
componentId: "sc-1si8t7i-0"
|
|
16977
17062
|
})(["width:95%;display:flex !important;justify-content:flex-start;align-items:center;margin:auto;p{width:auto;margin-right:20px;}input{width:68%;height:10px;}"]);
|
|
16978
|
-
var OptionsWrapper = /*#__PURE__*/
|
|
17063
|
+
var OptionsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16979
17064
|
displayName: "BuyPanel__OptionsWrapper",
|
|
16980
17065
|
componentId: "sc-1si8t7i-1"
|
|
16981
17066
|
})(["width:100%;height:100px;"]);
|
|
16982
|
-
var FilterInputsWrapper = /*#__PURE__*/
|
|
17067
|
+
var FilterInputsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
16983
17068
|
displayName: "BuyPanel__FilterInputsWrapper",
|
|
16984
17069
|
componentId: "sc-1si8t7i-2"
|
|
16985
17070
|
})(["width:95%;display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;margin-left:10px;gap:5px;color:white;flex-wrap:wrap;p{width:auto;margin:0;}input{width:75px;height:10px;}.big-input{width:130px;}"]);
|
|
16986
|
-
var WrapperContainer$1 = /*#__PURE__*/
|
|
17071
|
+
var WrapperContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16987
17072
|
displayName: "BuyPanel__WrapperContainer",
|
|
16988
17073
|
componentId: "sc-1si8t7i-3"
|
|
16989
17074
|
})(["display:grid;grid-template-columns:40% 30% 30%;justify-content:space-between;width:calc(100% - 40px);margin-left:10px;.rpgui-content .rpgui-dropdown-imp-header{padding:0px 10px 0 !important;}"]);
|
|
16990
|
-
var ItemComponentScrollWrapper$1 = /*#__PURE__*/
|
|
17075
|
+
var ItemComponentScrollWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
16991
17076
|
displayName: "BuyPanel__ItemComponentScrollWrapper",
|
|
16992
17077
|
componentId: "sc-1si8t7i-4"
|
|
16993
17078
|
})(["overflow-y:scroll;height:390px;width:100%;margin-top:1rem;@media (max-width:950px){height:250px;}"]);
|
|
16994
|
-
var StyledDropdown$1 = /*#__PURE__*/
|
|
17079
|
+
var StyledDropdown$1 = /*#__PURE__*/styled__default(Dropdown).withConfig({
|
|
16995
17080
|
displayName: "BuyPanel__StyledDropdown",
|
|
16996
17081
|
componentId: "sc-1si8t7i-5"
|
|
16997
17082
|
})(["margin:3px !important;width:170px !important;"]);
|
|
@@ -17111,35 +17196,35 @@ var ManagmentPanel = function ManagmentPanel(_ref) {
|
|
|
17111
17196
|
});
|
|
17112
17197
|
})));
|
|
17113
17198
|
};
|
|
17114
|
-
var Flex$2 = /*#__PURE__*/
|
|
17199
|
+
var Flex$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17115
17200
|
displayName: "ManagmentPanel__Flex",
|
|
17116
17201
|
componentId: "sc-1yyi6jn-0"
|
|
17117
17202
|
})(["display:flex;gap:5px;align-items:center;"]);
|
|
17118
|
-
var InputWrapper$1 = /*#__PURE__*/
|
|
17203
|
+
var InputWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17119
17204
|
displayName: "ManagmentPanel__InputWrapper",
|
|
17120
17205
|
componentId: "sc-1yyi6jn-1"
|
|
17121
17206
|
})(["width:95%;display:flex !important;justify-content:flex-start;align-items:center;margin:auto;p{width:auto;margin-right:20px;}input{width:68%;height:10px;}"]);
|
|
17122
|
-
var OptionsWrapper$1 = /*#__PURE__*/
|
|
17207
|
+
var OptionsWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17123
17208
|
displayName: "ManagmentPanel__OptionsWrapper",
|
|
17124
17209
|
componentId: "sc-1yyi6jn-2"
|
|
17125
17210
|
})(["width:100%;height:100px;display:flex;align-items:center;justify-content:space-around;"]);
|
|
17126
|
-
var InnerOptionsWrapper = /*#__PURE__*/
|
|
17211
|
+
var InnerOptionsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
17127
17212
|
displayName: "ManagmentPanel__InnerOptionsWrapper",
|
|
17128
17213
|
componentId: "sc-1yyi6jn-3"
|
|
17129
17214
|
})(["display:flex;justify-content:space-between;flex-direction:column;height:100%;"]);
|
|
17130
|
-
var ItemComponentScrollWrapper$2 = /*#__PURE__*/
|
|
17215
|
+
var ItemComponentScrollWrapper$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17131
17216
|
displayName: "ManagmentPanel__ItemComponentScrollWrapper",
|
|
17132
17217
|
componentId: "sc-1yyi6jn-4"
|
|
17133
17218
|
})(["overflow-y:scroll;height:390px;width:100%;margin-top:1rem;@media (max-width:950px){height:250px;}"]);
|
|
17134
|
-
var PriceInputWrapper = /*#__PURE__*/
|
|
17219
|
+
var PriceInputWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
17135
17220
|
displayName: "ManagmentPanel__PriceInputWrapper",
|
|
17136
17221
|
componentId: "sc-1yyi6jn-5"
|
|
17137
17222
|
})(["p{margin:0;}input{width:200px;}"]);
|
|
17138
|
-
var SellDescription = /*#__PURE__*/
|
|
17223
|
+
var SellDescription = /*#__PURE__*/styled__default.p.withConfig({
|
|
17139
17224
|
displayName: "ManagmentPanel__SellDescription",
|
|
17140
17225
|
componentId: "sc-1yyi6jn-6"
|
|
17141
17226
|
})(["margin:0;font-size:", " !important;"], uiFonts.size.xsmall);
|
|
17142
|
-
var AvailableGold = /*#__PURE__*/
|
|
17227
|
+
var AvailableGold = /*#__PURE__*/styled__default.div.withConfig({
|
|
17143
17228
|
displayName: "ManagmentPanel__AvailableGold",
|
|
17144
17229
|
componentId: "sc-1yyi6jn-7"
|
|
17145
17230
|
})(["height:100%;display:flex;flex-direction:column;justify-content:space-between;p{margin:0;color:", " !important;}.center{text-align:center;font-size:", " !important;color:", " !important;}"], function (props) {
|
|
@@ -17177,7 +17262,7 @@ var Marketplace = function Marketplace(props) {
|
|
|
17177
17262
|
}
|
|
17178
17263
|
}, "Go to your panel"), React__default.createElement(Pager, Object.assign({}, props)))));
|
|
17179
17264
|
};
|
|
17180
|
-
var PagerContainer$1 = /*#__PURE__*/
|
|
17265
|
+
var PagerContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17181
17266
|
displayName: "Marketplace__PagerContainer",
|
|
17182
17267
|
componentId: "sc-h904b1-0"
|
|
17183
17268
|
})(["display:flex;justify-content:space-between;align-items:center;width:calc(100% - 30px);"]);
|
|
@@ -17216,15 +17301,15 @@ var PartyCreate = function PartyCreate(_ref) {
|
|
|
17216
17301
|
}
|
|
17217
17302
|
}, "Cancel"))));
|
|
17218
17303
|
};
|
|
17219
|
-
var Wrapper$2 = /*#__PURE__*/
|
|
17304
|
+
var Wrapper$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17220
17305
|
displayName: "PartyCreate__Wrapper",
|
|
17221
17306
|
componentId: "sc-13brop0-0"
|
|
17222
17307
|
})(["display:flex;flex-direction:column;width:100%;"]);
|
|
17223
|
-
var Title$3 = /*#__PURE__*/
|
|
17308
|
+
var Title$3 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17224
17309
|
displayName: "PartyCreate__Title",
|
|
17225
17310
|
componentId: "sc-13brop0-1"
|
|
17226
17311
|
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
17227
|
-
var ButtonWrapper$1 = /*#__PURE__*/
|
|
17312
|
+
var ButtonWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17228
17313
|
displayName: "PartyCreate__ButtonWrapper",
|
|
17229
17314
|
componentId: "sc-13brop0-2"
|
|
17230
17315
|
})(["margin-top:10px;width:100%;display:flex;justify-content:space-around;align-items:center;.cancel-button{filter:grayscale(0.7);}"]);
|
|
@@ -17246,11 +17331,11 @@ var PartyRow = function PartyRow(_ref) {
|
|
|
17246
17331
|
buttonType: exports.ButtonTypes.RPGUIButton
|
|
17247
17332
|
}, "Join"));
|
|
17248
17333
|
};
|
|
17249
|
-
var PartyWrapper = /*#__PURE__*/
|
|
17334
|
+
var PartyWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
17250
17335
|
displayName: "PartyRows__PartyWrapper",
|
|
17251
17336
|
componentId: "sc-xzuhrw-0"
|
|
17252
17337
|
})(["width:100%;display:flex;align-items:center;justify-content:space-around;.cancel-button{filter:grayscale(0.7);}"]);
|
|
17253
|
-
var TextContainer$3 = /*#__PURE__*/
|
|
17338
|
+
var TextContainer$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17254
17339
|
displayName: "PartyRows__TextContainer",
|
|
17255
17340
|
componentId: "sc-xzuhrw-1"
|
|
17256
17341
|
})(["color:", ";"], uiColors.white);
|
|
@@ -17288,15 +17373,15 @@ var PartyDashboard = function PartyDashboard(_ref) {
|
|
|
17288
17373
|
});
|
|
17289
17374
|
})));
|
|
17290
17375
|
};
|
|
17291
|
-
var Wrapper$3 = /*#__PURE__*/
|
|
17376
|
+
var Wrapper$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17292
17377
|
displayName: "PartyDashboard__Wrapper",
|
|
17293
17378
|
componentId: "sc-16cm41r-0"
|
|
17294
17379
|
})(["display:flex;flex-direction:column;width:100%;"]);
|
|
17295
|
-
var RowsWrapper = /*#__PURE__*/
|
|
17380
|
+
var RowsWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
17296
17381
|
displayName: "PartyDashboard__RowsWrapper",
|
|
17297
17382
|
componentId: "sc-16cm41r-1"
|
|
17298
17383
|
})(["overflow-y:scroll;-webkit-overflow-scrolling:touch;width:100%;height:200px;"]);
|
|
17299
|
-
var Title$4 = /*#__PURE__*/
|
|
17384
|
+
var Title$4 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17300
17385
|
displayName: "PartyDashboard__Title",
|
|
17301
17386
|
componentId: "sc-16cm41r-2"
|
|
17302
17387
|
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
@@ -17310,11 +17395,11 @@ var PlayersRow = function PlayersRow(_ref) {
|
|
|
17310
17395
|
buttonType: exports.ButtonTypes.RPGUIButton
|
|
17311
17396
|
}, "Invite")) : React__default.createElement(TextContainer$4, null, "Invited"));
|
|
17312
17397
|
};
|
|
17313
|
-
var PartyWrapper$1 = /*#__PURE__*/
|
|
17398
|
+
var PartyWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17314
17399
|
displayName: "PlayersRows__PartyWrapper",
|
|
17315
17400
|
componentId: "sc-1ji7yc1-0"
|
|
17316
17401
|
})(["width:100%;display:flex;align-items:center;justify-content:space-around;flex-direction:row;flex:auto;"]);
|
|
17317
|
-
var TextContainer$4 = /*#__PURE__*/
|
|
17402
|
+
var TextContainer$4 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17318
17403
|
displayName: "PlayersRows__TextContainer",
|
|
17319
17404
|
componentId: "sc-1ji7yc1-1"
|
|
17320
17405
|
})(["color:", ";flex:auto;margin:auto;"], uiColors.white);
|
|
@@ -17348,15 +17433,15 @@ var PartyInvite = function PartyInvite(_ref) {
|
|
|
17348
17433
|
});
|
|
17349
17434
|
})));
|
|
17350
17435
|
};
|
|
17351
|
-
var Wrapper$4 = /*#__PURE__*/
|
|
17436
|
+
var Wrapper$4 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17352
17437
|
displayName: "PartyInvite__Wrapper",
|
|
17353
17438
|
componentId: "sc-eu8ggt-0"
|
|
17354
17439
|
})(["display:flex;flex-direction:column;width:100%;"]);
|
|
17355
|
-
var Title$5 = /*#__PURE__*/
|
|
17440
|
+
var Title$5 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17356
17441
|
displayName: "PartyInvite__Title",
|
|
17357
17442
|
componentId: "sc-eu8ggt-1"
|
|
17358
17443
|
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
17359
|
-
var RowsWrapper$1 = /*#__PURE__*/
|
|
17444
|
+
var RowsWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17360
17445
|
displayName: "PartyInvite__RowsWrapper",
|
|
17361
17446
|
componentId: "sc-eu8ggt-2"
|
|
17362
17447
|
})(["overflow-y:scroll;-webkit-overflow-scrolling:touch;width:100%;height:200px;"]);
|
|
@@ -17384,11 +17469,11 @@ var PartyManagerRow = function PartyManagerRow(_ref) {
|
|
|
17384
17469
|
}
|
|
17385
17470
|
}, "New Leader"));
|
|
17386
17471
|
};
|
|
17387
|
-
var PartyWrapper$2 = /*#__PURE__*/
|
|
17472
|
+
var PartyWrapper$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17388
17473
|
displayName: "PartyManagerRows__PartyWrapper",
|
|
17389
17474
|
componentId: "sc-uqajew-0"
|
|
17390
17475
|
})(["width:100%;display:flex;align-items:center;justify-content:space-around;.cancel-button{filter:grayscale(0.7);}"]);
|
|
17391
|
-
var TextContainer$5 = /*#__PURE__*/
|
|
17476
|
+
var TextContainer$5 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17392
17477
|
displayName: "PartyManagerRows__TextContainer",
|
|
17393
17478
|
componentId: "sc-uqajew-1"
|
|
17394
17479
|
})(["color:", ";"], uiColors.white);
|
|
@@ -17444,23 +17529,23 @@ var PartyManager = function PartyManager(_ref) {
|
|
|
17444
17529
|
});
|
|
17445
17530
|
})) : React__default.createElement(React__default.Fragment, null, React__default.createElement(NotInParty, null, React__default.createElement("p", null, "You're not in a party."), React__default.createElement("p", null, "Tip: ", React__default.createElement(YellowText, null, invitationActionText), " on a player to invite them.")))));
|
|
17446
17531
|
};
|
|
17447
|
-
var YellowText = /*#__PURE__*/
|
|
17532
|
+
var YellowText = /*#__PURE__*/styled__default.span.withConfig({
|
|
17448
17533
|
displayName: "PartyManager__YellowText",
|
|
17449
17534
|
componentId: "sc-1yqcad8-0"
|
|
17450
17535
|
})(["color:", " !important;"], uiColors.yellow);
|
|
17451
|
-
var Wrapper$5 = /*#__PURE__*/
|
|
17536
|
+
var Wrapper$5 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17452
17537
|
displayName: "PartyManager__Wrapper",
|
|
17453
17538
|
componentId: "sc-1yqcad8-1"
|
|
17454
17539
|
})(["display:flex;flex-direction:column;width:100%;"]);
|
|
17455
|
-
var RowsWrapper$2 = /*#__PURE__*/
|
|
17540
|
+
var RowsWrapper$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17456
17541
|
displayName: "PartyManager__RowsWrapper",
|
|
17457
17542
|
componentId: "sc-1yqcad8-2"
|
|
17458
17543
|
})(["width:100%;"]);
|
|
17459
|
-
var Title$6 = /*#__PURE__*/
|
|
17544
|
+
var Title$6 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17460
17545
|
displayName: "PartyManager__Title",
|
|
17461
17546
|
componentId: "sc-1yqcad8-3"
|
|
17462
17547
|
})(["font-size:0.6rem;color:", " !important;"], uiColors.yellow);
|
|
17463
|
-
var NotInParty = /*#__PURE__*/
|
|
17548
|
+
var NotInParty = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17464
17549
|
displayName: "PartyManager__NotInParty",
|
|
17465
17550
|
componentId: "sc-1yqcad8-4"
|
|
17466
17551
|
})(["font-size:0.6rem;margin:auto;"]);
|
|
@@ -17657,15 +17742,15 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
17657
17742
|
className: " rpgui-progress-right-edge"
|
|
17658
17743
|
}));
|
|
17659
17744
|
};
|
|
17660
|
-
var ProgressBarText = /*#__PURE__*/
|
|
17745
|
+
var ProgressBarText = /*#__PURE__*/styled__default.span.withConfig({
|
|
17661
17746
|
displayName: "ProgressBar__ProgressBarText",
|
|
17662
17747
|
componentId: "sc-qa6fzh-0"
|
|
17663
17748
|
})(["font-size:", " !important;color:white;text-align:center;z-index:1;position:absolute;left:50%;transform:translateX(-50%);top:12px;"], uiFonts.size.small);
|
|
17664
|
-
var TextOverlay$1 = /*#__PURE__*/
|
|
17749
|
+
var TextOverlay$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17665
17750
|
displayName: "ProgressBar__TextOverlay",
|
|
17666
17751
|
componentId: "sc-qa6fzh-1"
|
|
17667
17752
|
})(["width:100%;position:relative;"]);
|
|
17668
|
-
var Container$n = /*#__PURE__*/
|
|
17753
|
+
var Container$n = /*#__PURE__*/styled__default.div.withConfig({
|
|
17669
17754
|
displayName: "ProgressBar__Container",
|
|
17670
17755
|
componentId: "sc-qa6fzh-2"
|
|
17671
17756
|
})(["display:flex;flex-direction:column;min-width:", "px;width:", "%;justify-content:start;align-items:flex-start;", " @media (max-width:950px){transform:scale(", ");}"], function (props) {
|
|
@@ -17759,39 +17844,39 @@ var QuestInfo = function QuestInfo(_ref) {
|
|
|
17759
17844
|
}, button.title);
|
|
17760
17845
|
})))));
|
|
17761
17846
|
};
|
|
17762
|
-
var QuestDraggableContainer = /*#__PURE__*/
|
|
17847
|
+
var QuestDraggableContainer = /*#__PURE__*/styled__default(DraggableContainer).withConfig({
|
|
17763
17848
|
displayName: "QuestInfo__QuestDraggableContainer",
|
|
17764
17849
|
componentId: "sc-15s2boc-0"
|
|
17765
17850
|
})(["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;}"]);
|
|
17766
|
-
var QuestContainer = /*#__PURE__*/
|
|
17851
|
+
var QuestContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
17767
17852
|
displayName: "QuestInfo__QuestContainer",
|
|
17768
17853
|
componentId: "sc-15s2boc-1"
|
|
17769
17854
|
})(["margin-right:40px;margin-left:40px;"]);
|
|
17770
|
-
var QuestsContainer = /*#__PURE__*/
|
|
17855
|
+
var QuestsContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
17771
17856
|
displayName: "QuestInfo__QuestsContainer",
|
|
17772
17857
|
componentId: "sc-15s2boc-2"
|
|
17773
17858
|
})(["display:flex;align-items:center;"]);
|
|
17774
|
-
var Content = /*#__PURE__*/
|
|
17859
|
+
var Content = /*#__PURE__*/styled__default.div.withConfig({
|
|
17775
17860
|
displayName: "QuestInfo__Content",
|
|
17776
17861
|
componentId: "sc-15s2boc-3"
|
|
17777
17862
|
})(["padding:18px;h1{text-align:left;margin:14px 0px;}"]);
|
|
17778
|
-
var QuestSplitDiv = /*#__PURE__*/
|
|
17863
|
+
var QuestSplitDiv = /*#__PURE__*/styled__default.div.withConfig({
|
|
17779
17864
|
displayName: "QuestInfo__QuestSplitDiv",
|
|
17780
17865
|
componentId: "sc-15s2boc-4"
|
|
17781
17866
|
})(["width:100%;font-size:11px;margin-bottom:10px;hr{margin:0px;padding:0px;}p{margin-bottom:0px;}"]);
|
|
17782
|
-
var QuestColumn = /*#__PURE__*/
|
|
17867
|
+
var QuestColumn = /*#__PURE__*/styled__default(Column).withConfig({
|
|
17783
17868
|
displayName: "QuestInfo__QuestColumn",
|
|
17784
17869
|
componentId: "sc-15s2boc-5"
|
|
17785
17870
|
})(["padding-top:5px;margin-bottom:20px;display:flex;justify-content:space-evenly;"]);
|
|
17786
|
-
var TitleContainer$1 = /*#__PURE__*/
|
|
17871
|
+
var TitleContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
17787
17872
|
displayName: "QuestInfo__TitleContainer",
|
|
17788
17873
|
componentId: "sc-15s2boc-6"
|
|
17789
17874
|
})(["width:100%;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;margin-top:1rem;"]);
|
|
17790
|
-
var Title$7 = /*#__PURE__*/
|
|
17875
|
+
var Title$7 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17791
17876
|
displayName: "QuestInfo__Title",
|
|
17792
17877
|
componentId: "sc-15s2boc-7"
|
|
17793
17878
|
})(["color:white;z-index:22;font-size:", " !important;color:", " !important;"], uiFonts.size.medium, uiColors.yellow);
|
|
17794
|
-
var Thumbnail = /*#__PURE__*/
|
|
17879
|
+
var Thumbnail = /*#__PURE__*/styled__default.img.withConfig({
|
|
17795
17880
|
displayName: "QuestInfo__Thumbnail",
|
|
17796
17881
|
componentId: "sc-15s2boc-8"
|
|
17797
17882
|
})(["color:white;z-index:22;width:32px * 1.5;margin-right:0.5rem;position:relative;top:-4px;"]);
|
|
@@ -17828,19 +17913,19 @@ var QuestList = function QuestList(_ref) {
|
|
|
17828
17913
|
}, quest.description)));
|
|
17829
17914
|
}) : React__default.createElement(NoQuestContainer, null, React__default.createElement("p", null, "There are no ongoing quests")))));
|
|
17830
17915
|
};
|
|
17831
|
-
var QuestDraggableContainer$1 = /*#__PURE__*/
|
|
17916
|
+
var QuestDraggableContainer$1 = /*#__PURE__*/styled__default(DraggableContainer).withConfig({
|
|
17832
17917
|
displayName: "QuestList__QuestDraggableContainer",
|
|
17833
17918
|
componentId: "sc-1a2vx6q-0"
|
|
17834
17919
|
})([".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;}"]);
|
|
17835
|
-
var Title$8 = /*#__PURE__*/
|
|
17920
|
+
var Title$8 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
17836
17921
|
displayName: "QuestList__Title",
|
|
17837
17922
|
componentId: "sc-1a2vx6q-1"
|
|
17838
17923
|
})(["z-index:22;font-size:", " !important;color:yellow !important;"], uiFonts.size.medium);
|
|
17839
|
-
var QuestListContainer = /*#__PURE__*/
|
|
17924
|
+
var QuestListContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
17840
17925
|
displayName: "QuestList__QuestListContainer",
|
|
17841
17926
|
componentId: "sc-1a2vx6q-2"
|
|
17842
17927
|
})(["margin-top:20px;margin-bottom:40px;overflow-y:auto;max-height:400px;.quest-item{display:flex;align-items:flex-start;margin-bottom:12px;}.quest-number{border-radius:50%;width:28px;height:28px;display:flex;align-items:center;justify-content:center;margin-right:16px;background-color:brown;flex-shrink:0;}.quest-number.completed{background-color:yellow;}p{margin:0;}.quest-detail__title{color:yellow;}.quest-detail__description{margin-top:5px;}.Noquest-detail__description{margin-top:5px;margin:auto;}"]);
|
|
17843
|
-
var NoQuestContainer = /*#__PURE__*/
|
|
17928
|
+
var NoQuestContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
17844
17929
|
displayName: "QuestList__NoQuestContainer",
|
|
17845
17930
|
componentId: "sc-1a2vx6q-3"
|
|
17846
17931
|
})(["text-align:center;p{margin-top:5px;}"]);
|
|
@@ -17849,7 +17934,7 @@ var RPGUIScrollbar = function RPGUIScrollbar(_ref) {
|
|
|
17849
17934
|
var children = _ref.children;
|
|
17850
17935
|
return React__default.createElement(Container$o, null, children);
|
|
17851
17936
|
};
|
|
17852
|
-
var Container$o = /*#__PURE__*/
|
|
17937
|
+
var Container$o = /*#__PURE__*/styled__default.div.withConfig({
|
|
17853
17938
|
displayName: "RPGUIScrollbar__Container",
|
|
17854
17939
|
componentId: "sc-p3msmb-0"
|
|
17855
17940
|
})([".rpgui-content ::-webkit-scrollbar,.rpgui-content::-webkit-scrollbar{width:25px !important;}.rpgui-content ::-webkit-scrollbar-track,.rpgui-content::-webkit-scrollbar-track{background-size:25px 60px !important;}"]);
|
|
@@ -18012,11 +18097,11 @@ var Shortcuts = function Shortcuts(_ref) {
|
|
|
18012
18097
|
}, i + 1));
|
|
18013
18098
|
}));
|
|
18014
18099
|
};
|
|
18015
|
-
var StyledShortcut$1 = /*#__PURE__*/
|
|
18100
|
+
var StyledShortcut$1 = /*#__PURE__*/styled__default(SingleShortcut).withConfig({
|
|
18016
18101
|
displayName: "Shortcuts__StyledShortcut",
|
|
18017
18102
|
componentId: "sc-kgtsi7-0"
|
|
18018
18103
|
})(["transition:all 0.15s;&.active{background-color:", ";border-color:", ";}"], uiColors.gray, uiColors.yellow);
|
|
18019
|
-
var List$1 = /*#__PURE__*/
|
|
18104
|
+
var List$1 = /*#__PURE__*/styled__default.p.withConfig({
|
|
18020
18105
|
displayName: "Shortcuts__List",
|
|
18021
18106
|
componentId: "sc-kgtsi7-1"
|
|
18022
18107
|
})(["width:100%;display:flex;align-items:center;justify-content:center;gap:0.5rem;box-sizing:border-box;margin:0 !important;scale:0.9;"]);
|
|
@@ -18036,15 +18121,15 @@ var SimpleProgressBar = function SimpleProgressBar(_ref) {
|
|
|
18036
18121
|
bgColor: bgColor
|
|
18037
18122
|
}))));
|
|
18038
18123
|
};
|
|
18039
|
-
var Container$p = /*#__PURE__*/
|
|
18124
|
+
var Container$p = /*#__PURE__*/styled__default.div.withConfig({
|
|
18040
18125
|
displayName: "SimpleProgressBar__Container",
|
|
18041
18126
|
componentId: "sc-mbeil3-0"
|
|
18042
18127
|
})(["display:flex;justify-content:center;align-items:center;width:100%;"]);
|
|
18043
|
-
var BackgroundBar = /*#__PURE__*/
|
|
18128
|
+
var BackgroundBar = /*#__PURE__*/styled__default.span.withConfig({
|
|
18044
18129
|
displayName: "SimpleProgressBar__BackgroundBar",
|
|
18045
18130
|
componentId: "sc-mbeil3-1"
|
|
18046
18131
|
})(["background-color:rgba(0,0,0,0.075);"]);
|
|
18047
|
-
var Progress = /*#__PURE__*/
|
|
18132
|
+
var Progress = /*#__PURE__*/styled__default.span.withConfig({
|
|
18048
18133
|
displayName: "SimpleProgressBar__Progress",
|
|
18049
18134
|
componentId: "sc-mbeil3-2"
|
|
18050
18135
|
})(["background-color:", ";width:", "%;"], function (props) {
|
|
@@ -18052,7 +18137,7 @@ var Progress = /*#__PURE__*/styled.span.withConfig({
|
|
|
18052
18137
|
}, function (props) {
|
|
18053
18138
|
return props.value;
|
|
18054
18139
|
});
|
|
18055
|
-
var ProgressBarContainer = /*#__PURE__*/
|
|
18140
|
+
var ProgressBarContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18056
18141
|
displayName: "SimpleProgressBar__ProgressBarContainer",
|
|
18057
18142
|
componentId: "sc-mbeil3-3"
|
|
18058
18143
|
})(["border-radius:60px;border:1px solid #282424;overflow:hidden;width:100%;span{display:block;height:100%;}height:8px;margin-left:", "px;"], function (props) {
|
|
@@ -18095,59 +18180,59 @@ var SkillProgressBar = function SkillProgressBar(_ref) {
|
|
|
18095
18180
|
bgColor: bgColor
|
|
18096
18181
|
}))), showSkillPoints && React__default.createElement(SkillDisplayContainer, null, React__default.createElement(SkillPointsDisplay, null, skillPoints, "/", skillPointsToNextLevel)));
|
|
18097
18182
|
};
|
|
18098
|
-
var ProgressBarContainer$1 = /*#__PURE__*/
|
|
18183
|
+
var ProgressBarContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18099
18184
|
displayName: "SkillProgressBar__ProgressBarContainer",
|
|
18100
18185
|
componentId: "sc-5vuroc-0"
|
|
18101
18186
|
})(["position:relative;top:8px;width:100%;height:auto;"]);
|
|
18102
|
-
var SpriteContainer$2 = /*#__PURE__*/
|
|
18187
|
+
var SpriteContainer$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18103
18188
|
displayName: "SkillProgressBar__SpriteContainer",
|
|
18104
18189
|
componentId: "sc-5vuroc-1"
|
|
18105
18190
|
})(["position:relative;top:-3px;left:0;"]);
|
|
18106
|
-
var SkillDisplayContainer = /*#__PURE__*/
|
|
18191
|
+
var SkillDisplayContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18107
18192
|
displayName: "SkillProgressBar__SkillDisplayContainer",
|
|
18108
18193
|
componentId: "sc-5vuroc-2"
|
|
18109
18194
|
})(["margin:0 auto;p{margin:0;}"]);
|
|
18110
|
-
var SkillPointsDisplay = /*#__PURE__*/
|
|
18195
|
+
var SkillPointsDisplay = /*#__PURE__*/styled__default.p.withConfig({
|
|
18111
18196
|
displayName: "SkillProgressBar__SkillPointsDisplay",
|
|
18112
18197
|
componentId: "sc-5vuroc-3"
|
|
18113
18198
|
})(["font-size:0.6rem !important;font-weight:bold;text-align:center;"]);
|
|
18114
|
-
var TitleName = /*#__PURE__*/
|
|
18199
|
+
var TitleName = /*#__PURE__*/styled__default.span.withConfig({
|
|
18115
18200
|
displayName: "SkillProgressBar__TitleName",
|
|
18116
18201
|
componentId: "sc-5vuroc-4"
|
|
18117
18202
|
})(["margin-left:5px;"]);
|
|
18118
|
-
var TitleNameBuff = /*#__PURE__*/
|
|
18203
|
+
var TitleNameBuff = /*#__PURE__*/styled__default.span.withConfig({
|
|
18119
18204
|
displayName: "SkillProgressBar__TitleNameBuff",
|
|
18120
18205
|
componentId: "sc-5vuroc-5"
|
|
18121
18206
|
})(["margin-left:5px;color:", " !important;"], uiColors.lightGreen);
|
|
18122
|
-
var TitleNameDebuff = /*#__PURE__*/
|
|
18207
|
+
var TitleNameDebuff = /*#__PURE__*/styled__default.span.withConfig({
|
|
18123
18208
|
displayName: "SkillProgressBar__TitleNameDebuff",
|
|
18124
18209
|
componentId: "sc-5vuroc-6"
|
|
18125
18210
|
})(["margin-left:5px;color:", " !important;"], uiColors.red);
|
|
18126
|
-
var ValueDisplay = /*#__PURE__*/
|
|
18211
|
+
var ValueDisplay = /*#__PURE__*/styled__default.span.withConfig({
|
|
18127
18212
|
displayName: "SkillProgressBar__ValueDisplay",
|
|
18128
18213
|
componentId: "sc-5vuroc-7"
|
|
18129
18214
|
})([""]);
|
|
18130
|
-
var ProgressIconContainer = /*#__PURE__*/
|
|
18215
|
+
var ProgressIconContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18131
18216
|
displayName: "SkillProgressBar__ProgressIconContainer",
|
|
18132
18217
|
componentId: "sc-5vuroc-8"
|
|
18133
18218
|
})(["display:flex;justify-content:center;align-items:center;"]);
|
|
18134
|
-
var ProgressBody = /*#__PURE__*/
|
|
18219
|
+
var ProgressBody = /*#__PURE__*/styled__default.div.withConfig({
|
|
18135
18220
|
displayName: "SkillProgressBar__ProgressBody",
|
|
18136
18221
|
componentId: "sc-5vuroc-9"
|
|
18137
18222
|
})(["display:flex;flex-direction:row;width:100%;"]);
|
|
18138
|
-
var ProgressTitle = /*#__PURE__*/
|
|
18223
|
+
var ProgressTitle = /*#__PURE__*/styled__default.div.withConfig({
|
|
18139
18224
|
displayName: "SkillProgressBar__ProgressTitle",
|
|
18140
18225
|
componentId: "sc-5vuroc-10"
|
|
18141
18226
|
})(["width:100%;display:flex;flex-direction:column;justify-content:space-between;span{font-size:0.6rem;}"]);
|
|
18142
|
-
var BuffAndDebuffContainer = /*#__PURE__*/
|
|
18227
|
+
var BuffAndDebuffContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18143
18228
|
displayName: "SkillProgressBar__BuffAndDebuffContainer",
|
|
18144
18229
|
componentId: "sc-5vuroc-11"
|
|
18145
18230
|
})([""]);
|
|
18146
|
-
var TitleNameBuffContainer = /*#__PURE__*/
|
|
18231
|
+
var TitleNameBuffContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18147
18232
|
displayName: "SkillProgressBar__TitleNameBuffContainer",
|
|
18148
18233
|
componentId: "sc-5vuroc-12"
|
|
18149
18234
|
})([""]);
|
|
18150
|
-
var TitleNameContainer = /*#__PURE__*/
|
|
18235
|
+
var TitleNameContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18151
18236
|
displayName: "SkillProgressBar__TitleNameContainer",
|
|
18152
18237
|
componentId: "sc-5vuroc-13"
|
|
18153
18238
|
})(["display:flex;justify-content:space-between;"]);
|
|
@@ -18293,19 +18378,19 @@ var SkillsContainer = function SkillsContainer(_ref) {
|
|
|
18293
18378
|
className: "golden"
|
|
18294
18379
|
})), onRenderSkillCategory('attributes')));
|
|
18295
18380
|
};
|
|
18296
|
-
var SkillsDraggableContainer = /*#__PURE__*/
|
|
18381
|
+
var SkillsDraggableContainer = /*#__PURE__*/styled__default(DraggableContainer).withConfig({
|
|
18297
18382
|
displayName: "SkillsContainer__SkillsDraggableContainer",
|
|
18298
18383
|
componentId: "sc-1g0c67q-0"
|
|
18299
18384
|
})(["border:1px solid black;max-width:450px;height:90%;.DraggableContainer__TitleContainer-sc-184mpyl-2{width:auto;height:auto;}"]);
|
|
18300
|
-
var SkillsContainerDiv = /*#__PURE__*/
|
|
18385
|
+
var SkillsContainerDiv = /*#__PURE__*/styled__default.div.withConfig({
|
|
18301
18386
|
displayName: "SkillsContainer__SkillsContainerDiv",
|
|
18302
18387
|
componentId: "sc-1g0c67q-1"
|
|
18303
18388
|
})(["width:100%;-webkit-overflow-y:scroll;overflow-y:scroll;height:90%;padding-right:10px;"]);
|
|
18304
|
-
var SkillSplitDiv = /*#__PURE__*/
|
|
18389
|
+
var SkillSplitDiv = /*#__PURE__*/styled__default.div.withConfig({
|
|
18305
18390
|
displayName: "SkillsContainer__SkillSplitDiv",
|
|
18306
18391
|
componentId: "sc-1g0c67q-2"
|
|
18307
18392
|
})(["width:100%;font-size:11px;hr{margin:0;margin-bottom:1rem;padding:0px;}p{margin-bottom:0px;}"]);
|
|
18308
|
-
var CloseButton$5 = /*#__PURE__*/
|
|
18393
|
+
var CloseButton$5 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18309
18394
|
displayName: "SkillsContainer__CloseButton",
|
|
18310
18395
|
componentId: "sc-1g0c67q-3"
|
|
18311
18396
|
})(["position:absolute;top:2px;right:2px;color:white;z-index:22;font-size:1.1rem;"]);
|
|
@@ -18353,27 +18438,27 @@ var SpellInfo = function SpellInfo(_ref) {
|
|
|
18353
18438
|
className: "value"
|
|
18354
18439
|
}, requiredItem))), React__default.createElement(Description$2, null, description));
|
|
18355
18440
|
};
|
|
18356
|
-
var Container$q = /*#__PURE__*/
|
|
18441
|
+
var Container$q = /*#__PURE__*/styled__default.div.withConfig({
|
|
18357
18442
|
displayName: "SpellInfo__Container",
|
|
18358
18443
|
componentId: "sc-4hbw3q-0"
|
|
18359
18444
|
})(["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);
|
|
18360
|
-
var Title$9 = /*#__PURE__*/
|
|
18445
|
+
var Title$9 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18361
18446
|
displayName: "SpellInfo__Title",
|
|
18362
18447
|
componentId: "sc-4hbw3q-1"
|
|
18363
18448
|
})(["font-size:", ";font-weight:bold;margin-bottom:0.5rem;display:flex;align-items:center;margin:0;"], uiFonts.size.medium);
|
|
18364
|
-
var Type$1 = /*#__PURE__*/
|
|
18449
|
+
var Type$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18365
18450
|
displayName: "SpellInfo__Type",
|
|
18366
18451
|
componentId: "sc-4hbw3q-2"
|
|
18367
18452
|
})(["font-size:", ";margin-top:0.2rem;color:", ";"], uiFonts.size.small, uiColors.lightGray);
|
|
18368
|
-
var Description$2 = /*#__PURE__*/
|
|
18453
|
+
var Description$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18369
18454
|
displayName: "SpellInfo__Description",
|
|
18370
18455
|
componentId: "sc-4hbw3q-3"
|
|
18371
18456
|
})(["margin-top:1.5rem;font-size:", ";color:", ";font-style:italic;"], uiFonts.size.small, uiColors.lightGray);
|
|
18372
|
-
var Header$1 = /*#__PURE__*/
|
|
18457
|
+
var Header$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18373
18458
|
displayName: "SpellInfo__Header",
|
|
18374
18459
|
componentId: "sc-4hbw3q-4"
|
|
18375
18460
|
})(["display:flex;align-items:center;justify-content:space-between;margin-bottom:0.5rem;"]);
|
|
18376
|
-
var Statistic$1 = /*#__PURE__*/
|
|
18461
|
+
var Statistic$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18377
18462
|
displayName: "SpellInfo__Statistic",
|
|
18378
18463
|
componentId: "sc-4hbw3q-5"
|
|
18379
18464
|
})(["margin-bottom:0.4rem;width:max-content;.label{display:inline-block;margin-right:0.5rem;color:inherit;}.value{display:inline-block;color:inherit;}&.better,.better{color:", ";}&.worse,.worse{color:", ";}"], uiColors.lightGreen, uiColors.cardinal);
|
|
@@ -18387,7 +18472,7 @@ var SpellInfoDisplay = function SpellInfoDisplay(_ref) {
|
|
|
18387
18472
|
spell: spell
|
|
18388
18473
|
}));
|
|
18389
18474
|
};
|
|
18390
|
-
var Flex$3 = /*#__PURE__*/
|
|
18475
|
+
var Flex$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18391
18476
|
displayName: "SpellInfoDisplay__Flex",
|
|
18392
18477
|
componentId: "sc-1htnsmm-0"
|
|
18393
18478
|
})(["display:flex;gap:0.5rem;flex-direction:", ";@media (max-width:580px){flex-direction:column-reverse;align-items:center;}"], function (_ref2) {
|
|
@@ -18432,15 +18517,15 @@ var MobileSpellTooltip = function MobileSpellTooltip(_ref) {
|
|
|
18432
18517
|
}, option.text);
|
|
18433
18518
|
}))));
|
|
18434
18519
|
};
|
|
18435
|
-
var Container$r = /*#__PURE__*/
|
|
18520
|
+
var Container$r = /*#__PURE__*/styled__default.div.withConfig({
|
|
18436
18521
|
displayName: "MobileSpellTooltip__Container",
|
|
18437
18522
|
componentId: "sc-6p7uvr-0"
|
|
18438
18523
|
})(["position:absolute;z-index:100;left:0;top:0;width:100vw;height:100vh;background-color:rgba(0 0 0 / 0.5);display:flex;justify-content:center;align-items:center;gap:0.5rem;transition:opacity 0.08s;animation:fadeIn 0.1s forwards;@keyframes fadeIn{0%{opacity:0;}100%{opacity:0.92;}}@keyframes fadeOut{0%{opacity:0.92;}100%{opacity:0;}}&.fadeOut{animation:fadeOut 0.1s forwards;}@media (max-width:580px){flex-direction:column;}"]);
|
|
18439
|
-
var OptionsContainer$1 = /*#__PURE__*/
|
|
18524
|
+
var OptionsContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18440
18525
|
displayName: "MobileSpellTooltip__OptionsContainer",
|
|
18441
18526
|
componentId: "sc-6p7uvr-1"
|
|
18442
18527
|
})(["display:flex;flex-direction:column;gap:0.5rem;flex-wrap:wrap;@media (max-width:580px){flex-direction:row;justify-content:center;}"]);
|
|
18443
|
-
var Option$1 = /*#__PURE__*/
|
|
18528
|
+
var Option$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
18444
18529
|
displayName: "MobileSpellTooltip__Option",
|
|
18445
18530
|
componentId: "sc-6p7uvr-2"
|
|
18446
18531
|
})(["padding:1rem;background-color:#333;color:white;border:none;border-radius:3px;width:8rem;transition:background-color 0.1s;&:hover{background-color:#555;}@media (max-width:580px){padding:1rem 0.5rem;}"]);
|
|
@@ -18479,7 +18564,7 @@ var MagicTooltip = function MagicTooltip(_ref) {
|
|
|
18479
18564
|
spell: spell
|
|
18480
18565
|
})));
|
|
18481
18566
|
};
|
|
18482
|
-
var Container$s = /*#__PURE__*/
|
|
18567
|
+
var Container$s = /*#__PURE__*/styled__default.div.withConfig({
|
|
18483
18568
|
displayName: "SpellTooltip__Container",
|
|
18484
18569
|
componentId: "sc-1go0gwg-0"
|
|
18485
18570
|
})(["position:absolute;z-index:100;pointer-events:none;left:0;top:0;opacity:0;transition:opacity 0.08s;"]);
|
|
@@ -18558,38 +18643,38 @@ var Spell = function Spell(_ref) {
|
|
|
18558
18643
|
className: "mana"
|
|
18559
18644
|
}, manaCost))));
|
|
18560
18645
|
};
|
|
18561
|
-
var Container$t = /*#__PURE__*/
|
|
18646
|
+
var Container$t = /*#__PURE__*/styled__default.button.withConfig({
|
|
18562
18647
|
displayName: "Spell__Container",
|
|
18563
18648
|
componentId: "sc-j96fa2-0"
|
|
18564
18649
|
})(["display:block;background:none;border:2px solid transparent;border-radius:1rem;width:100%;display:flex;gap:1rem;align-items:center;padding:0 1rem;text-align:left;position:relative;animation:", ";@keyframes border-color-change{0%{border-color:", ";}50%{border-color:transparent;}100%{border-color:", ";}}&:hover,&:focus{background-color:", ";}&:active{background:none;}"], function (_ref2) {
|
|
18565
18650
|
var isSettingShortcut = _ref2.isSettingShortcut;
|
|
18566
18651
|
return isSettingShortcut ? 'border-color-change 1s infinite' : 'none';
|
|
18567
18652
|
}, uiColors.yellow, uiColors.yellow, uiColors.darkGray);
|
|
18568
|
-
var SpellImage = /*#__PURE__*/
|
|
18653
|
+
var SpellImage = /*#__PURE__*/styled__default.div.withConfig({
|
|
18569
18654
|
displayName: "Spell__SpellImage",
|
|
18570
18655
|
componentId: "sc-j96fa2-1"
|
|
18571
18656
|
})(["width:4rem;height:4rem;font-size:", ";font-weight:bold;background-color:", ";color:", ";display:flex;justify-content:center;align-items:center;text-transform:uppercase;position:relative;overflow:hidden;.cooldown{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0 0 0 / 20%);color:", ";font-weight:bold;display:flex;justify-content:center;align-items:center;}"], uiFonts.size.xLarge, uiColors.darkGray, uiColors.lightGray, uiColors.darkYellow);
|
|
18572
|
-
var Info = /*#__PURE__*/
|
|
18657
|
+
var Info = /*#__PURE__*/styled__default.span.withConfig({
|
|
18573
18658
|
displayName: "Spell__Info",
|
|
18574
18659
|
componentId: "sc-j96fa2-2"
|
|
18575
18660
|
})(["width:0;flex:1;@media (orientation:portrait){display:none;}"]);
|
|
18576
|
-
var Title$a = /*#__PURE__*/
|
|
18661
|
+
var Title$a = /*#__PURE__*/styled__default.p.withConfig({
|
|
18577
18662
|
displayName: "Spell__Title",
|
|
18578
18663
|
componentId: "sc-j96fa2-3"
|
|
18579
18664
|
})(["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);
|
|
18580
|
-
var Description$3 = /*#__PURE__*/
|
|
18665
|
+
var Description$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18581
18666
|
displayName: "Spell__Description",
|
|
18582
18667
|
componentId: "sc-j96fa2-4"
|
|
18583
18668
|
})(["font-size:", " !important;line-height:1.1 !important;"], uiFonts.size.small);
|
|
18584
|
-
var Divider = /*#__PURE__*/
|
|
18669
|
+
var Divider = /*#__PURE__*/styled__default.div.withConfig({
|
|
18585
18670
|
displayName: "Spell__Divider",
|
|
18586
18671
|
componentId: "sc-j96fa2-5"
|
|
18587
18672
|
})(["width:1px;height:100%;margin:0 1rem;background-color:", ";"], uiColors.lightGray);
|
|
18588
|
-
var Cost = /*#__PURE__*/
|
|
18673
|
+
var Cost = /*#__PURE__*/styled__default.p.withConfig({
|
|
18589
18674
|
displayName: "Spell__Cost",
|
|
18590
18675
|
componentId: "sc-j96fa2-6"
|
|
18591
18676
|
})(["display:flex;align-items:center;flex-direction:column;gap:0.5rem;div{z-index:1;}.mana{position:relative;font-size:", ";font-weight:bold;z-index:1;&::after{position:absolute;content:'';top:0;left:0;background-color:", ";width:100%;height:100%;border-radius:50%;transform:scale(1.8);filter:blur(10px);z-index:-1;}}"], uiFonts.size.medium, uiColors.blue);
|
|
18592
|
-
var Overlay = /*#__PURE__*/
|
|
18677
|
+
var Overlay = /*#__PURE__*/styled__default.p.withConfig({
|
|
18593
18678
|
displayName: "Spell__Overlay",
|
|
18594
18679
|
componentId: "sc-j96fa2-7"
|
|
18595
18680
|
})(["margin:0 !important;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1rem;display:flex;justify-content:center;align-items:center;color:", ";font-size:", " !important;font-weight:bold;z-index:10;background-color:rgba(0 0 0 / 0.2);"], uiColors.yellow, uiFonts.size.large);
|
|
@@ -18669,15 +18754,15 @@ var Spellbook = function Spellbook(_ref) {
|
|
|
18669
18754
|
}, spell)));
|
|
18670
18755
|
}))));
|
|
18671
18756
|
};
|
|
18672
|
-
var Title$b = /*#__PURE__*/
|
|
18757
|
+
var Title$b = /*#__PURE__*/styled__default.h1.withConfig({
|
|
18673
18758
|
displayName: "Spellbook__Title",
|
|
18674
18759
|
componentId: "sc-r02nfq-0"
|
|
18675
18760
|
})(["font-size:", " !important;margin-bottom:0 !important;"], uiFonts.size.large);
|
|
18676
|
-
var Container$u = /*#__PURE__*/
|
|
18761
|
+
var Container$u = /*#__PURE__*/styled__default.div.withConfig({
|
|
18677
18762
|
displayName: "Spellbook__Container",
|
|
18678
18763
|
componentId: "sc-r02nfq-1"
|
|
18679
18764
|
})(["width:100%;height:100%;color:white;display:flex;flex-direction:column;"]);
|
|
18680
|
-
var SpellList = /*#__PURE__*/
|
|
18765
|
+
var SpellList = /*#__PURE__*/styled__default.div.withConfig({
|
|
18681
18766
|
displayName: "Spellbook__SpellList",
|
|
18682
18767
|
componentId: "sc-r02nfq-2"
|
|
18683
18768
|
})(["width:100%;min-height:0;flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:1.5rem;margin-top:1rem;"]);
|
|
@@ -18701,7 +18786,7 @@ var DayNightPeriod = function DayNightPeriod(_ref) {
|
|
|
18701
18786
|
src: periodOfDaySrcFiles[periodOfDay]
|
|
18702
18787
|
}));
|
|
18703
18788
|
};
|
|
18704
|
-
var GifContainer = /*#__PURE__*/
|
|
18789
|
+
var GifContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18705
18790
|
displayName: "DayNightPeriod__GifContainer",
|
|
18706
18791
|
componentId: "sc-10t97fw-0"
|
|
18707
18792
|
})(["width:100%;img{width:67%;}"]);
|
|
@@ -18721,19 +18806,19 @@ var TimeWidget = function TimeWidget(_ref) {
|
|
|
18721
18806
|
periodOfDay: periodOfDay
|
|
18722
18807
|
})), React__default.createElement(Time, null, TimeClock)));
|
|
18723
18808
|
};
|
|
18724
|
-
var WidgetContainer = /*#__PURE__*/
|
|
18809
|
+
var WidgetContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18725
18810
|
displayName: "TimeWidget__WidgetContainer",
|
|
18726
18811
|
componentId: "sc-1ja236h-0"
|
|
18727
18812
|
})(["background-image:url(", ");background-size:10rem;background-repeat:no-repeat;width:10rem;position:absolute;height:100px;"], img$c);
|
|
18728
|
-
var Time = /*#__PURE__*/
|
|
18813
|
+
var Time = /*#__PURE__*/styled__default.div.withConfig({
|
|
18729
18814
|
displayName: "TimeWidget__Time",
|
|
18730
18815
|
componentId: "sc-1ja236h-1"
|
|
18731
18816
|
})(["top:0.75rem;right:0.5rem;position:absolute;font-size:", ";color:white;"], uiFonts.size.small);
|
|
18732
|
-
var CloseButton$6 = /*#__PURE__*/
|
|
18817
|
+
var CloseButton$6 = /*#__PURE__*/styled__default.p.withConfig({
|
|
18733
18818
|
displayName: "TimeWidget__CloseButton",
|
|
18734
18819
|
componentId: "sc-1ja236h-2"
|
|
18735
18820
|
})(["position:absolute;top:-0.5rem;margin:0;right:-0.2rem;font-size:", " !important;z-index:1;"], uiFonts.size.small);
|
|
18736
|
-
var DayNightContainer = /*#__PURE__*/
|
|
18821
|
+
var DayNightContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18737
18822
|
displayName: "TimeWidget__DayNightContainer",
|
|
18738
18823
|
componentId: "sc-1ja236h-3"
|
|
18739
18824
|
})(["margin-top:-0.3rem;margin-left:-0.3rem;"]);
|
|
@@ -18835,7 +18920,7 @@ var TradingItemRow = function TradingItemRow(_ref) {
|
|
|
18835
18920
|
onPointerDown: onRightClick.bind(null, outerQty)
|
|
18836
18921
|
})));
|
|
18837
18922
|
};
|
|
18838
|
-
var PremiumLabel = /*#__PURE__*/
|
|
18923
|
+
var PremiumLabel = /*#__PURE__*/styled__default.span.withConfig({
|
|
18839
18924
|
displayName: "TradingItemRow__PremiumLabel",
|
|
18840
18925
|
componentId: "sc-mja0b5-0"
|
|
18841
18926
|
})(["background-color:", ";color:", ";font-weight:bold;padding:2px 5px;border-radius:5px;margin-right:5px;margin-bottom:5px;display:inline-block;"], function (_ref2) {
|
|
@@ -18845,43 +18930,43 @@ var PremiumLabel = /*#__PURE__*/styled.span.withConfig({
|
|
|
18845
18930
|
var textColor = _ref3.textColor;
|
|
18846
18931
|
return textColor;
|
|
18847
18932
|
});
|
|
18848
|
-
var StyledArrow = /*#__PURE__*/
|
|
18933
|
+
var StyledArrow = /*#__PURE__*/styled__default(SelectArrow).withConfig({
|
|
18849
18934
|
displayName: "TradingItemRow__StyledArrow",
|
|
18850
18935
|
componentId: "sc-mja0b5-1"
|
|
18851
18936
|
})(["margin:40px;"]);
|
|
18852
|
-
var ItemWrapper = /*#__PURE__*/
|
|
18937
|
+
var ItemWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
18853
18938
|
displayName: "TradingItemRow__ItemWrapper",
|
|
18854
18939
|
componentId: "sc-mja0b5-2"
|
|
18855
18940
|
})(["width:100%;margin:auto;display:flex;justify-content:space-between;margin-bottom:1rem;&:hover{background-color:", ";}padding:0.5rem;"], uiColors.darkGray);
|
|
18856
|
-
var ItemNameContainer = /*#__PURE__*/
|
|
18941
|
+
var ItemNameContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
18857
18942
|
displayName: "TradingItemRow__ItemNameContainer",
|
|
18858
18943
|
componentId: "sc-mja0b5-3"
|
|
18859
18944
|
})(["flex:60%;"]);
|
|
18860
|
-
var ItemIconContainer$1 = /*#__PURE__*/
|
|
18945
|
+
var ItemIconContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18861
18946
|
displayName: "TradingItemRow__ItemIconContainer",
|
|
18862
18947
|
componentId: "sc-mja0b5-4"
|
|
18863
18948
|
})(["display:flex;justify-content:flex-start;align-items:center;flex:0 0 58px;"]);
|
|
18864
|
-
var SpriteContainer$3 = /*#__PURE__*/
|
|
18949
|
+
var SpriteContainer$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18865
18950
|
displayName: "TradingItemRow__SpriteContainer",
|
|
18866
18951
|
componentId: "sc-mja0b5-5"
|
|
18867
18952
|
})(["position:relative;top:-0.5rem;left:0.5rem;"]);
|
|
18868
|
-
var NameValue = /*#__PURE__*/
|
|
18953
|
+
var NameValue = /*#__PURE__*/styled__default.div.withConfig({
|
|
18869
18954
|
displayName: "TradingItemRow__NameValue",
|
|
18870
18955
|
componentId: "sc-mja0b5-6"
|
|
18871
18956
|
})(["p{font-size:0.75rem;margin:0;}"]);
|
|
18872
|
-
var Item$1 = /*#__PURE__*/
|
|
18957
|
+
var Item$1 = /*#__PURE__*/styled__default.span.withConfig({
|
|
18873
18958
|
displayName: "TradingItemRow__Item",
|
|
18874
18959
|
componentId: "sc-mja0b5-7"
|
|
18875
18960
|
})(["color:white;text-align:center;z-index:1;width:100%;"]);
|
|
18876
|
-
var TextOverlay$2 = /*#__PURE__*/
|
|
18961
|
+
var TextOverlay$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18877
18962
|
displayName: "TradingItemRow__TextOverlay",
|
|
18878
18963
|
componentId: "sc-mja0b5-8"
|
|
18879
18964
|
})(["width:100%;position:relative;"]);
|
|
18880
|
-
var QuantityContainer$1 = /*#__PURE__*/
|
|
18965
|
+
var QuantityContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18881
18966
|
displayName: "TradingItemRow__QuantityContainer",
|
|
18882
18967
|
componentId: "sc-mja0b5-9"
|
|
18883
18968
|
})(["position:relative;display:flex;min-width:100px;width:40%;justify-content:center;align-items:center;flex:40%;"]);
|
|
18884
|
-
var QuantityDisplay = /*#__PURE__*/
|
|
18969
|
+
var QuantityDisplay = /*#__PURE__*/styled__default.div.withConfig({
|
|
18885
18970
|
displayName: "TradingItemRow__QuantityDisplay",
|
|
18886
18971
|
componentId: "sc-mja0b5-10"
|
|
18887
18972
|
})(["font-size:", ";"], uiFonts.size.small);
|
|
@@ -18985,31 +19070,31 @@ var TradingMenu = function TradingMenu(_ref) {
|
|
|
18985
19070
|
}
|
|
18986
19071
|
}, "Cancel"))));
|
|
18987
19072
|
};
|
|
18988
|
-
var Title$c = /*#__PURE__*/
|
|
19073
|
+
var Title$c = /*#__PURE__*/styled__default.h1.withConfig({
|
|
18989
19074
|
displayName: "TradingMenu__Title",
|
|
18990
19075
|
componentId: "sc-1wjsz1l-0"
|
|
18991
19076
|
})(["z-index:22;font-size:0.6rem;color:yellow !important;"]);
|
|
18992
|
-
var TradingComponentScrollWrapper = /*#__PURE__*/
|
|
19077
|
+
var TradingComponentScrollWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
18993
19078
|
displayName: "TradingMenu__TradingComponentScrollWrapper",
|
|
18994
19079
|
componentId: "sc-1wjsz1l-1"
|
|
18995
19080
|
})(["overflow-y:scroll;height:390px;width:100%;margin-top:1rem;"]);
|
|
18996
|
-
var ItemWrapper$1 = /*#__PURE__*/
|
|
19081
|
+
var ItemWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
18997
19082
|
displayName: "TradingMenu__ItemWrapper",
|
|
18998
19083
|
componentId: "sc-1wjsz1l-2"
|
|
18999
19084
|
})(["margin:auto;display:flex;justify-content:space-between;"]);
|
|
19000
|
-
var TotalWrapper = /*#__PURE__*/
|
|
19085
|
+
var TotalWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
19001
19086
|
displayName: "TradingMenu__TotalWrapper",
|
|
19002
19087
|
componentId: "sc-1wjsz1l-3"
|
|
19003
19088
|
})(["margin-top:1rem;display:flex;justify-content:space-between;height:20px;p{color:white !important;}width:100%;margin-left:0.8rem;"]);
|
|
19004
|
-
var GoldWrapper = /*#__PURE__*/
|
|
19089
|
+
var GoldWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
19005
19090
|
displayName: "TradingMenu__GoldWrapper",
|
|
19006
19091
|
componentId: "sc-1wjsz1l-4"
|
|
19007
19092
|
})(["margin-top:1rem;display:flex;justify-content:space-between;height:20px;p{color:yellow !important;}width:100%;margin-left:0.8rem;"]);
|
|
19008
|
-
var AlertWrapper = /*#__PURE__*/
|
|
19093
|
+
var AlertWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
19009
19094
|
displayName: "TradingMenu__AlertWrapper",
|
|
19010
19095
|
componentId: "sc-1wjsz1l-5"
|
|
19011
19096
|
})(["margin-top:1rem;display:flex;width:100%;justify-content:center;height:20px;p{color:red !important;}"]);
|
|
19012
|
-
var ButtonWrapper$2 = /*#__PURE__*/
|
|
19097
|
+
var ButtonWrapper$2 = /*#__PURE__*/styled__default.div.withConfig({
|
|
19013
19098
|
displayName: "TradingMenu__ButtonWrapper",
|
|
19014
19099
|
componentId: "sc-1wjsz1l-6"
|
|
19015
19100
|
})(["display:flex;justify-content:space-around;padding-top:20px;width:100%;margin-top:1rem;button{padding:0px 50px;}"]);
|
|
@@ -19023,7 +19108,7 @@ var Truncate = function Truncate(_ref) {
|
|
|
19023
19108
|
maxLines: maxLines
|
|
19024
19109
|
}, children);
|
|
19025
19110
|
};
|
|
19026
|
-
var Container$v = /*#__PURE__*/
|
|
19111
|
+
var Container$v = /*#__PURE__*/styled__default.div.withConfig({
|
|
19027
19112
|
displayName: "Truncate__Container",
|
|
19028
19113
|
componentId: "sc-6x00qb-0"
|
|
19029
19114
|
})(["display:-webkit-box;max-width:100%;max-height:100%;-webkit-line-clamp:", ";-webkit-box-orient:vertical;overflow:hidden;"], function (props) {
|
|
@@ -19091,27 +19176,27 @@ var ItemSelector = function ItemSelector(_ref) {
|
|
|
19091
19176
|
buttonType: exports.ButtonTypes.RPGUIButton
|
|
19092
19177
|
}, "Select")));
|
|
19093
19178
|
};
|
|
19094
|
-
var Title$d = /*#__PURE__*/
|
|
19179
|
+
var Title$d = /*#__PURE__*/styled__default.h1.withConfig({
|
|
19095
19180
|
displayName: "ItemSelector__Title",
|
|
19096
19181
|
componentId: "sc-gptoxp-0"
|
|
19097
19182
|
})(["font-size:0.6rem;color:yellow !important;"]);
|
|
19098
|
-
var Subtitle$1 = /*#__PURE__*/
|
|
19183
|
+
var Subtitle$1 = /*#__PURE__*/styled__default.h1.withConfig({
|
|
19099
19184
|
displayName: "ItemSelector__Subtitle",
|
|
19100
19185
|
componentId: "sc-gptoxp-1"
|
|
19101
19186
|
})(["font-size:0.4rem;color:yellow !important;"]);
|
|
19102
|
-
var RadioInputScroller$1 = /*#__PURE__*/
|
|
19187
|
+
var RadioInputScroller$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
19103
19188
|
displayName: "ItemSelector__RadioInputScroller",
|
|
19104
19189
|
componentId: "sc-gptoxp-2"
|
|
19105
19190
|
})(["padding-left:15px;padding-top:10px;width:100%;margin-top:1rem;align-items:center;margin-left:20px;align-items:flex-start;overflow-y:scroll;height:360px;"]);
|
|
19106
|
-
var SpriteAtlasWrapper$1 = /*#__PURE__*/
|
|
19191
|
+
var SpriteAtlasWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
19107
19192
|
displayName: "ItemSelector__SpriteAtlasWrapper",
|
|
19108
19193
|
componentId: "sc-gptoxp-3"
|
|
19109
19194
|
})(["margin-right:40px;"]);
|
|
19110
|
-
var RadioOptionsWrapper$1 = /*#__PURE__*/
|
|
19195
|
+
var RadioOptionsWrapper$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
19111
19196
|
displayName: "ItemSelector__RadioOptionsWrapper",
|
|
19112
19197
|
componentId: "sc-gptoxp-4"
|
|
19113
19198
|
})(["display:flex;align-items:stretch;margin-bottom:40px;"]);
|
|
19114
|
-
var ButtonWrapper$3 = /*#__PURE__*/
|
|
19199
|
+
var ButtonWrapper$3 = /*#__PURE__*/styled__default.div.withConfig({
|
|
19115
19200
|
displayName: "ItemSelector__ButtonWrapper",
|
|
19116
19201
|
componentId: "sc-gptoxp-5"
|
|
19117
19202
|
})(["display:flex;justify-content:space-around;padding-top:20px;width:100%;"]);
|
|
@@ -19161,6 +19246,7 @@ exports.RPGUIContainer = RPGUIContainer;
|
|
|
19161
19246
|
exports.RPGUIRoot = RPGUIRoot;
|
|
19162
19247
|
exports.RangeSlider = RangeSlider;
|
|
19163
19248
|
exports.Shortcuts = Shortcuts;
|
|
19249
|
+
exports.SimpleImageCarousel = SimpleImageCarousel;
|
|
19164
19250
|
exports.SkillProgressBar = SkillProgressBar;
|
|
19165
19251
|
exports.SkillsContainer = SkillsContainer;
|
|
19166
19252
|
exports.Spellbook = Spellbook;
|