From 6a1a04ffc4127f8b6a629ed8e04e6f38e90533aa Mon Sep 17 00:00:00 2001 From: 100pah Date: Fri, 29 May 2026 16:02:27 +0800 Subject: [PATCH 1/2] chore: Avoid `npm run dev` mandatorily requires newly version of Node.js (force to concurrently@8 , which requires '^14.13.0 || >=16.0.0') --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e7136daa42..272b64409b 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "build:extension": "node build/build.js --type extension --min", "build:ssr": "node build/build.js --type ssr", "dev:fast": "node build/build-i18n.js && node build/dev-fast.js", - "dev": "npx -y concurrently -n build,server \"npm run dev:fast\" \"npx -y http-server -c-1 -s -o test\"", + "dev": "npx -y concurrently@8 -n build,server \"npm run dev:fast\" \"npx -y http-server -c-1 -s -o test\"", "prepare": "npm run build:lib && husky install", "release": "npm run build:lib && npm run build:i18n && npm run build && npm run build:esm && npm run build:extension && npm run build:ssr", "help": "node build/build.js --help", From e36e3eb742408216b8aaca5990e57976472be14c Mon Sep 17 00:00:00 2001 From: 100pah Date: Fri, 29 May 2026 16:41:11 +0800 Subject: [PATCH 2/2] fix: Fix that heatmap does not render in wx miniapp. Fix #21632. --- src/chart/heatmap/HeatmapView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chart/heatmap/HeatmapView.ts b/src/chart/heatmap/HeatmapView.ts index f8b912a3d7..c4fd705d10 100644 --- a/src/chart/heatmap/HeatmapView.ts +++ b/src/chart/heatmap/HeatmapView.ts @@ -332,9 +332,9 @@ class HeatmapView extends ChartView { toggleHoverEmphasis(rect, focus, blurScope, emphasisDisabled); - rect.incremental = getIncrementalId(seriesModel, useIncremental); // PENDING if (useIncremental) { + rect.incremental = getIncrementalId(seriesModel, useIncremental); // Rect must use hover layer if it's incremental. rect.states.emphasis.hoverLayer = graphic.HOVER_LAYER_FOR_INCREMENTAL; }