bnstooltips 1.22.1 → 1.22.2
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/build/Utilities/ISkill.d.ts +1 -0
- package/build/index.es.js +14 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +14 -0
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -8943,6 +8943,7 @@ function SkillTooltip(_a) {
|
|
|
8943
8943
|
AddBreakValue(tooltipBaseProps.subInfoGroups, skill);
|
|
8944
8944
|
AddSkillMastery(tooltipBaseProps.subInfoGroups, masteryPoints, skill.ArcaneInfo, showZeroMastery);
|
|
8945
8945
|
AddSkillMastery2(tooltipBaseProps.subInfoGroups, masteryPoints, skill.ArcaneInfo2, showZeroMastery);
|
|
8946
|
+
AddSkillMasteryDiff(tooltipBaseProps.subInfoGroups, skill.ArcaneInfoDiffText);
|
|
8946
8947
|
AddPvpModifiers(tooltipBaseProps.subInfoGroups, skill);
|
|
8947
8948
|
AddBoundaries(tooltipBaseProps.subInfoGroups, skill);
|
|
8948
8949
|
AddConditions(tooltipBaseProps.subInfoGroups, skill);
|
|
@@ -8995,6 +8996,19 @@ function AddBreakValue(subInfoGroups, skill) {
|
|
|
8995
8996
|
});
|
|
8996
8997
|
}
|
|
8997
8998
|
}
|
|
8999
|
+
function AddSkillMasteryDiff(subInfoGroups, arcaneInfoDiffText) {
|
|
9000
|
+
if (arcaneInfoDiffText == undefined || arcaneInfoDiffText == "")
|
|
9001
|
+
return;
|
|
9002
|
+
subInfoGroups.push({
|
|
9003
|
+
title: "Skill Grandmaster",
|
|
9004
|
+
texts: [
|
|
9005
|
+
React.createElement("div", null,
|
|
9006
|
+
React.createElement("span", { className: "tooltipArg", style: { fontSize: "14px" } }, "Skill Grandmaster"),
|
|
9007
|
+
React.createElement("div", { className: "arcanemark", style: { marginLeft: "5px", marginRight: "5px" } }),
|
|
9008
|
+
React.createElement("span", { dangerouslySetInnerHTML: { __html: arcaneInfoDiffText } })),
|
|
9009
|
+
],
|
|
9010
|
+
});
|
|
9011
|
+
}
|
|
8998
9012
|
function AddSkillMastery2(subInfoGroups, masteryPoints, arcaneInfo2, showZeroMastery) {
|
|
8999
9013
|
var _a;
|
|
9000
9014
|
if (showZeroMastery === void 0) { showZeroMastery = false; }
|