bnstooltips 1.22.2 → 1.22.3

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/index.es.js CHANGED
@@ -9000,12 +9000,15 @@ function AddSkillMasteryDiff(subInfoGroups, arcaneInfoDiffText) {
9000
9000
  if (arcaneInfoDiffText == undefined || arcaneInfoDiffText == "")
9001
9001
  return;
9002
9002
  subInfoGroups.push({
9003
- title: "Skill Grandmaster",
9003
+ title: "",
9004
9004
  texts: [
9005
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 } })),
9006
+ React.createElement("div", { style: { display: "flex", alignItems: "center" } },
9007
+ React.createElement("span", { className: "tooltipArg", style: { fontSize: "14px" } }, "Skill Grandmaster"),
9008
+ React.createElement("div", { className: "arcanemark" }),
9009
+ React.createElement("span", { className: "tooltipArg", style: { fontSize: "14px" } }, 0)),
9010
+ React.createElement("div", null,
9011
+ React.createElement("span", { dangerouslySetInnerHTML: { __html: arcaneInfoDiffText } }))),
9009
9012
  ],
9010
9013
  });
9011
9014
  }