From 1d13497fe8c8f65128d53b3c9bccdf7026053867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=A6=82=E6=80=80=E5=BF=B5=EF=BC=88=E4=BA=91?= =?UTF-8?q?=E8=B0=8C=EF=BC=89?= Date: Thu, 26 Dec 2024 16:18:20 +0800 Subject: [PATCH 1/2] fix: the text wrapping position is not accurate (#1876) --- .changeset/silver-tigers-roll.md | 5 + __tests__/demos/bugfix/textWordWrap.ts | 44 +++++++ __tests__/demos/event/hierarchy.ts | 4 +- packages/g-lite/src/services/TextService.ts | 136 +++++++++++++------- 4 files changed, 142 insertions(+), 47 deletions(-) create mode 100644 .changeset/silver-tigers-roll.md diff --git a/.changeset/silver-tigers-roll.md b/.changeset/silver-tigers-roll.md new file mode 100644 index 000000000..28c3995c9 --- /dev/null +++ b/.changeset/silver-tigers-roll.md @@ -0,0 +1,5 @@ +--- +'@antv/g-lite': patch +--- + +fix: the text wrapping position is not accurate diff --git a/__tests__/demos/bugfix/textWordWrap.ts b/__tests__/demos/bugfix/textWordWrap.ts index 31583e14c..ac0699ec2 100644 --- a/__tests__/demos/bugfix/textWordWrap.ts +++ b/__tests__/demos/bugfix/textWordWrap.ts @@ -1,5 +1,9 @@ import { Canvas, Text, Rect } from '@antv/g'; +import * as tinybench from 'tinybench'; +/** + * @link https://github.com/antvis/G/issues/1833 + */ export async function textWordWrap(context: { canvas: Canvas }) { const { canvas } = context; await canvas.ready; @@ -105,4 +109,44 @@ export async function textWordWrap(context: { canvas: Canvas }) { canvas.appendChild(rect1); canvas.appendChild(text2); canvas.appendChild(rect2); + + // benchmark + // ---------- + const bench = new tinybench.Bench({ + name: 'canvas text benchmark', + time: 100, + }); + + const canvasEl = document.createElement('canvas'); + const testText = 'Hello, World!'; + bench.add('Measure the entire text at once', async () => { + canvasEl.getContext('2d').measureText(testText); + }); + bench.add('Character-by-character measurement', async () => { + const ctx = canvasEl.getContext('2d'); + Array.from(testText).forEach((char) => { + ctx.measureText(char); + }); + }); + + const testText1 = + 'In G, text line break detection is currently done by iteratively measuring the width of each character and then adding them up to determine whether a line break is needed. External users may configure wordWrapWidth by directly measuring the width of the entire text. The two different text measurement methods will lead to visual inconsistencies.'; + bench.add('(long txt) Measure the entire text at once', async () => { + canvasEl.getContext('2d').measureText(testText1); + }); + bench.add('(long txt) Character-by-character measurement', async () => { + const ctx = canvasEl.getContext('2d'); + Array.from(testText1).forEach((char) => { + ctx.measureText(char); + }); + }); + + await bench.run(); + + console.log(bench.name); + console.table(bench.table()); + console.log(bench.results); + console.log(bench.tasks); + + // ---------- } diff --git a/__tests__/demos/event/hierarchy.ts b/__tests__/demos/event/hierarchy.ts index 64fad4238..02125f011 100644 --- a/__tests__/demos/event/hierarchy.ts +++ b/__tests__/demos/event/hierarchy.ts @@ -1,6 +1,6 @@ -import { Circle, Path } from '@antv/g'; +import { Canvas, Circle, Path } from '@antv/g'; -export async function hierarchy(context) { +export async function hierarchy(context: { canvas: Canvas }) { const { canvas } = context; await canvas.ready; diff --git a/packages/g-lite/src/services/TextService.ts b/packages/g-lite/src/services/TextService.ts index bbc5dcd27..8a0ccc056 100644 --- a/packages/g-lite/src/services/TextService.ts +++ b/packages/g-lite/src/services/TextService.ts @@ -355,87 +355,131 @@ export class TextService { ellipsis = textOverflow; } + const chars = Array.from(text); let lines: string[] = []; - let currentIndex = 0; - let currentWidth = 0; + let currentLineIndex = 0; + let currentLineWidth = 0; const cache: { [key in string]: number } = {}; - const calcWidth = (char: string): number => { + const calcWidth = (txt: string): number => { return this.getFromCache( - char, + txt, letterSpacing, cache, context as CanvasRenderingContext2D, ); }; - const ellipsisWidth = Array.from(ellipsis).reduce((prev, cur) => { - return prev + calcWidth(cur); - }, 0); + const ellipsisWidth = calcWidth(ellipsis); + + /** + * Find text fragments that will take up as much of the given line width as possible when rendered. + * + * @see https://github.com/antvis/G/issues/1833 + * + * @param txt - Current line of text + * @param textCharIndex - The index of the last character of the current line in the entire text + */ + function findCharIndexClosestWidthThreshold( + txt: string, + textCharIndex: number, + widthThreshold: number, + ) { + while ( + calcWidth(txt) < widthThreshold && + textCharIndex < chars.length - 1 + ) { + textCharIndex += 1; + txt += chars[textCharIndex]; + } + while (calcWidth(txt) > widthThreshold) { + textCharIndex -= 1; + txt = txt.slice(0, -1); + } - function appendEllipsis(lineIndex: number) { + return { + txt, + textCharIndex, + }; + } + + function appendEllipsis(lineIndex: number, textCharIndex: number) { // If there is not enough space to display the string itself, it is clipped. // @see https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow#values if (ellipsisWidth <= 0 || ellipsisWidth > maxWidth) { return; } - // Backspace from line's end. - const currentLineLength = lines[lineIndex] ? lines[lineIndex].length : 0; - let lastLineWidth = 0; - let lastLineIndex = currentLineLength; - for (let i = 0; i < currentLineLength; i++) { - const width = calcWidth(lines[lineIndex][i]); - if (lastLineWidth + width + ellipsisWidth > maxWidth) { - lastLineIndex = i; - break; - } + if (!lines[lineIndex]) { + lines[lineIndex] = ellipsis; - lastLineWidth += width; + return; } - lines[lineIndex] = - (lines[lineIndex] || '').slice(0, lastLineIndex) + ellipsis; + const result = findCharIndexClosestWidthThreshold( + lines[lineIndex], + textCharIndex, + maxWidth - ellipsisWidth, + ); + + lines[lineIndex] = result.txt + ellipsis; } - const chars = Array.from(text); for (let i = 0; i < chars.length; i++) { - const char = chars[i]; - - const prevChar = text[i - 1]; - const nextChar = text[i + 1]; - const charWidth = calcWidth(char); + let char = chars[i]; + let prevChar = chars[i - 1]; + let nextChar = chars[i + 1]; + let charWidth = calcWidth(char); if (this.isNewline(char)) { - currentIndex++; - // exceed maxLines, break immediately - if (currentIndex >= maxLines) { + if (currentLineIndex + 1 >= maxLines) { parsedStyle.isOverflowing = true; if (i < chars.length - 1) { - appendEllipsis(currentIndex - 1); + appendEllipsis(currentLineIndex, i); } break; } - currentWidth = 0; - lines[currentIndex] = ''; + currentLineIndex += 1; + currentLineWidth = 0; + lines[currentLineIndex] = ''; + continue; } - if (currentWidth > 0 && currentWidth + charWidth > maxWidth) { - if (currentIndex + 1 >= maxLines) { + if (currentLineWidth > 0 && currentLineWidth + charWidth > maxWidth) { + const result = findCharIndexClosestWidthThreshold( + lines[currentLineIndex], + i, + maxWidth, + ); + if (result.textCharIndex !== i) { + lines[currentLineIndex] = result.txt; + + if (result.textCharIndex === chars.length - 1) { + break; + } + + i = result.textCharIndex; + char = chars[i]; + prevChar = chars[i - 1]; + nextChar = chars[i + 1]; + charWidth = calcWidth(char); + } + + if (currentLineIndex + 1 >= maxLines) { parsedStyle.isOverflowing = true; - appendEllipsis(currentIndex); + appendEllipsis(currentLineIndex, i); break; } - currentIndex++; - currentWidth = 0; - lines[currentIndex] = ''; + currentLineIndex += 1; + currentLineWidth = 0; + lines[currentLineIndex] = ''; if (this.isBreakingSpace(char)) { continue; @@ -443,20 +487,20 @@ export class TextService { if (!this.canBreakInLastChar(char)) { lines = this.trimToBreakable(lines); - currentWidth = this.sumTextWidthByCache( - lines[currentIndex] || '', + currentLineWidth = this.sumTextWidthByCache( + lines[currentLineIndex] || '', cache, ); } if (this.shouldBreakByKinsokuShorui(char, nextChar)) { lines = this.trimByKinsokuShorui(lines); - currentWidth += calcWidth(prevChar || ''); + currentLineWidth += calcWidth(prevChar || ''); } } - currentWidth += charWidth; - lines[currentIndex] = (lines[currentIndex] || '') + char; + currentLineWidth += charWidth; + lines[currentLineIndex] = (lines[currentLineIndex] || '') + char; } return lines.join('\n'); @@ -554,7 +598,9 @@ export class TextService { let width = cache[key]; if (typeof width !== 'number') { const spacing = key.length * letterSpacing; - width = context.measureText(key).width + spacing; + const metrics = context.measureText(key); + + width = metrics.width + spacing; cache[key] = width; } return width; From a1c0287b727817597c1b10637c0fe8983e2d03ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 16:19:45 +0800 Subject: [PATCH 2/2] Version Packages (#1877) Co-authored-by: github-actions[bot] --- .changeset/silver-tigers-roll.md | 5 ----- packages/g-camera-api/CHANGELOG.md | 7 +++++++ packages/g-camera-api/package.json | 2 +- packages/g-canvas/CHANGELOG.md | 13 +++++++++++++ packages/g-canvas/package.json | 2 +- packages/g-canvaskit/CHANGELOG.md | 13 +++++++++++++ packages/g-canvaskit/package.json | 2 +- packages/g-components/CHANGELOG.md | 7 +++++++ packages/g-components/package.json | 2 +- packages/g-dom-mutation-observer-api/CHANGELOG.md | 7 +++++++ packages/g-dom-mutation-observer-api/package.json | 2 +- packages/g-gesture/CHANGELOG.md | 7 +++++++ packages/g-gesture/package.json | 2 +- packages/g-image-exporter/CHANGELOG.md | 7 +++++++ packages/g-image-exporter/package.json | 2 +- packages/g-lite/CHANGELOG.md | 6 ++++++ packages/g-lite/package.json | 2 +- packages/g-lottie-player/CHANGELOG.md | 7 +++++++ packages/g-lottie-player/package.json | 2 +- packages/g-mobile-canvas-element/CHANGELOG.md | 7 +++++++ packages/g-mobile-canvas-element/package.json | 2 +- packages/g-mobile-canvas/CHANGELOG.md | 14 ++++++++++++++ packages/g-mobile-canvas/package.json | 2 +- packages/g-mobile-svg/CHANGELOG.md | 12 ++++++++++++ packages/g-mobile-svg/package.json | 2 +- packages/g-mobile-webgl/CHANGELOG.md | 13 +++++++++++++ packages/g-mobile-webgl/package.json | 2 +- packages/g-pattern/CHANGELOG.md | 7 +++++++ packages/g-pattern/package.json | 2 +- packages/g-plugin-3d/CHANGELOG.md | 8 ++++++++ packages/g-plugin-3d/package.json | 2 +- packages/g-plugin-a11y/CHANGELOG.md | 7 +++++++ packages/g-plugin-a11y/package.json | 2 +- packages/g-plugin-annotation/CHANGELOG.md | 7 +++++++ packages/g-plugin-annotation/package.json | 2 +- packages/g-plugin-box2d/CHANGELOG.md | 7 +++++++ packages/g-plugin-box2d/package.json | 2 +- .../g-plugin-canvas-path-generator/CHANGELOG.md | 7 +++++++ .../g-plugin-canvas-path-generator/package.json | 2 +- packages/g-plugin-canvas-picker/CHANGELOG.md | 9 +++++++++ packages/g-plugin-canvas-picker/package.json | 2 +- packages/g-plugin-canvas-renderer/CHANGELOG.md | 9 +++++++++ packages/g-plugin-canvas-renderer/package.json | 2 +- packages/g-plugin-canvaskit-renderer/CHANGELOG.md | 8 ++++++++ packages/g-plugin-canvaskit-renderer/package.json | 2 +- packages/g-plugin-control/CHANGELOG.md | 7 +++++++ packages/g-plugin-control/package.json | 2 +- packages/g-plugin-css-select/CHANGELOG.md | 7 +++++++ packages/g-plugin-css-select/package.json | 2 +- packages/g-plugin-device-renderer/CHANGELOG.md | 8 ++++++++ packages/g-plugin-device-renderer/package.json | 2 +- packages/g-plugin-dom-interaction/CHANGELOG.md | 7 +++++++ packages/g-plugin-dom-interaction/package.json | 2 +- packages/g-plugin-dragndrop/CHANGELOG.md | 7 +++++++ packages/g-plugin-dragndrop/package.json | 2 +- packages/g-plugin-gesture/CHANGELOG.md | 7 +++++++ packages/g-plugin-gesture/package.json | 2 +- packages/g-plugin-html-renderer/CHANGELOG.md | 7 +++++++ packages/g-plugin-html-renderer/package.json | 2 +- packages/g-plugin-image-loader/CHANGELOG.md | 7 +++++++ packages/g-plugin-image-loader/package.json | 2 +- packages/g-plugin-matterjs/CHANGELOG.md | 7 +++++++ packages/g-plugin-matterjs/package.json | 2 +- packages/g-plugin-mobile-interaction/CHANGELOG.md | 7 +++++++ packages/g-plugin-mobile-interaction/package.json | 2 +- packages/g-plugin-physx/CHANGELOG.md | 7 +++++++ packages/g-plugin-physx/package.json | 2 +- .../g-plugin-rough-canvas-renderer/CHANGELOG.md | 8 ++++++++ .../g-plugin-rough-canvas-renderer/package.json | 2 +- packages/g-plugin-rough-svg-renderer/CHANGELOG.md | 8 ++++++++ packages/g-plugin-rough-svg-renderer/package.json | 2 +- packages/g-plugin-svg-picker/CHANGELOG.md | 8 ++++++++ packages/g-plugin-svg-picker/package.json | 2 +- packages/g-plugin-svg-renderer/CHANGELOG.md | 7 +++++++ packages/g-plugin-svg-renderer/package.json | 2 +- packages/g-plugin-yoga/CHANGELOG.md | 7 +++++++ packages/g-plugin-yoga/package.json | 2 +- .../g-plugin-zdog-canvas-renderer/CHANGELOG.md | 8 ++++++++ .../g-plugin-zdog-canvas-renderer/package.json | 2 +- packages/g-plugin-zdog-svg-renderer/CHANGELOG.md | 9 +++++++++ packages/g-plugin-zdog-svg-renderer/package.json | 2 +- packages/g-svg/CHANGELOG.md | 10 ++++++++++ packages/g-svg/package.json | 2 +- packages/g-web-animations-api/CHANGELOG.md | 7 +++++++ packages/g-web-animations-api/package.json | 2 +- packages/g-web-components/CHANGELOG.md | 9 +++++++++ packages/g-web-components/package.json | 2 +- packages/g-webgl/CHANGELOG.md | 11 +++++++++++ packages/g-webgl/package.json | 2 +- packages/g-webgpu/CHANGELOG.md | 11 +++++++++++ packages/g-webgpu/package.json | 2 +- packages/g/CHANGELOG.md | 10 ++++++++++ packages/g/package.json | 2 +- packages/react-g/CHANGELOG.md | 6 ++++++ packages/react-g/package.json | 2 +- 95 files changed, 433 insertions(+), 52 deletions(-) delete mode 100644 .changeset/silver-tigers-roll.md diff --git a/.changeset/silver-tigers-roll.md b/.changeset/silver-tigers-roll.md deleted file mode 100644 index 28c3995c9..000000000 --- a/.changeset/silver-tigers-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@antv/g-lite': patch ---- - -fix: the text wrapping position is not accurate diff --git a/packages/g-camera-api/CHANGELOG.md b/packages/g-camera-api/CHANGELOG.md index 88b6f74c1..a22800ad5 100644 --- a/packages/g-camera-api/CHANGELOG.md +++ b/packages/g-camera-api/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-camera-api +## 2.0.30 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.29 ### Patch Changes diff --git a/packages/g-camera-api/package.json b/packages/g-camera-api/package.json index 337566418..691b0a650 100644 --- a/packages/g-camera-api/package.json +++ b/packages/g-camera-api/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-camera-api", - "version": "2.0.29", + "version": "2.0.30", "description": "A simple implementation of Camera API.", "keywords": [ "antv", diff --git a/packages/g-canvas/CHANGELOG.md b/packages/g-canvas/CHANGELOG.md index 1aa0a3472..b025f60d6 100644 --- a/packages/g-canvas/CHANGELOG.md +++ b/packages/g-canvas/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-canvas +## 2.0.34 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-canvas-path-generator@2.1.11 + - @antv/g-plugin-canvas-picker@2.1.13 + - @antv/g-plugin-canvas-renderer@2.2.13 + - @antv/g-plugin-dom-interaction@2.1.16 + - @antv/g-plugin-html-renderer@2.1.16 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.0.33 ### Patch Changes diff --git a/packages/g-canvas/package.json b/packages/g-canvas/package.json index 9dcfeb311..659f812d8 100644 --- a/packages/g-canvas/package.json +++ b/packages/g-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvas", - "version": "2.0.33", + "version": "2.0.34", "description": "A renderer implemented by Canvas 2D API", "keywords": [ "antv", diff --git a/packages/g-canvaskit/CHANGELOG.md b/packages/g-canvaskit/CHANGELOG.md index 194e03a23..777fec348 100644 --- a/packages/g-canvaskit/CHANGELOG.md +++ b/packages/g-canvaskit/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-canvaskit +## 1.0.33 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-canvas-path-generator@2.1.11 + - @antv/g-plugin-canvas-picker@2.1.13 + - @antv/g-plugin-canvaskit-renderer@2.1.13 + - @antv/g-plugin-dom-interaction@2.1.16 + - @antv/g-plugin-html-renderer@2.1.16 + - @antv/g-plugin-image-loader@2.1.13 + ## 1.0.32 ### Patch Changes diff --git a/packages/g-canvaskit/package.json b/packages/g-canvaskit/package.json index 26cd850bc..9a08b23d7 100644 --- a/packages/g-canvaskit/package.json +++ b/packages/g-canvaskit/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvaskit", - "version": "1.0.32", + "version": "1.0.33", "description": "A renderer implemented by CanvasKit", "keywords": [ "antv", diff --git a/packages/g-components/CHANGELOG.md b/packages/g-components/CHANGELOG.md index 13a36966d..15ea170cc 100644 --- a/packages/g-components/CHANGELOG.md +++ b/packages/g-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-components +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-components/package.json b/packages/g-components/package.json index 087d9d559..3482d969c 100644 --- a/packages/g-components/package.json +++ b/packages/g-components/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-components", - "version": "2.0.26", + "version": "2.0.27", "description": "Components for g", "keywords": [ "antv", diff --git a/packages/g-dom-mutation-observer-api/CHANGELOG.md b/packages/g-dom-mutation-observer-api/CHANGELOG.md index c5fce20b7..31b742428 100644 --- a/packages/g-dom-mutation-observer-api/CHANGELOG.md +++ b/packages/g-dom-mutation-observer-api/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-dom-mutation-observer-api +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-dom-mutation-observer-api/package.json b/packages/g-dom-mutation-observer-api/package.json index ddcd3a455..adb7af184 100644 --- a/packages/g-dom-mutation-observer-api/package.json +++ b/packages/g-dom-mutation-observer-api/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-dom-mutation-observer-api", - "version": "2.0.26", + "version": "2.0.27", "description": "A simple implementation of DOM MutationObserver API.", "keywords": [ "antv", diff --git a/packages/g-gesture/CHANGELOG.md b/packages/g-gesture/CHANGELOG.md index addf4b3ea..fc2260c68 100644 --- a/packages/g-gesture/CHANGELOG.md +++ b/packages/g-gesture/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-gesture +## 3.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 3.0.26 ### Patch Changes diff --git a/packages/g-gesture/package.json b/packages/g-gesture/package.json index 3df1dc3e6..a10b33318 100644 --- a/packages/g-gesture/package.json +++ b/packages/g-gesture/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-gesture", - "version": "3.0.26", + "version": "3.0.27", "description": "G Gesture", "keywords": [ "antv", diff --git a/packages/g-image-exporter/CHANGELOG.md b/packages/g-image-exporter/CHANGELOG.md index 7885de8fc..e5fbaffed 100644 --- a/packages/g-image-exporter/CHANGELOG.md +++ b/packages/g-image-exporter/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-image-exporter +## 1.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.0.26 ### Patch Changes diff --git a/packages/g-image-exporter/package.json b/packages/g-image-exporter/package.json index 2f025b2f8..d10488c6e 100644 --- a/packages/g-image-exporter/package.json +++ b/packages/g-image-exporter/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-image-exporter", - "version": "1.0.26", + "version": "1.0.27", "description": "A image exporter for G using DOM API", "keywords": [ "antv", diff --git a/packages/g-lite/CHANGELOG.md b/packages/g-lite/CHANGELOG.md index 8dc79c726..2167f47c0 100644 --- a/packages/g-lite/CHANGELOG.md +++ b/packages/g-lite/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/g-lite +## 2.2.11 + +### Patch Changes + +- 1d13497: fix: the text wrapping position is not accurate + ## 2.2.10 ### Patch Changes diff --git a/packages/g-lite/package.json b/packages/g-lite/package.json index 485a420fc..753124fa2 100644 --- a/packages/g-lite/package.json +++ b/packages/g-lite/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-lite", - "version": "2.2.10", + "version": "2.2.11", "description": "A core module for rendering engine implements DOM API.", "keywords": [ "antv", diff --git a/packages/g-lottie-player/CHANGELOG.md b/packages/g-lottie-player/CHANGELOG.md index 070ebddaf..87a296e80 100644 --- a/packages/g-lottie-player/CHANGELOG.md +++ b/packages/g-lottie-player/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-lottie-player +## 1.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.0.26 ### Patch Changes diff --git a/packages/g-lottie-player/package.json b/packages/g-lottie-player/package.json index 516410514..ff3987bcc 100644 --- a/packages/g-lottie-player/package.json +++ b/packages/g-lottie-player/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-lottie-player", - "version": "1.0.26", + "version": "1.0.27", "description": "A lottie player for G", "keywords": [ "antv", diff --git a/packages/g-mobile-canvas-element/CHANGELOG.md b/packages/g-mobile-canvas-element/CHANGELOG.md index 7930c76ce..5918a31c9 100644 --- a/packages/g-mobile-canvas-element/CHANGELOG.md +++ b/packages/g-mobile-canvas-element/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-mobile-canvas-element +## 1.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.0.26 ### Patch Changes diff --git a/packages/g-mobile-canvas-element/package.json b/packages/g-mobile-canvas-element/package.json index c68a48fcc..5c3c02827 100644 --- a/packages/g-mobile-canvas-element/package.json +++ b/packages/g-mobile-canvas-element/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-mobile-canvas-element", - "version": "1.0.26", + "version": "1.0.27", "description": "Create a CanvasLike element from existed context in mobile environment", "keywords": [ "antv", diff --git a/packages/g-mobile-canvas/CHANGELOG.md b/packages/g-mobile-canvas/CHANGELOG.md index fe91ee1c2..3ea1b629e 100644 --- a/packages/g-mobile-canvas/CHANGELOG.md +++ b/packages/g-mobile-canvas/CHANGELOG.md @@ -1,5 +1,19 @@ # @antv/g-mobile-canvas +## 1.0.31 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-canvas-path-generator@2.1.11 + - @antv/g-plugin-canvas-picker@2.1.13 + - @antv/g-plugin-canvas-renderer@2.2.13 + - @antv/g-plugin-dragndrop@2.0.27 + - @antv/g-plugin-gesture@2.0.27 + - @antv/g-plugin-image-loader@2.1.13 + - @antv/g-plugin-mobile-interaction@1.0.27 + ## 1.0.30 ### Patch Changes diff --git a/packages/g-mobile-canvas/package.json b/packages/g-mobile-canvas/package.json index 35e3721a0..365a3dc44 100644 --- a/packages/g-mobile-canvas/package.json +++ b/packages/g-mobile-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-mobile-canvas", - "version": "1.0.30", + "version": "1.0.31", "description": "A renderer implemented with Canvas2D API in mobile environment", "keywords": [ "antv", diff --git a/packages/g-mobile-svg/CHANGELOG.md b/packages/g-mobile-svg/CHANGELOG.md index ab2aceb77..dbbbfc9b9 100644 --- a/packages/g-mobile-svg/CHANGELOG.md +++ b/packages/g-mobile-svg/CHANGELOG.md @@ -1,5 +1,17 @@ # @antv/g-mobile-svg +## 1.0.29 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-dragndrop@2.0.27 + - @antv/g-plugin-gesture@2.0.27 + - @antv/g-plugin-mobile-interaction@1.0.27 + - @antv/g-plugin-svg-picker@2.0.29 + - @antv/g-plugin-svg-renderer@2.2.11 + ## 1.0.28 ### Patch Changes diff --git a/packages/g-mobile-svg/package.json b/packages/g-mobile-svg/package.json index 7c3b7bcee..be24a9ac8 100644 --- a/packages/g-mobile-svg/package.json +++ b/packages/g-mobile-svg/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-mobile-svg", - "version": "1.0.28", + "version": "1.0.29", "description": "A renderer implemented by SVG in mobile environment", "keywords": [ "antv", diff --git a/packages/g-mobile-webgl/CHANGELOG.md b/packages/g-mobile-webgl/CHANGELOG.md index ee4bcb99c..1288dfca7 100644 --- a/packages/g-mobile-webgl/CHANGELOG.md +++ b/packages/g-mobile-webgl/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-mobile-webgl +## 1.0.38 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-device-renderer@2.2.13 + - @antv/g-plugin-dragndrop@2.0.27 + - @antv/g-plugin-gesture@2.0.27 + - @antv/g-plugin-html-renderer@2.1.16 + - @antv/g-plugin-image-loader@2.1.13 + - @antv/g-plugin-mobile-interaction@1.0.27 + ## 1.0.37 ### Patch Changes diff --git a/packages/g-mobile-webgl/package.json b/packages/g-mobile-webgl/package.json index 2d5b74ea7..dc7eff4d6 100644 --- a/packages/g-mobile-webgl/package.json +++ b/packages/g-mobile-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-mobile-webgl", - "version": "1.0.37", + "version": "1.0.38", "description": "A renderer implemented by WebGL1/2 in mobile environment", "keywords": [ "antv", diff --git a/packages/g-pattern/CHANGELOG.md b/packages/g-pattern/CHANGELOG.md index 165f11d80..47fe5f82e 100644 --- a/packages/g-pattern/CHANGELOG.md +++ b/packages/g-pattern/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-pattern +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-pattern/package.json b/packages/g-pattern/package.json index 14a728ee8..5e44cde68 100644 --- a/packages/g-pattern/package.json +++ b/packages/g-pattern/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-pattern", - "version": "2.0.26", + "version": "2.0.27", "description": "A pattern libs for G", "keywords": [ "antv", diff --git a/packages/g-plugin-3d/CHANGELOG.md b/packages/g-plugin-3d/CHANGELOG.md index e4a38cdc3..523009a77 100644 --- a/packages/g-plugin-3d/CHANGELOG.md +++ b/packages/g-plugin-3d/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-3d +## 2.0.36 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-device-renderer@2.2.13 + ## 2.0.35 ### Patch Changes diff --git a/packages/g-plugin-3d/package.json b/packages/g-plugin-3d/package.json index 8d03da37d..b6974ad0c 100644 --- a/packages/g-plugin-3d/package.json +++ b/packages/g-plugin-3d/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-3d", - "version": "2.0.35", + "version": "2.0.36", "description": "Provide 3D extension for G", "keywords": [ "antv", diff --git a/packages/g-plugin-a11y/CHANGELOG.md b/packages/g-plugin-a11y/CHANGELOG.md index 061dd312c..568bf5ba2 100644 --- a/packages/g-plugin-a11y/CHANGELOG.md +++ b/packages/g-plugin-a11y/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-a11y +## 1.1.16 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.1.15 ### Patch Changes diff --git a/packages/g-plugin-a11y/package.json b/packages/g-plugin-a11y/package.json index c7d7e8079..2e9cf395d 100644 --- a/packages/g-plugin-a11y/package.json +++ b/packages/g-plugin-a11y/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-a11y", - "version": "1.1.15", + "version": "1.1.16", "description": "A G plugin for accessibility", "keywords": [ "antv", diff --git a/packages/g-plugin-annotation/CHANGELOG.md b/packages/g-plugin-annotation/CHANGELOG.md index cb435acc1..b75258044 100644 --- a/packages/g-plugin-annotation/CHANGELOG.md +++ b/packages/g-plugin-annotation/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-annotation +## 1.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.0.26 ### Patch Changes diff --git a/packages/g-plugin-annotation/package.json b/packages/g-plugin-annotation/package.json index e8a9ae6d7..fcd7f4ef2 100644 --- a/packages/g-plugin-annotation/package.json +++ b/packages/g-plugin-annotation/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-annotation", - "version": "1.0.26", + "version": "1.0.27", "description": "A G plugin for annotation", "keywords": [ "antv", diff --git a/packages/g-plugin-box2d/CHANGELOG.md b/packages/g-plugin-box2d/CHANGELOG.md index 487b3dbf1..a6db98046 100644 --- a/packages/g-plugin-box2d/CHANGELOG.md +++ b/packages/g-plugin-box2d/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-box2d +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-box2d/package.json b/packages/g-plugin-box2d/package.json index c7bf01fcb..86c63fc7c 100644 --- a/packages/g-plugin-box2d/package.json +++ b/packages/g-plugin-box2d/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-box2d", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for Box2D", "keywords": [ "antv", diff --git a/packages/g-plugin-canvas-path-generator/CHANGELOG.md b/packages/g-plugin-canvas-path-generator/CHANGELOG.md index 9c94be589..74d9aea18 100644 --- a/packages/g-plugin-canvas-path-generator/CHANGELOG.md +++ b/packages/g-plugin-canvas-path-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-canvas-path-generator +## 2.1.11 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.1.10 ### Patch Changes diff --git a/packages/g-plugin-canvas-path-generator/package.json b/packages/g-plugin-canvas-path-generator/package.json index 842b24328..492406b3a 100644 --- a/packages/g-plugin-canvas-path-generator/package.json +++ b/packages/g-plugin-canvas-path-generator/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-canvas-path-generator", - "version": "2.1.10", + "version": "2.1.11", "description": "A G plugin of path generator with Canvas2D API", "keywords": [ "antv", diff --git a/packages/g-plugin-canvas-picker/CHANGELOG.md b/packages/g-plugin-canvas-picker/CHANGELOG.md index 433c2a436..8e789ceac 100644 --- a/packages/g-plugin-canvas-picker/CHANGELOG.md +++ b/packages/g-plugin-canvas-picker/CHANGELOG.md @@ -1,5 +1,14 @@ # @antv/g-plugin-canvas-picker +## 2.1.13 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-canvas-path-generator@2.1.11 + - @antv/g-plugin-canvas-renderer@2.2.13 + ## 2.1.12 ### Patch Changes diff --git a/packages/g-plugin-canvas-picker/package.json b/packages/g-plugin-canvas-picker/package.json index 95d268062..35b180a54 100644 --- a/packages/g-plugin-canvas-picker/package.json +++ b/packages/g-plugin-canvas-picker/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-canvas-picker", - "version": "2.1.12", + "version": "2.1.13", "description": "A G plugin for picking in canvas", "keywords": [ "antv", diff --git a/packages/g-plugin-canvas-renderer/CHANGELOG.md b/packages/g-plugin-canvas-renderer/CHANGELOG.md index b13b1d749..f64338530 100644 --- a/packages/g-plugin-canvas-renderer/CHANGELOG.md +++ b/packages/g-plugin-canvas-renderer/CHANGELOG.md @@ -1,5 +1,14 @@ # @antv/g-plugin-canvas-renderer +## 2.2.13 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-canvas-path-generator@2.1.11 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.2.12 ### Patch Changes diff --git a/packages/g-plugin-canvas-renderer/package.json b/packages/g-plugin-canvas-renderer/package.json index 700d6d311..cd7fb7d6f 100644 --- a/packages/g-plugin-canvas-renderer/package.json +++ b/packages/g-plugin-canvas-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-canvas-renderer", - "version": "2.2.12", + "version": "2.2.13", "description": "A G plugin of renderer implementation with Canvas2D API", "keywords": [ "antv", diff --git a/packages/g-plugin-canvaskit-renderer/CHANGELOG.md b/packages/g-plugin-canvaskit-renderer/CHANGELOG.md index 6c35aeca5..df89bbedf 100644 --- a/packages/g-plugin-canvaskit-renderer/CHANGELOG.md +++ b/packages/g-plugin-canvaskit-renderer/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-canvaskit-renderer +## 2.1.13 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.1.12 ### Patch Changes diff --git a/packages/g-plugin-canvaskit-renderer/package.json b/packages/g-plugin-canvaskit-renderer/package.json index 9d031ddc3..498188cbc 100644 --- a/packages/g-plugin-canvaskit-renderer/package.json +++ b/packages/g-plugin-canvaskit-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-canvaskit-renderer", - "version": "2.1.12", + "version": "2.1.13", "description": "A G plugin of renderer implementation with CanvasKit", "keywords": [ "antv", diff --git a/packages/g-plugin-control/CHANGELOG.md b/packages/g-plugin-control/CHANGELOG.md index 22b6706ff..3cb3d0b41 100644 --- a/packages/g-plugin-control/CHANGELOG.md +++ b/packages/g-plugin-control/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-control +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-control/package.json b/packages/g-plugin-control/package.json index 62af5cc66..c1177a487 100644 --- a/packages/g-plugin-control/package.json +++ b/packages/g-plugin-control/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-control", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for orbit control", "keywords": [ "antv", diff --git a/packages/g-plugin-css-select/CHANGELOG.md b/packages/g-plugin-css-select/CHANGELOG.md index 83f5ab6cb..a9a35678a 100644 --- a/packages/g-plugin-css-select/CHANGELOG.md +++ b/packages/g-plugin-css-select/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-css-select +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-css-select/package.json b/packages/g-plugin-css-select/package.json index 792108c25..4c78377b3 100644 --- a/packages/g-plugin-css-select/package.json +++ b/packages/g-plugin-css-select/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-css-select", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for using CSS select syntax in query selector", "keywords": [ "antv", diff --git a/packages/g-plugin-device-renderer/CHANGELOG.md b/packages/g-plugin-device-renderer/CHANGELOG.md index 432e59e7b..a7356dd13 100644 --- a/packages/g-plugin-device-renderer/CHANGELOG.md +++ b/packages/g-plugin-device-renderer/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-device-renderer +## 2.2.13 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.2.12 ### Patch Changes diff --git a/packages/g-plugin-device-renderer/package.json b/packages/g-plugin-device-renderer/package.json index 4913d92fe..174eed076 100644 --- a/packages/g-plugin-device-renderer/package.json +++ b/packages/g-plugin-device-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-device-renderer", - "version": "2.2.12", + "version": "2.2.13", "description": "A G plugin of renderer implementation with GPUDevice", "keywords": [ "antv", diff --git a/packages/g-plugin-dom-interaction/CHANGELOG.md b/packages/g-plugin-dom-interaction/CHANGELOG.md index 0f8491390..fe33808a7 100644 --- a/packages/g-plugin-dom-interaction/CHANGELOG.md +++ b/packages/g-plugin-dom-interaction/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-dom-interaction +## 2.1.16 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.1.15 ### Patch Changes diff --git a/packages/g-plugin-dom-interaction/package.json b/packages/g-plugin-dom-interaction/package.json index 883b2f84f..242bf38fd 100644 --- a/packages/g-plugin-dom-interaction/package.json +++ b/packages/g-plugin-dom-interaction/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-dom-interaction", - "version": "2.1.15", + "version": "2.1.16", "description": "A G plugin", "keywords": [ "antv", diff --git a/packages/g-plugin-dragndrop/CHANGELOG.md b/packages/g-plugin-dragndrop/CHANGELOG.md index 45be28186..026290b38 100644 --- a/packages/g-plugin-dragndrop/CHANGELOG.md +++ b/packages/g-plugin-dragndrop/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-dragndrop +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-dragndrop/package.json b/packages/g-plugin-dragndrop/package.json index 6ac7519b6..793383d4c 100644 --- a/packages/g-plugin-dragndrop/package.json +++ b/packages/g-plugin-dragndrop/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-dragndrop", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for Drag n Drop implemented with PointerEvents", "keywords": [ "antv", diff --git a/packages/g-plugin-gesture/CHANGELOG.md b/packages/g-plugin-gesture/CHANGELOG.md index 412c0e3c5..561ed6ca8 100644 --- a/packages/g-plugin-gesture/CHANGELOG.md +++ b/packages/g-plugin-gesture/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-gesture +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-gesture/package.json b/packages/g-plugin-gesture/package.json index 280b8f6a7..16451a078 100644 --- a/packages/g-plugin-gesture/package.json +++ b/packages/g-plugin-gesture/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-gesture", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for Gesture implemented with PointerEvents", "keywords": [ "antv", diff --git a/packages/g-plugin-html-renderer/CHANGELOG.md b/packages/g-plugin-html-renderer/CHANGELOG.md index 3a98c63e6..7a3056dda 100644 --- a/packages/g-plugin-html-renderer/CHANGELOG.md +++ b/packages/g-plugin-html-renderer/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-html-renderer +## 2.1.16 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.1.15 ### Patch Changes diff --git a/packages/g-plugin-html-renderer/package.json b/packages/g-plugin-html-renderer/package.json index 55dab4ba0..4d261bc0e 100644 --- a/packages/g-plugin-html-renderer/package.json +++ b/packages/g-plugin-html-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-html-renderer", - "version": "2.1.15", + "version": "2.1.16", "description": "A G plugin for rendering HTML", "keywords": [ "antv", diff --git a/packages/g-plugin-image-loader/CHANGELOG.md b/packages/g-plugin-image-loader/CHANGELOG.md index 9f02fef34..fdeb5c800 100644 --- a/packages/g-plugin-image-loader/CHANGELOG.md +++ b/packages/g-plugin-image-loader/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-image-loader +## 2.1.13 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.1.12 ### Patch Changes diff --git a/packages/g-plugin-image-loader/package.json b/packages/g-plugin-image-loader/package.json index 487f75cf7..cb01f2c87 100644 --- a/packages/g-plugin-image-loader/package.json +++ b/packages/g-plugin-image-loader/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-image-loader", - "version": "2.1.12", + "version": "2.1.13", "description": "A G plugin for loading image", "keywords": [ "antv", diff --git a/packages/g-plugin-matterjs/CHANGELOG.md b/packages/g-plugin-matterjs/CHANGELOG.md index bbae873ca..8011f67f9 100644 --- a/packages/g-plugin-matterjs/CHANGELOG.md +++ b/packages/g-plugin-matterjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-matterjs +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-matterjs/package.json b/packages/g-plugin-matterjs/package.json index 4c76d4c10..170acfdf5 100644 --- a/packages/g-plugin-matterjs/package.json +++ b/packages/g-plugin-matterjs/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-matterjs", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for matter.js physics engine", "keywords": [ "antv", diff --git a/packages/g-plugin-mobile-interaction/CHANGELOG.md b/packages/g-plugin-mobile-interaction/CHANGELOG.md index 71cd0d020..6a988ca57 100644 --- a/packages/g-plugin-mobile-interaction/CHANGELOG.md +++ b/packages/g-plugin-mobile-interaction/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-mobile-interaction +## 1.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 1.0.26 ### Patch Changes diff --git a/packages/g-plugin-mobile-interaction/package.json b/packages/g-plugin-mobile-interaction/package.json index 2d8cc089d..284c03785 100644 --- a/packages/g-plugin-mobile-interaction/package.json +++ b/packages/g-plugin-mobile-interaction/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-mobile-interaction", - "version": "1.0.26", + "version": "1.0.27", "description": "A G plugin listening events in mobile environment", "keywords": [ "antv", diff --git a/packages/g-plugin-physx/CHANGELOG.md b/packages/g-plugin-physx/CHANGELOG.md index 1160cc64a..1b2579f8b 100644 --- a/packages/g-plugin-physx/CHANGELOG.md +++ b/packages/g-plugin-physx/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-physx +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-physx/package.json b/packages/g-plugin-physx/package.json index 381c95351..88f7877ea 100644 --- a/packages/g-plugin-physx/package.json +++ b/packages/g-plugin-physx/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-physx", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for PhysX", "keywords": [ "antv", diff --git a/packages/g-plugin-rough-canvas-renderer/CHANGELOG.md b/packages/g-plugin-rough-canvas-renderer/CHANGELOG.md index 574f6e64e..a9b812f80 100644 --- a/packages/g-plugin-rough-canvas-renderer/CHANGELOG.md +++ b/packages/g-plugin-rough-canvas-renderer/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-rough-canvas-renderer +## 2.0.34 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-canvas@2.0.34 + ## 2.0.33 ### Patch Changes diff --git a/packages/g-plugin-rough-canvas-renderer/package.json b/packages/g-plugin-rough-canvas-renderer/package.json index 842300c20..db784d1fe 100644 --- a/packages/g-plugin-rough-canvas-renderer/package.json +++ b/packages/g-plugin-rough-canvas-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-rough-canvas-renderer", - "version": "2.0.33", + "version": "2.0.34", "description": "A G plugin of renderer implementation with rough.js", "keywords": [ "antv", diff --git a/packages/g-plugin-rough-svg-renderer/CHANGELOG.md b/packages/g-plugin-rough-svg-renderer/CHANGELOG.md index daebbce14..30f33f51a 100644 --- a/packages/g-plugin-rough-svg-renderer/CHANGELOG.md +++ b/packages/g-plugin-rough-svg-renderer/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-rough-svg-renderer +## 2.0.30 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-svg@2.0.29 + ## 2.0.29 ### Patch Changes diff --git a/packages/g-plugin-rough-svg-renderer/package.json b/packages/g-plugin-rough-svg-renderer/package.json index 58ccae6e8..9f578d7d3 100644 --- a/packages/g-plugin-rough-svg-renderer/package.json +++ b/packages/g-plugin-rough-svg-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-rough-svg-renderer", - "version": "2.0.29", + "version": "2.0.30", "description": "A G plugin of renderer implementation with rough.js", "keywords": [ "antv", diff --git a/packages/g-plugin-svg-picker/CHANGELOG.md b/packages/g-plugin-svg-picker/CHANGELOG.md index 48fc843d8..fac53208e 100644 --- a/packages/g-plugin-svg-picker/CHANGELOG.md +++ b/packages/g-plugin-svg-picker/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-svg-picker +## 2.0.29 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-svg-renderer@2.2.11 + ## 2.0.28 ### Patch Changes diff --git a/packages/g-plugin-svg-picker/package.json b/packages/g-plugin-svg-picker/package.json index fb735102b..3da6650a6 100644 --- a/packages/g-plugin-svg-picker/package.json +++ b/packages/g-plugin-svg-picker/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-svg-picker", - "version": "2.0.28", + "version": "2.0.29", "description": "A G plugin for picking in SVG", "keywords": [ "antv", diff --git a/packages/g-plugin-svg-renderer/CHANGELOG.md b/packages/g-plugin-svg-renderer/CHANGELOG.md index 84251100c..7c01600e8 100644 --- a/packages/g-plugin-svg-renderer/CHANGELOG.md +++ b/packages/g-plugin-svg-renderer/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-svg-renderer +## 2.2.11 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.2.10 ### Patch Changes diff --git a/packages/g-plugin-svg-renderer/package.json b/packages/g-plugin-svg-renderer/package.json index 83e3451e4..544b73247 100644 --- a/packages/g-plugin-svg-renderer/package.json +++ b/packages/g-plugin-svg-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-svg-renderer", - "version": "2.2.10", + "version": "2.2.11", "description": "A G plugin of renderer implementation with SVG", "keywords": [ "antv", diff --git a/packages/g-plugin-yoga/CHANGELOG.md b/packages/g-plugin-yoga/CHANGELOG.md index d31c5b6f2..b4145ff9a 100644 --- a/packages/g-plugin-yoga/CHANGELOG.md +++ b/packages/g-plugin-yoga/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-yoga +## 2.0.27 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.0.26 ### Patch Changes diff --git a/packages/g-plugin-yoga/package.json b/packages/g-plugin-yoga/package.json index c24513bf7..cda0f5c60 100644 --- a/packages/g-plugin-yoga/package.json +++ b/packages/g-plugin-yoga/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-yoga", - "version": "2.0.26", + "version": "2.0.27", "description": "A G plugin for Yoga layout engine", "keywords": [ "antv", diff --git a/packages/g-plugin-zdog-canvas-renderer/CHANGELOG.md b/packages/g-plugin-zdog-canvas-renderer/CHANGELOG.md index 5992d0bb4..55bfe7842 100644 --- a/packages/g-plugin-zdog-canvas-renderer/CHANGELOG.md +++ b/packages/g-plugin-zdog-canvas-renderer/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-zdog-canvas-renderer +## 2.0.33 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-canvas@2.0.34 + ## 2.0.32 ### Patch Changes diff --git a/packages/g-plugin-zdog-canvas-renderer/package.json b/packages/g-plugin-zdog-canvas-renderer/package.json index 21fbf0f05..b8e2de3b0 100644 --- a/packages/g-plugin-zdog-canvas-renderer/package.json +++ b/packages/g-plugin-zdog-canvas-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-zdog-canvas-renderer", - "version": "2.0.32", + "version": "2.0.33", "description": "A G plugin of renderer implementation with Zdog", "keywords": [ "antv", diff --git a/packages/g-plugin-zdog-svg-renderer/CHANGELOG.md b/packages/g-plugin-zdog-svg-renderer/CHANGELOG.md index afd64a82f..acc5b4081 100644 --- a/packages/g-plugin-zdog-svg-renderer/CHANGELOG.md +++ b/packages/g-plugin-zdog-svg-renderer/CHANGELOG.md @@ -1,5 +1,14 @@ # @antv/g-plugin-zdog-svg-renderer +## 2.0.29 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-svg-renderer@2.2.11 + - @antv/g-svg@2.0.29 + ## 2.0.28 ### Patch Changes diff --git a/packages/g-plugin-zdog-svg-renderer/package.json b/packages/g-plugin-zdog-svg-renderer/package.json index e41f9b1c4..2520ea1c2 100644 --- a/packages/g-plugin-zdog-svg-renderer/package.json +++ b/packages/g-plugin-zdog-svg-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-plugin-zdog-svg-renderer", - "version": "2.0.28", + "version": "2.0.29", "description": "A G plugin of renderer implementation with Zdog", "keywords": [ "antv", diff --git a/packages/g-svg/CHANGELOG.md b/packages/g-svg/CHANGELOG.md index 4fff68691..fa03deff1 100644 --- a/packages/g-svg/CHANGELOG.md +++ b/packages/g-svg/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g-svg +## 2.0.29 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-dom-interaction@2.1.16 + - @antv/g-plugin-svg-picker@2.0.29 + - @antv/g-plugin-svg-renderer@2.2.11 + ## 2.0.28 ### Patch Changes diff --git a/packages/g-svg/package.json b/packages/g-svg/package.json index 02bf75df6..8449b838d 100644 --- a/packages/g-svg/package.json +++ b/packages/g-svg/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-svg", - "version": "2.0.28", + "version": "2.0.29", "description": "A renderer implemented by SVG", "keywords": [ "antv", diff --git a/packages/g-web-animations-api/CHANGELOG.md b/packages/g-web-animations-api/CHANGELOG.md index a0bf2e1b6..0ae94bdb2 100644 --- a/packages/g-web-animations-api/CHANGELOG.md +++ b/packages/g-web-animations-api/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-web-animations-api +## 2.1.16 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + ## 2.1.15 ### Patch Changes diff --git a/packages/g-web-animations-api/package.json b/packages/g-web-animations-api/package.json index 7bf938205..c22f45bf2 100644 --- a/packages/g-web-animations-api/package.json +++ b/packages/g-web-animations-api/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-web-animations-api", - "version": "2.1.15", + "version": "2.1.16", "description": "A simple implementation of Web Animations API.", "keywords": [ "antv", diff --git a/packages/g-web-components/CHANGELOG.md b/packages/g-web-components/CHANGELOG.md index 62e4419dd..d89613350 100644 --- a/packages/g-web-components/CHANGELOG.md +++ b/packages/g-web-components/CHANGELOG.md @@ -1,5 +1,14 @@ # @antv/g-web-components +## 2.0.39 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-canvas@2.0.34 + - @antv/g-webgl@2.0.38 + ## 2.0.38 ### Patch Changes diff --git a/packages/g-web-components/package.json b/packages/g-web-components/package.json index 57c52dc76..40f760329 100644 --- a/packages/g-web-components/package.json +++ b/packages/g-web-components/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-web-components", - "version": "2.0.38", + "version": "2.0.39", "description": "A declarative usage for G implemented with WebComponents", "keywords": [ "antv", diff --git a/packages/g-webgl/CHANGELOG.md b/packages/g-webgl/CHANGELOG.md index 001ef28c9..a19ea1556 100644 --- a/packages/g-webgl/CHANGELOG.md +++ b/packages/g-webgl/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgl +## 2.0.38 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-device-renderer@2.2.13 + - @antv/g-plugin-dom-interaction@2.1.16 + - @antv/g-plugin-html-renderer@2.1.16 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.0.37 ### Patch Changes diff --git a/packages/g-webgl/package.json b/packages/g-webgl/package.json index 7f40cc240..1bfeab3ff 100644 --- a/packages/g-webgl/package.json +++ b/packages/g-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgl", - "version": "2.0.37", + "version": "2.0.38", "description": "A renderer implemented by WebGL1/2", "keywords": [ "antv", diff --git a/packages/g-webgpu/CHANGELOG.md b/packages/g-webgpu/CHANGELOG.md index 583bcbc5f..dd867e319 100644 --- a/packages/g-webgpu/CHANGELOG.md +++ b/packages/g-webgpu/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgpu +## 2.0.38 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-plugin-device-renderer@2.2.13 + - @antv/g-plugin-dom-interaction@2.1.16 + - @antv/g-plugin-html-renderer@2.1.16 + - @antv/g-plugin-image-loader@2.1.13 + ## 2.0.37 ### Patch Changes diff --git a/packages/g-webgpu/package.json b/packages/g-webgpu/package.json index 1e71b81c4..ba43a12c1 100644 --- a/packages/g-webgpu/package.json +++ b/packages/g-webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgpu", - "version": "2.0.37", + "version": "2.0.38", "description": "A renderer implemented by WebGPU", "keywords": [ "antv", diff --git a/packages/g/CHANGELOG.md b/packages/g/CHANGELOG.md index ecdcd1bde..c5063fbbf 100644 --- a/packages/g/CHANGELOG.md +++ b/packages/g/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g +## 6.1.16 + +### Patch Changes + +- Updated dependencies [1d13497] + - @antv/g-lite@2.2.11 + - @antv/g-camera-api@2.0.30 + - @antv/g-dom-mutation-observer-api@2.0.27 + - @antv/g-web-animations-api@2.1.16 + ## 6.1.15 ### Patch Changes diff --git a/packages/g/package.json b/packages/g/package.json index 6670b398a..1abf2e3ef 100644 --- a/packages/g/package.json +++ b/packages/g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g", - "version": "6.1.15", + "version": "6.1.16", "description": "A core module for rendering engine implements DOM API.", "keywords": [ "antv", diff --git a/packages/react-g/CHANGELOG.md b/packages/react-g/CHANGELOG.md index 89db7dbdc..72f6b0103 100644 --- a/packages/react-g/CHANGELOG.md +++ b/packages/react-g/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/react-g +## 2.0.32 + +### Patch Changes + +- @antv/g@6.1.16 + ## 2.0.31 ### Patch Changes diff --git a/packages/react-g/package.json b/packages/react-g/package.json index c264cc495..37ed89567 100644 --- a/packages/react-g/package.json +++ b/packages/react-g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/react-g", - "version": "2.0.31", + "version": "2.0.32", "description": "react render for @antv/g", "keywords": [ "react",