monocart-reporter 2.9.19 → 2.9.20

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/lib/utils/pie.js CHANGED
@@ -132,7 +132,8 @@ const generatePieChart = (pieDataList) => {
132
132
  const midY = legendHeight * 0.5;
133
133
  legends.push(`<g class="${o.ns}-legend-${item.id}" transform="translate(0 ${legendHeight * i})">`);
134
134
  if (item.id !== 'tests') {
135
- legends.push(`<circle cx="10" cy="${midY}" r="8" fill="${item.color}" opacity="0.8" />`);
135
+ const opacity = item.value ? '0.8' : '0.2';
136
+ legends.push(`<circle cx="10" cy="${midY}" r="8" fill="${item.color}" opacity="${opacity}" />`);
136
137
  }
137
138
  legends.push(`<text x="25" y="${midY}" alignment-baseline="middle">${item.name}</text>`);
138
139
  legends.push(`<text x="125" y="${midY}" alignment-baseline="middle" text-anchor="end">${Util.NF(item.value)}</text>`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monocart-reporter",
3
- "version": "2.9.19",
3
+ "version": "2.9.20",
4
4
  "description": "A playwright test reporter. Shows suites/cases/steps with tree style, markdown annotations, custom columns/formatters/data collection visitors, console logs, style tags, send email.",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -58,17 +58,17 @@
58
58
  "async-tick": "^1.0.0",
59
59
  "autolinker": "^4.1.5",
60
60
  "axios": "^1.9.0",
61
- "commander": "^13.1.0",
61
+ "commander": "^14.0.0",
62
62
  "dotenv": "^16.5.0",
63
63
  "eslint": "^9.27.0",
64
64
  "eslint-config-plus": "^2.0.2",
65
- "eslint-plugin-html": "^8.1.2",
65
+ "eslint-plugin-html": "^8.1.3",
66
66
  "eslint-plugin-vue": "^10.1.0",
67
67
  "file-saver": "^2.0.5",
68
68
  "find-up": "^7.0.0",
69
69
  "github-markdown-css": "^5.8.1",
70
70
  "glob": "^11.0.2",
71
- "marked": "^15.0.11",
71
+ "marked": "^15.0.12",
72
72
  "mermaid": "^11.6.0",
73
73
  "mitt": "^3.0.1",
74
74
  "monocart-code-viewer": "^1.1.5",