diff --git a/__tests__/demos/bugfix/index.ts b/__tests__/demos/bugfix/index.ts index 96e15b67c..07da08e87 100644 --- a/__tests__/demos/bugfix/index.ts +++ b/__tests__/demos/bugfix/index.ts @@ -8,3 +8,4 @@ export { gradient_text } from './1572'; export { zoom } from './1667'; export { test_pick } from './1747'; export { issue_1760 } from './1760'; +export { textWordWrap } from './textWordWrap'; diff --git a/__tests__/demos/bugfix/textWordWrap.ts b/__tests__/demos/bugfix/textWordWrap.ts new file mode 100644 index 000000000..31583e14c --- /dev/null +++ b/__tests__/demos/bugfix/textWordWrap.ts @@ -0,0 +1,108 @@ +import { Canvas, Text, Rect } from '@antv/g'; + +export async function textWordWrap(context: { canvas: Canvas }) { + const { canvas } = context; + await canvas.ready; + + // fontSize: 12 + const text0 = new Text({ + style: { + x: 100, + y: 100, + fill: '#000000', + fontFamily: 'Roboto, PingFangSC, Microsoft YaHei, Arial, sans-serif', + // bold 12px Roboto, PingFangSC, "Microsoft YaHei", Arial, sans-serif + fontSize: 12, + fontWeight: 'normal', + linkTextFill: '#326EF4', + maxLines: 1, + opacity: 1, + // text: "哈哈哈哈哈哈哈哈", + text: '11111111', + // textAlign: "right", + textBaseline: 'top', + textOverflow: 'ellipsis', + wordWrap: true, + wordWrapWidth: 52, + }, + }); + const rect0 = new Rect({ + style: { + x: text0.style.x, + y: text0.style.y, + width: text0.style.wordWrapWidth, + height: text0.style.fontSize, + stroke: '#000000', + }, + }); + + // fontSize: 20 + const text1 = new Text({ + style: { + x: 100, + y: 300, + fill: '#000000', + fontFamily: 'Roboto, PingFangSC, Microsoft YaHei, Arial, sans-serif', + // bold 12px Roboto, PingFangSC, "Microsoft YaHei", Arial, sans-serif + fontSize: 20, + fontWeight: 'normal', + linkTextFill: '#326EF4', + maxLines: 1, + opacity: 1, + // text: '哈哈哈哈哈哈哈哈', + text: '11111111111111111', + // textAlign: "right", + textBaseline: 'top', + textOverflow: 'ellipsis', + wordWrap: true, + wordWrapWidth: 167, + }, + }); + const rect1 = new Rect({ + style: { + x: text1.style.x, + y: text1.style.y, + width: text1.style.wordWrapWidth, + height: text1.style.fontSize, + stroke: '#000000', + }, + }); + + // BUG: If there is a line break, no ellipsis will appear + const text2 = new Text({ + style: { + x: 200, + y: 200, + fill: '#000000', + fontFamily: 'Roboto, PingFangSC, Microsoft YaHei, Arial, sans-serif', + // bold 12px Roboto, PingFangSC, "Microsoft YaHei", Arial, sans-serif + fontSize: 12, + fontWeight: 'normal', + linkTextFill: '#326EF4', + maxLines: 3, + opacity: 1, + text: '哈哈哈哈\n哈哈哈哈\n哈哈哈哈\n', + // textAlign: 'right', + textBaseline: 'top', + textOverflow: 'ellipsis', + wordWrap: true, + wordWrapWidth: 84, + }, + }); + const rect2 = new Rect({ + style: { + x: text2.style.x, + y: text2.style.y, + width: text2.style.wordWrapWidth, + height: +text2.style.fontSize * text2.style.maxLines, + stroke: '#000000', + }, + }); + + canvas.appendChild(text0); + canvas.appendChild(rect0); + canvas.appendChild(text1); + canvas.appendChild(rect1); + canvas.appendChild(text2); + canvas.appendChild(rect2); +} diff --git a/packages/g-camera-api/CHANGELOG.md b/packages/g-camera-api/CHANGELOG.md index 7ff2549b5..6019737ea 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.22 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.21 ### Patch Changes diff --git a/packages/g-camera-api/package.json b/packages/g-camera-api/package.json index bee4c8f0f..28c9cf2e4 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.21", + "version": "2.0.22", "description": "A simple implementation of Camera API.", "keywords": [ "antv", diff --git a/packages/g-canvas/CHANGELOG.md b/packages/g-canvas/CHANGELOG.md index 827ec57dd..e157e52c4 100644 --- a/packages/g-canvas/CHANGELOG.md +++ b/packages/g-canvas/CHANGELOG.md @@ -1,5 +1,19 @@ # @antv/g-canvas +## 2.0.26 + +### Patch Changes + +- Updated dependencies [ad11268d] +- Updated dependencies [ad11268d] + - @antv/g-plugin-canvas-renderer@2.2.5 + - @antv/g-lite@2.2.3 + - @antv/g-plugin-canvas-picker@2.1.5 + - @antv/g-plugin-canvas-path-generator@2.1.3 + - @antv/g-plugin-dom-interaction@2.1.8 + - @antv/g-plugin-html-renderer@2.1.8 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.0.25 ### Patch Changes diff --git a/packages/g-canvas/package.json b/packages/g-canvas/package.json index fa3e8d439..c2dc7477f 100644 --- a/packages/g-canvas/package.json +++ b/packages/g-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvas", - "version": "2.0.25", + "version": "2.0.26", "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 763ff03d0..ed14dc4d5 100644 --- a/packages/g-canvaskit/CHANGELOG.md +++ b/packages/g-canvaskit/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-canvaskit +## 1.0.25 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-canvas-picker@2.1.5 + - @antv/g-plugin-canvas-path-generator@2.1.3 + - @antv/g-plugin-canvaskit-renderer@2.1.5 + - @antv/g-plugin-dom-interaction@2.1.8 + - @antv/g-plugin-html-renderer@2.1.8 + - @antv/g-plugin-image-loader@2.1.5 + ## 1.0.24 ### Patch Changes diff --git a/packages/g-canvaskit/package.json b/packages/g-canvaskit/package.json index 7c3a99286..9510a1518 100644 --- a/packages/g-canvaskit/package.json +++ b/packages/g-canvaskit/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvaskit", - "version": "1.0.24", + "version": "1.0.25", "description": "A renderer implemented by CanvasKit", "keywords": [ "antv", diff --git a/packages/g-components/CHANGELOG.md b/packages/g-components/CHANGELOG.md index 3629c93f1..16a88ba8a 100644 --- a/packages/g-components/CHANGELOG.md +++ b/packages/g-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-components +## 2.0.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-components/package.json b/packages/g-components/package.json index 43459e9fb..40be0eaa8 100644 --- a/packages/g-components/package.json +++ b/packages/g-components/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-components", - "version": "2.0.18", + "version": "2.0.19", "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 13516fc21..4709cd29c 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-dom-mutation-observer-api/package.json b/packages/g-dom-mutation-observer-api/package.json index 11e3bd3ee..9eb6f486d 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.18", + "version": "2.0.19", "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 97e608b08..c1530968c 100644 --- a/packages/g-gesture/CHANGELOG.md +++ b/packages/g-gesture/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-gesture +## 3.0.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 3.0.18 ### Patch Changes diff --git a/packages/g-gesture/package.json b/packages/g-gesture/package.json index d71b570e1..1f08af3f7 100644 --- a/packages/g-gesture/package.json +++ b/packages/g-gesture/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-gesture", - "version": "3.0.18", + "version": "3.0.19", "description": "G Gesture", "keywords": [ "antv", diff --git a/packages/g-image-exporter/CHANGELOG.md b/packages/g-image-exporter/CHANGELOG.md index 4cc2b35e3..afa8c971c 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.0.18 ### Patch Changes diff --git a/packages/g-image-exporter/package.json b/packages/g-image-exporter/package.json index bd50e2178..3d9cbba47 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.18", + "version": "1.0.19", "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 6d20516ca..9a4902f70 100644 --- a/packages/g-lite/CHANGELOG.md +++ b/packages/g-lite/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/g-lite +## 2.2.3 + +### Patch Changes + +- ad11268d: fix: ellipses are not displayed when the text contains line breaks + ## 2.2.2 ### Patch Changes diff --git a/packages/g-lite/package.json b/packages/g-lite/package.json index 1db1ddd01..09d332138 100644 --- a/packages/g-lite/package.json +++ b/packages/g-lite/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-lite", - "version": "2.2.2", + "version": "2.2.3", "description": "A core module for rendering engine implements DOM API.", "keywords": [ "antv", diff --git a/packages/g-lite/src/services/TextService.ts b/packages/g-lite/src/services/TextService.ts index a63bfd3ee..52320f7de 100644 --- a/packages/g-lite/src/services/TextService.ts +++ b/packages/g-lite/src/services/TextService.ts @@ -333,8 +333,6 @@ export class TextService { } } - private setGraphemeOnPath() {} - private wordWrap( text: string, parsedStyle: ParsedTextStyleProps, @@ -374,6 +372,31 @@ export class TextService { return prev + calcWidth(cur); }, 0); + function appendEllipsis(lineIndex: 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].length; + 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; + } + + lastLineWidth += width; + } + + lines[lineIndex] = + (lines[lineIndex] || '').slice(0, lastLineIndex) + ellipsis; + } + const chars = Array.from(text); for (let i = 0; i < chars.length; i++) { const char = chars[i]; @@ -388,6 +411,11 @@ export class TextService { // exceed maxLines, break immediately if (currentIndex >= maxLines) { parsedStyle.isOverflowing = true; + + if (i < chars.length - 1) { + appendEllipsis(currentIndex - 1); + } + break; } @@ -400,26 +428,7 @@ export class TextService { if (currentIndex + 1 >= maxLines) { parsedStyle.isOverflowing = true; - // 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) { - // Backspace from line's end. - const currentLineLength = lines[currentIndex].length; - let lastLineWidth = 0; - let lastLineIndex = currentLineLength; - for (let i = 0; i < currentLineLength; i++) { - const width = calcWidth(lines[currentIndex][i]); - if (lastLineWidth + width + ellipsisWidth > maxWidth) { - lastLineIndex = i; - break; - } - - lastLineWidth += width; - } - - lines[currentIndex] = - (lines[currentIndex] || '').slice(0, lastLineIndex) + ellipsis; - } + appendEllipsis(currentIndex); break; } diff --git a/packages/g-lottie-player/CHANGELOG.md b/packages/g-lottie-player/CHANGELOG.md index 338722fad..cce33db80 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.0.18 ### Patch Changes diff --git a/packages/g-lottie-player/package.json b/packages/g-lottie-player/package.json index 9b5fc47d0..9b1b2d2ff 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.18", + "version": "1.0.19", "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 1339eb6d5..a01470ba9 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.0.18 ### Patch Changes diff --git a/packages/g-mobile-canvas-element/package.json b/packages/g-mobile-canvas-element/package.json index c50e3dceb..6472484a4 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.18", + "version": "1.0.19", "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 22febd2c1..52a8f96bc 100644 --- a/packages/g-mobile-canvas/CHANGELOG.md +++ b/packages/g-mobile-canvas/CHANGELOG.md @@ -1,5 +1,20 @@ # @antv/g-mobile-canvas +## 1.0.23 + +### Patch Changes + +- Updated dependencies [ad11268d] +- Updated dependencies [ad11268d] + - @antv/g-plugin-canvas-renderer@2.2.5 + - @antv/g-lite@2.2.3 + - @antv/g-plugin-canvas-picker@2.1.5 + - @antv/g-plugin-canvas-path-generator@2.1.3 + - @antv/g-plugin-dragndrop@2.0.19 + - @antv/g-plugin-gesture@2.0.19 + - @antv/g-plugin-image-loader@2.1.5 + - @antv/g-plugin-mobile-interaction@1.0.19 + ## 1.0.22 ### Patch Changes diff --git a/packages/g-mobile-canvas/package.json b/packages/g-mobile-canvas/package.json index 2477bffc0..7e6768519 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.22", + "version": "1.0.23", "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 01211f3d0..71d4ff34c 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.21 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-dragndrop@2.0.19 + - @antv/g-plugin-gesture@2.0.19 + - @antv/g-plugin-mobile-interaction@1.0.19 + - @antv/g-plugin-svg-picker@2.0.21 + - @antv/g-plugin-svg-renderer@2.2.3 + ## 1.0.20 ### Patch Changes diff --git a/packages/g-mobile-svg/package.json b/packages/g-mobile-svg/package.json index 3295135fb..82ce6d3b3 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.20", + "version": "1.0.21", "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 4fe0ed60c..c24a76ec2 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.30 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-device-renderer@2.2.5 + - @antv/g-plugin-dragndrop@2.0.19 + - @antv/g-plugin-gesture@2.0.19 + - @antv/g-plugin-html-renderer@2.1.8 + - @antv/g-plugin-image-loader@2.1.5 + - @antv/g-plugin-mobile-interaction@1.0.19 + ## 1.0.29 ### Patch Changes diff --git a/packages/g-mobile-webgl/package.json b/packages/g-mobile-webgl/package.json index 987491473..98e5ccf23 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.29", + "version": "1.0.30", "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 065a1ca81..e64bd3af3 100644 --- a/packages/g-pattern/CHANGELOG.md +++ b/packages/g-pattern/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-pattern +## 2.0.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-pattern/package.json b/packages/g-pattern/package.json index 52cbb66e4..548aa23ce 100644 --- a/packages/g-pattern/package.json +++ b/packages/g-pattern/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-pattern", - "version": "2.0.18", + "version": "2.0.19", "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 0520781aa..5754000f8 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.28 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-device-renderer@2.2.5 + ## 2.0.27 ### Patch Changes diff --git a/packages/g-plugin-3d/package.json b/packages/g-plugin-3d/package.json index d0ba42787..73e3e379b 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.27", + "version": "2.0.28", "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 e4107dd9f..353539a53 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.8 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.1.7 ### Patch Changes diff --git a/packages/g-plugin-a11y/package.json b/packages/g-plugin-a11y/package.json index 940ff23b6..58d2539af 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.7", + "version": "1.1.8", "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 9ac18cf09..e3a79b3ad 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.0.18 ### Patch Changes diff --git a/packages/g-plugin-annotation/package.json b/packages/g-plugin-annotation/package.json index c8423f529..432c3b5ef 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.18", + "version": "1.0.19", "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 a1de6c77e..d4a774bbd 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-box2d/package.json b/packages/g-plugin-box2d/package.json index 15deeda3e..1dc9af772 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.18", + "version": "2.0.19", "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 82cb86a4c..768ae24a4 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.3 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.1.2 ### Patch Changes diff --git a/packages/g-plugin-canvas-path-generator/package.json b/packages/g-plugin-canvas-path-generator/package.json index 25720acc8..ec841bac9 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.2", + "version": "2.1.3", "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 5d38a55f9..752be4a1c 100644 --- a/packages/g-plugin-canvas-picker/CHANGELOG.md +++ b/packages/g-plugin-canvas-picker/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g-plugin-canvas-picker +## 2.1.5 + +### Patch Changes + +- Updated dependencies [ad11268d] +- Updated dependencies [ad11268d] + - @antv/g-plugin-canvas-renderer@2.2.5 + - @antv/g-lite@2.2.3 + - @antv/g-plugin-canvas-path-generator@2.1.3 + ## 2.1.4 ### Patch Changes diff --git a/packages/g-plugin-canvas-picker/package.json b/packages/g-plugin-canvas-picker/package.json index 17de8fab5..8d597bb40 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.4", + "version": "2.1.5", "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 ef5a8c947..331a23db6 100644 --- a/packages/g-plugin-canvas-renderer/CHANGELOG.md +++ b/packages/g-plugin-canvas-renderer/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g-plugin-canvas-renderer +## 2.2.5 + +### Patch Changes + +- ad11268d: fix: code modifications missed in the previous version +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-canvas-path-generator@2.1.3 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.2.4 ### Patch Changes diff --git a/packages/g-plugin-canvas-renderer/package.json b/packages/g-plugin-canvas-renderer/package.json index a2b92a9fc..ab6754f73 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.4", + "version": "2.2.5", "description": "A G plugin of renderer implementation with Canvas2D API", "keywords": [ "antv", diff --git a/packages/g-plugin-canvas-renderer/src/shapes/styles/Image.ts b/packages/g-plugin-canvas-renderer/src/shapes/styles/Image.ts index 74a9aa34c..1738e8d69 100644 --- a/packages/g-plugin-canvas-renderer/src/shapes/styles/Image.ts +++ b/packages/g-plugin-canvas-renderer/src/shapes/styles/Image.ts @@ -49,6 +49,7 @@ export class ImageRenderer extends DefaultRenderer { .createDownSampledImage(src, object) .then((res) => { // rerender + // object.dirty(); object.renderable.dirty = true; object.ownerDocument.defaultView.context.renderingService.dirtify(); }) @@ -87,12 +88,17 @@ export class ImageRenderer extends DefaultRenderer { if (!imageCache?.gridSize) { this.imagePool - .createImageTiles(src, [], object) - .then(() => { - // rerender - object.renderable.dirty = true; - object.ownerDocument.defaultView.context.renderingService.dirtify(); - }) + .createImageTiles( + src, + [], + () => { + // rerender + // object.dirty(); + object.renderable.dirty = true; + object.ownerDocument.defaultView.context.renderingService.dirtify(); + }, + object, + ) .catch(() => { // }); diff --git a/packages/g-plugin-canvaskit-renderer/CHANGELOG.md b/packages/g-plugin-canvaskit-renderer/CHANGELOG.md index 98f8a3a28..588393e3e 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.5 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.1.4 ### Patch Changes diff --git a/packages/g-plugin-canvaskit-renderer/package.json b/packages/g-plugin-canvaskit-renderer/package.json index 34ced9d62..a4880c3e9 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.4", + "version": "2.1.5", "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 0a1277dac..63f60f60f 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-control/package.json b/packages/g-plugin-control/package.json index ed97a1e4c..9fb5c4086 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.18", + "version": "2.0.19", "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 96ecee2cc..92af4a24e 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-css-select/package.json b/packages/g-plugin-css-select/package.json index af73a2db5..3a8193f7d 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.18", + "version": "2.0.19", "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 f963e6d22..395baf69e 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.5 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.2.4 ### Patch Changes diff --git a/packages/g-plugin-device-renderer/package.json b/packages/g-plugin-device-renderer/package.json index b35ad8c60..490024340 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.4", + "version": "2.2.5", "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 6d29cad70..5b77781cd 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.8 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.1.7 ### Patch Changes diff --git a/packages/g-plugin-dom-interaction/package.json b/packages/g-plugin-dom-interaction/package.json index 85c60a875..87a6558bc 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.7", + "version": "2.1.8", "description": "A G plugin", "keywords": [ "antv", diff --git a/packages/g-plugin-dragndrop/CHANGELOG.md b/packages/g-plugin-dragndrop/CHANGELOG.md index 1f12636d3..91dd2b687 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-dragndrop/package.json b/packages/g-plugin-dragndrop/package.json index 7f2a6022f..0a4389a4e 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.18", + "version": "2.0.19", "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 6a71f38d4..3a501c170 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-gesture/package.json b/packages/g-plugin-gesture/package.json index 357138bdd..172ed7739 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.18", + "version": "2.0.19", "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 c8a3a2dfc..ed8237689 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.8 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.1.7 ### Patch Changes diff --git a/packages/g-plugin-html-renderer/package.json b/packages/g-plugin-html-renderer/package.json index c6721ae3f..9db1a4579 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.7", + "version": "2.1.8", "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 47a19c2bf..018921052 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.5 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.1.4 ### Patch Changes diff --git a/packages/g-plugin-image-loader/package.json b/packages/g-plugin-image-loader/package.json index b1a7913c5..8ca1a5b72 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.4", + "version": "2.1.5", "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 ce5ee901f..b9342a5da 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-matterjs/package.json b/packages/g-plugin-matterjs/package.json index cec7f92d2..dfe716ab3 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.18", + "version": "2.0.19", "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 81d79cc27..85ad7db59 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 1.0.18 ### Patch Changes diff --git a/packages/g-plugin-mobile-interaction/package.json b/packages/g-plugin-mobile-interaction/package.json index a9b6eae4c..d84a7dbd5 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.18", + "version": "1.0.19", "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 b18e5cbe3..3e2bac369 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-physx/package.json b/packages/g-plugin-physx/package.json index 01b69ef6d..a0b2fb601 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.18", + "version": "2.0.19", "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 1a5d26049..2f9fc965b 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.26 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-canvas@2.0.26 + ## 2.0.25 ### Patch Changes diff --git a/packages/g-plugin-rough-canvas-renderer/package.json b/packages/g-plugin-rough-canvas-renderer/package.json index d06e57d48..42b6ebb51 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.25", + "version": "2.0.26", "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 cd7c28b75..f909de3ae 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.22 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-svg@2.0.21 + ## 2.0.21 ### Patch Changes diff --git a/packages/g-plugin-rough-svg-renderer/package.json b/packages/g-plugin-rough-svg-renderer/package.json index 510b5b8f1..7861b0d5d 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.21", + "version": "2.0.22", "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 a96dfd60a..f55af55c8 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.21 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-svg-renderer@2.2.3 + ## 2.0.20 ### Patch Changes diff --git a/packages/g-plugin-svg-picker/package.json b/packages/g-plugin-svg-picker/package.json index ce4c05a4c..1280874b1 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.20", + "version": "2.0.21", "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 aeffda6d8..d225a6f3b 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.3 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.2.2 ### Patch Changes diff --git a/packages/g-plugin-svg-renderer/package.json b/packages/g-plugin-svg-renderer/package.json index b78e4b705..1ac4fe294 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.2", + "version": "2.2.3", "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 f649b1f5c..f1630ce8e 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.19 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.0.18 ### Patch Changes diff --git a/packages/g-plugin-yoga/package.json b/packages/g-plugin-yoga/package.json index c7ad545a2..daf3526aa 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.18", + "version": "2.0.19", "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 d3acfe1b9..6c80cceb2 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.25 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-canvas@2.0.26 + ## 2.0.24 ### Patch Changes diff --git a/packages/g-plugin-zdog-canvas-renderer/package.json b/packages/g-plugin-zdog-canvas-renderer/package.json index e7b9516c9..e42cc68a9 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.24", + "version": "2.0.25", "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 b0f643c94..bb2460a33 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.21 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-svg-renderer@2.2.3 + - @antv/g-svg@2.0.21 + ## 2.0.20 ### Patch Changes diff --git a/packages/g-plugin-zdog-svg-renderer/package.json b/packages/g-plugin-zdog-svg-renderer/package.json index f3cb4eac8..fff0c9c51 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.20", + "version": "2.0.21", "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 9c8009ceb..86ee387ad 100644 --- a/packages/g-svg/CHANGELOG.md +++ b/packages/g-svg/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g-svg +## 2.0.21 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-dom-interaction@2.1.8 + - @antv/g-plugin-svg-picker@2.0.21 + - @antv/g-plugin-svg-renderer@2.2.3 + ## 2.0.20 ### Patch Changes diff --git a/packages/g-svg/package.json b/packages/g-svg/package.json index a5f79edc3..29c270652 100644 --- a/packages/g-svg/package.json +++ b/packages/g-svg/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-svg", - "version": "2.0.20", + "version": "2.0.21", "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 5d4e23cea..c81e75fbe 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.8 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + ## 2.1.7 ### Patch Changes diff --git a/packages/g-web-animations-api/package.json b/packages/g-web-animations-api/package.json index 01370a712..2921645b8 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.7", + "version": "2.1.8", "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 be2e36fbe..4491fd068 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.31 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-canvas@2.0.26 + - @antv/g-webgl@2.0.30 + ## 2.0.30 ### Patch Changes diff --git a/packages/g-web-components/package.json b/packages/g-web-components/package.json index 04dfd6f9b..5c283ad16 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.30", + "version": "2.0.31", "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 001328b99..5a124f229 100644 --- a/packages/g-webgl/CHANGELOG.md +++ b/packages/g-webgl/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgl +## 2.0.30 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-device-renderer@2.2.5 + - @antv/g-plugin-dom-interaction@2.1.8 + - @antv/g-plugin-html-renderer@2.1.8 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.0.29 ### Patch Changes diff --git a/packages/g-webgl/package.json b/packages/g-webgl/package.json index 94e9a9212..37e01e599 100644 --- a/packages/g-webgl/package.json +++ b/packages/g-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgl", - "version": "2.0.29", + "version": "2.0.30", "description": "A renderer implemented by WebGL1/2", "keywords": [ "antv", diff --git a/packages/g-webgpu/CHANGELOG.md b/packages/g-webgpu/CHANGELOG.md index 902d14e99..4fec78f4c 100644 --- a/packages/g-webgpu/CHANGELOG.md +++ b/packages/g-webgpu/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgpu +## 2.0.30 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-plugin-device-renderer@2.2.5 + - @antv/g-plugin-dom-interaction@2.1.8 + - @antv/g-plugin-html-renderer@2.1.8 + - @antv/g-plugin-image-loader@2.1.5 + ## 2.0.29 ### Patch Changes diff --git a/packages/g-webgpu/package.json b/packages/g-webgpu/package.json index 5f3b719f8..7db46f743 100644 --- a/packages/g-webgpu/package.json +++ b/packages/g-webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgpu", - "version": "2.0.29", + "version": "2.0.30", "description": "A renderer implemented by WebGPU", "keywords": [ "antv", diff --git a/packages/g/CHANGELOG.md b/packages/g/CHANGELOG.md index 7ffd6cdd6..ba88300d6 100644 --- a/packages/g/CHANGELOG.md +++ b/packages/g/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g +## 6.1.8 + +### Patch Changes + +- Updated dependencies [ad11268d] + - @antv/g-lite@2.2.3 + - @antv/g-camera-api@2.0.22 + - @antv/g-dom-mutation-observer-api@2.0.19 + - @antv/g-web-animations-api@2.1.8 + ## 6.1.7 ### Patch Changes diff --git a/packages/g/package.json b/packages/g/package.json index 51fef15c0..f44f8fb69 100644 --- a/packages/g/package.json +++ b/packages/g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g", - "version": "6.1.7", + "version": "6.1.8", "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 bbd367a2f..55c4906de 100644 --- a/packages/react-g/CHANGELOG.md +++ b/packages/react-g/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/react-g +## 2.0.24 + +### Patch Changes + +- @antv/g@6.1.8 + ## 2.0.23 ### Patch Changes diff --git a/packages/react-g/package.json b/packages/react-g/package.json index 9cc5551e9..bcede7c70 100644 --- a/packages/react-g/package.json +++ b/packages/react-g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/react-g", - "version": "2.0.23", + "version": "2.0.24", "description": "react render for @antv/g", "keywords": [ "react",