diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea5dcc587..041243ea8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,12 +25,12 @@ jobs: node-version: 16 cache: 'pnpm' - - name: Install Playwright browsers - run: npx playwright install --with-deps - - name: Install dependencies run: pnpm install + - name: Install Playwright browsers + run: npx playwright install --with-deps + - name: Build run: pnpm build diff --git a/__tests__/demos/bugfix/1636.ts b/__tests__/demos/bugfix/1636.ts new file mode 100644 index 000000000..01d233482 --- /dev/null +++ b/__tests__/demos/bugfix/1636.ts @@ -0,0 +1,48 @@ +import { Image, Group, Rect } from '../../../packages/g'; + +export async function image(context) { + const { canvas } = context; + await canvas.ready; + + const rect = new Rect({ + style: { + x: 0, + y: 0, + width: 600, + height: 600, + }, + }); + const group = new Group({ + style: { + clipPath: rect, + }, + }); + canvas.appendChild(group); + + const img = new window.Image(); + img.onload = () => { + const image = new Image({ + style: { + x: 0, + y: 0, + width: 100, + height: 100, + img, + }, + }); + const image2 = new Image({ + style: { + x: 50, + y: 0, + width: 100, + height: 100, + img, + }, + }); + group.appendChild(image); + group.appendChild(image2); + }; + img.src = + 'https://gw.alipayobjects.com/mdn/rms_6ae20b/afts/img/A*_aqoS73Se3sAAAAAAAAAAAAAARQnAQ'; + img.crossOrigin = 'anonymous'; +} diff --git a/__tests__/demos/bugfix/index.ts b/__tests__/demos/bugfix/index.ts index 188addbee..757019937 100644 --- a/__tests__/demos/bugfix/index.ts +++ b/__tests__/demos/bugfix/index.ts @@ -1 +1,2 @@ export { html } from './1610'; +export { image } from './1636'; diff --git a/__tests__/main.ts b/__tests__/main.ts index 1a4a13869..937a0267d 100644 --- a/__tests__/main.ts +++ b/__tests__/main.ts @@ -1,5 +1,5 @@ import * as lil from 'lil-gui'; -import { Canvas, CanvasEvent } from '../packages/g'; +import { runtime, Canvas, CanvasEvent } from '../packages/g'; import { Renderer as CanvasRenderer } from '../packages/g-canvas'; import { Renderer as CanvaskitRenderer } from '../packages/g-canvaskit'; import { Renderer as SVGRenderer } from '../packages/g-svg'; @@ -16,6 +16,8 @@ import * as hammerjs from './demos/hammerjs'; import * as lottie from './demos/lottie'; import * as bugfix from './demos/bugfix'; +runtime.enableCSSParsing = false; + const tests = { ...createSpecRender(namespace(basic2d, '2d')), ...createSpecRender(namespace(basic3d, '3d')), diff --git a/__tests__/unit/abstract-renderer.spec.ts b/__tests__/unit/abstract-renderer.spec.ts index 073064950..15ec8c6bd 100644 --- a/__tests__/unit/abstract-renderer.spec.ts +++ b/__tests__/unit/abstract-renderer.spec.ts @@ -10,6 +10,7 @@ describe('Abstract renderer', () => { enableCulling: false, enableDirtyRectangleRendering: true, enableDirtyRectangleRenderingDebug: false, + enableSizeAttenuation: true, }); renderer.setConfig({ enableAutoRendering: false }); @@ -19,6 +20,7 @@ describe('Abstract renderer', () => { enableCulling: false, enableDirtyRectangleRendering: true, enableDirtyRectangleRenderingDebug: false, + enableSizeAttenuation: true, }); expect(renderer.getPlugins().length).toBe(0); diff --git a/jest.config.js b/jest.config.js index a5a077262..617cbe372 100644 --- a/jest.config.js +++ b/jest.config.js @@ -42,7 +42,7 @@ module.exports = { '/__tests__/unit/*.spec.+(ts|tsx|js)', ], testPathIgnorePatterns: process.env.CI - ? ['/__tests__/unit/g-gesture'] + ? ['/__tests__/unit/g-gesture', '/__tests__/main.ts'] : ['/__tests__/unit/g-gesture'], preset: 'ts-jest', transform: { diff --git a/packages/g-camera-api/CHANGELOG.md b/packages/g-camera-api/CHANGELOG.md index 46c2eaf7f..e8146822a 100644 --- a/packages/g-camera-api/CHANGELOG.md +++ b/packages/g-camera-api/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-camera-api +## 1.2.24 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.2.23 ### Patch Changes diff --git a/packages/g-camera-api/package.json b/packages/g-camera-api/package.json index 38485c250..40062c820 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": "1.2.23", + "version": "1.2.24", "description": "A simple implementation of Camera API.", "keywords": [ "antv", diff --git a/packages/g-canvas/CHANGELOG.md b/packages/g-canvas/CHANGELOG.md index 8cf309867..393c5d10c 100644 --- a/packages/g-canvas/CHANGELOG.md +++ b/packages/g-canvas/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-canvas +## 1.11.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-canvas-path-generator@1.3.23 + - @antv/g-plugin-canvas-picker@1.10.25 + - @antv/g-plugin-canvas-renderer@1.9.25 + - @antv/g-plugin-dom-interaction@1.9.23 + - @antv/g-plugin-html-renderer@1.9.26 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.11.27 ### Patch Changes diff --git a/packages/g-canvas/package.json b/packages/g-canvas/package.json index de73bd87f..8e95e6b66 100644 --- a/packages/g-canvas/package.json +++ b/packages/g-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvas", - "version": "1.11.27", + "version": "1.11.28", "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 ea820c628..d1a2b7d3c 100644 --- a/packages/g-canvaskit/CHANGELOG.md +++ b/packages/g-canvaskit/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-canvaskit +## 0.10.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-canvas-path-generator@1.3.23 + - @antv/g-plugin-canvas-picker@1.10.25 + - @antv/g-plugin-canvaskit-renderer@1.3.24 + - @antv/g-plugin-dom-interaction@1.9.23 + - @antv/g-plugin-html-renderer@1.9.26 + - @antv/g-plugin-image-loader@1.3.23 + ## 0.10.27 ### Patch Changes diff --git a/packages/g-canvaskit/package.json b/packages/g-canvaskit/package.json index c05a20c62..a62d3deb8 100644 --- a/packages/g-canvaskit/package.json +++ b/packages/g-canvaskit/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-canvaskit", - "version": "0.10.27", + "version": "0.10.28", "description": "A renderer implemented by CanvasKit", "keywords": [ "antv", diff --git a/packages/g-components/CHANGELOG.md b/packages/g-components/CHANGELOG.md index cc2cea7d9..6e59256c7 100644 --- a/packages/g-components/CHANGELOG.md +++ b/packages/g-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-components +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-components/package.json b/packages/g-components/package.json index 374e35ba3..01842fe50 100644 --- a/packages/g-components/package.json +++ b/packages/g-components/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-components", - "version": "1.9.22", + "version": "1.9.23", "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 e1dddbea2..9b87d3361 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 +## 1.2.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.2.22 ### Patch Changes diff --git a/packages/g-dom-mutation-observer-api/package.json b/packages/g-dom-mutation-observer-api/package.json index b1c0e263b..fb7cacb3a 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": "1.2.22", + "version": "1.2.23", "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 2c8784853..9dec6892a 100644 --- a/packages/g-gesture/CHANGELOG.md +++ b/packages/g-gesture/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-gesture +## 2.2.26 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 2.2.25 ### Patch Changes diff --git a/packages/g-gesture/package.json b/packages/g-gesture/package.json index 4f264edf4..252dda3d9 100644 --- a/packages/g-gesture/package.json +++ b/packages/g-gesture/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-gesture", - "version": "2.2.25", + "version": "2.2.26", "description": "G Gesture", "keywords": [ "antv", diff --git a/packages/g-image-exporter/CHANGELOG.md b/packages/g-image-exporter/CHANGELOG.md index b5d51c341..74b7ca6d3 100644 --- a/packages/g-image-exporter/CHANGELOG.md +++ b/packages/g-image-exporter/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-image-exporter +## 0.7.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.7.22 ### Patch Changes diff --git a/packages/g-image-exporter/package.json b/packages/g-image-exporter/package.json index 8854c507e..191aacf43 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": "0.7.22", + "version": "0.7.23", "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 59577e42d..0bf84799a 100644 --- a/packages/g-lite/CHANGELOG.md +++ b/packages/g-lite/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/g-lite +## 1.2.23 + +### Patch Changes + +- 1d25bf84: ClipPath should be copied first before calculate intersection bounds. + ## 1.2.22 ### Patch Changes diff --git a/packages/g-lite/package.json b/packages/g-lite/package.json index 9eaaeaa4a..0b6be3eb7 100644 --- a/packages/g-lite/package.json +++ b/packages/g-lite/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-lite", - "version": "1.2.22", + "version": "1.2.23", "description": "A core module for rendering engine implements DOM API.", "keywords": [ "antv", diff --git a/packages/g-lite/src/services/SceneGraphService.ts b/packages/g-lite/src/services/SceneGraphService.ts index ff9f1613a..267506760 100644 --- a/packages/g-lite/src/services/SceneGraphService.ts +++ b/packages/g-lite/src/services/SceneGraphService.ts @@ -849,6 +849,10 @@ export class DefaultSceneGraphService implements SceneGraphService { } }); + if (!aabb) { + aabb = new AABB(); + } + if (render) { // FIXME: account for clip path const clipped = findClosestClipPathTarget(element as DisplayObject); @@ -856,28 +860,18 @@ export class DefaultSceneGraphService implements SceneGraphService { // use bounds under world space const clipPathBounds = clipped.parsedStyle.clipPath.getBounds(render); if (!aabb) { - aabb = clipPathBounds; + aabb.update(clipPathBounds.center, clipPathBounds.halfExtents); } else if (clipPathBounds) { aabb = clipPathBounds.intersection(aabb); } } } - if (!aabb) { - aabb = new AABB(); - } - - if (aabb) { - if (render) { - renderable.renderBounds = aabb; - } else { - renderable.bounds = aabb; - } - } - if (render) { + renderable.renderBounds = aabb; renderable.renderBoundsDirty = false; } else { + renderable.bounds = aabb; renderable.boundsDirty = false; } diff --git a/packages/g-lite/src/services/aabb/RectUpdater.ts b/packages/g-lite/src/services/aabb/RectUpdater.ts index ae21317ef..613177ae8 100644 --- a/packages/g-lite/src/services/aabb/RectUpdater.ts +++ b/packages/g-lite/src/services/aabb/RectUpdater.ts @@ -1,5 +1,10 @@ import { isString } from '@antv/util'; -import type { Group, Image, ParsedImageStyleProps, Rect } from '../../display-objects'; +import type { + Group, + Image, + ParsedImageStyleProps, + Rect, +} from '../../display-objects'; import type { GeometryAABBUpdater } from './interfaces'; export class RectUpdater implements GeometryAABBUpdater { update(parsedStyle: ParsedImageStyleProps, object: Image | Rect | Group) { diff --git a/packages/g-lottie-player/CHANGELOG.md b/packages/g-lottie-player/CHANGELOG.md index 2ee541aa1..678f49808 100644 --- a/packages/g-lottie-player/CHANGELOG.md +++ b/packages/g-lottie-player/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-lottie-player +## 0.2.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.2.22 ### Patch Changes diff --git a/packages/g-lottie-player/package.json b/packages/g-lottie-player/package.json index de65fe64f..949c5f4ad 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": "0.2.22", + "version": "0.2.23", "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 745f0231a..6a48d4034 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 +## 0.8.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.8.22 ### Patch Changes diff --git a/packages/g-mobile-canvas-element/package.json b/packages/g-mobile-canvas-element/package.json index 5454ba965..70babca28 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": "0.8.22", + "version": "0.8.23", "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 8ea164a40..8bf197d1c 100644 --- a/packages/g-mobile-canvas/CHANGELOG.md +++ b/packages/g-mobile-canvas/CHANGELOG.md @@ -1,5 +1,19 @@ # @antv/g-mobile-canvas +## 0.11.16 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-canvas-path-generator@1.3.23 + - @antv/g-plugin-canvas-picker@1.10.25 + - @antv/g-plugin-canvas-renderer@1.9.25 + - @antv/g-plugin-dragndrop@1.8.23 + - @antv/g-plugin-gesture@1.2.11 + - @antv/g-plugin-image-loader@1.3.23 + - @antv/g-plugin-mobile-interaction@0.9.23 + ## 0.11.15 ### Patch Changes diff --git a/packages/g-mobile-canvas/package.json b/packages/g-mobile-canvas/package.json index aa09679d5..15f7210d4 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": "0.11.15", + "version": "0.11.16", "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 aba2f917e..f0d373853 100644 --- a/packages/g-mobile-svg/CHANGELOG.md +++ b/packages/g-mobile-svg/CHANGELOG.md @@ -1,5 +1,17 @@ # @antv/g-mobile-svg +## 0.10.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-dragndrop@1.8.23 + - @antv/g-plugin-gesture@1.2.11 + - @antv/g-plugin-mobile-interaction@0.9.23 + - @antv/g-plugin-svg-picker@1.9.27 + - @antv/g-plugin-svg-renderer@1.10.27 + ## 0.10.27 ### Patch Changes diff --git a/packages/g-mobile-svg/package.json b/packages/g-mobile-svg/package.json index 9cd816b49..e824cd28b 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": "0.10.27", + "version": "0.10.28", "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 3b3860d40..939a58566 100644 --- a/packages/g-mobile-webgl/CHANGELOG.md +++ b/packages/g-mobile-webgl/CHANGELOG.md @@ -1,5 +1,18 @@ # @antv/g-mobile-webgl +## 0.9.39 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-device-renderer@1.9.35 + - @antv/g-plugin-dragndrop@1.8.23 + - @antv/g-plugin-gesture@1.2.11 + - @antv/g-plugin-html-renderer@1.9.26 + - @antv/g-plugin-image-loader@1.3.23 + - @antv/g-plugin-mobile-interaction@0.9.23 + ## 0.9.38 ### Patch Changes diff --git a/packages/g-mobile-webgl/package.json b/packages/g-mobile-webgl/package.json index befc8c595..242a3b48d 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": "0.9.38", + "version": "0.9.39", "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 7d6475dca..f95d04d4e 100644 --- a/packages/g-pattern/CHANGELOG.md +++ b/packages/g-pattern/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-pattern +## 1.2.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.2.22 ### Patch Changes diff --git a/packages/g-pattern/package.json b/packages/g-pattern/package.json index 1b4ed90b0..3612ba255 100644 --- a/packages/g-pattern/package.json +++ b/packages/g-pattern/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-pattern", - "version": "1.2.22", + "version": "1.2.23", "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 06edc552e..41865085a 100644 --- a/packages/g-plugin-3d/CHANGELOG.md +++ b/packages/g-plugin-3d/CHANGELOG.md @@ -1,5 +1,13 @@ # @antv/g-plugin-3d +## 1.9.35 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-device-renderer@1.9.35 + ## 1.9.34 ### Patch Changes diff --git a/packages/g-plugin-3d/package.json b/packages/g-plugin-3d/package.json index 14aaaec15..a68780cc6 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": "1.9.34", + "version": "1.9.35", "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 bdb1e32ad..6a0d1709c 100644 --- a/packages/g-plugin-a11y/CHANGELOG.md +++ b/packages/g-plugin-a11y/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-a11y +## 0.6.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.6.22 ### Patch Changes diff --git a/packages/g-plugin-a11y/package.json b/packages/g-plugin-a11y/package.json index 0bcd8496f..17799e83c 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": "0.6.22", + "version": "0.6.23", "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 03d98d65e..f4a27f842 100644 --- a/packages/g-plugin-annotation/CHANGELOG.md +++ b/packages/g-plugin-annotation/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-annotation +## 0.4.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.4.22 ### Patch Changes diff --git a/packages/g-plugin-annotation/package.json b/packages/g-plugin-annotation/package.json index 7cca38e9f..9577249c8 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": "0.4.22", + "version": "0.4.23", "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 c1e2d0ce0..474061d70 100644 --- a/packages/g-plugin-box2d/CHANGELOG.md +++ b/packages/g-plugin-box2d/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-box2d +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-box2d/package.json b/packages/g-plugin-box2d/package.json index 6fc9122f9..93bfb029b 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": "1.9.22", + "version": "1.9.23", "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 6c1f9c160..a053af393 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 +## 1.3.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.3.22 ### Patch Changes diff --git a/packages/g-plugin-canvas-path-generator/package.json b/packages/g-plugin-canvas-path-generator/package.json index f27240e20..9993a6a07 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": "1.3.22", + "version": "1.3.23", "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 91e379812..b9712ffc3 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 +## 1.10.25 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-canvas-path-generator@1.3.23 + - @antv/g-plugin-canvas-renderer@1.9.25 + ## 1.10.24 ### Patch Changes diff --git a/packages/g-plugin-canvas-picker/package.json b/packages/g-plugin-canvas-picker/package.json index 31e33122a..9fb9da4c0 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": "1.10.24", + "version": "1.10.25", "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 64c2814fa..79d005d9b 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 +## 1.9.25 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-canvas-path-generator@1.3.23 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.9.24 ### Patch Changes diff --git a/packages/g-plugin-canvas-renderer/package.json b/packages/g-plugin-canvas-renderer/package.json index 4e5edd087..2c410e493 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": "1.9.24", + "version": "1.9.25", "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 40c39d7fc..a71286aff 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 +## 1.3.24 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.3.23 ### Patch Changes diff --git a/packages/g-plugin-canvaskit-renderer/package.json b/packages/g-plugin-canvaskit-renderer/package.json index 88ca1ac0c..f646e4517 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": "1.3.23", + "version": "1.3.24", "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 2d9462964..2dc9f8c7b 100644 --- a/packages/g-plugin-control/CHANGELOG.md +++ b/packages/g-plugin-control/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-control +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-control/package.json b/packages/g-plugin-control/package.json index e92bfdd2a..b97c89892 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": "1.9.22", + "version": "1.9.23", "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 8ad1b5bf1..5fa9466e5 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 +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-css-select/package.json b/packages/g-plugin-css-select/package.json index 9a2d2e08c..dd0bf0d3d 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": "1.9.22", + "version": "1.9.23", "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 a03bdcd5a..da4083cbf 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 +## 1.9.35 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.9.34 ### Patch Changes diff --git a/packages/g-plugin-device-renderer/package.json b/packages/g-plugin-device-renderer/package.json index d2491475a..dd425aed7 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": "1.9.34", + "version": "1.9.35", "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 6ada9b548..336ca879f 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 +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-dom-interaction/package.json b/packages/g-plugin-dom-interaction/package.json index b5bb4571e..7a2872969 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": "1.9.22", + "version": "1.9.23", "description": "A G plugin", "keywords": [ "antv", diff --git a/packages/g-plugin-dragndrop/CHANGELOG.md b/packages/g-plugin-dragndrop/CHANGELOG.md index b61aebef7..8952f3cc8 100644 --- a/packages/g-plugin-dragndrop/CHANGELOG.md +++ b/packages/g-plugin-dragndrop/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-dragndrop +## 1.8.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.8.22 ### Patch Changes diff --git a/packages/g-plugin-dragndrop/package.json b/packages/g-plugin-dragndrop/package.json index ac979ea1f..e3e9ad9d7 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": "1.8.22", + "version": "1.8.23", "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 ea95cd346..484b44e53 100644 --- a/packages/g-plugin-gesture/CHANGELOG.md +++ b/packages/g-plugin-gesture/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-gesture +## 1.2.11 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.2.10 ### Patch Changes diff --git a/packages/g-plugin-gesture/package.json b/packages/g-plugin-gesture/package.json index 29fa67ca8..f9729d7a2 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": "1.2.10", + "version": "1.2.11", "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 a1b708b91..88992e60c 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 +## 1.9.26 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.25 ### Patch Changes diff --git a/packages/g-plugin-html-renderer/package.json b/packages/g-plugin-html-renderer/package.json index bc39d6b82..77ae80d7a 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": "1.9.25", + "version": "1.9.26", "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 6b0e90afb..2dcecf87a 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 +## 1.3.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.3.22 ### Patch Changes diff --git a/packages/g-plugin-image-loader/package.json b/packages/g-plugin-image-loader/package.json index bb7fca46e..50823baf6 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": "1.3.22", + "version": "1.3.23", "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 39cda40cb..da0b0a1f2 100644 --- a/packages/g-plugin-matterjs/CHANGELOG.md +++ b/packages/g-plugin-matterjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-matterjs +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-matterjs/package.json b/packages/g-plugin-matterjs/package.json index 84558cb76..e2e6f4bd4 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": "1.9.22", + "version": "1.9.23", "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 0c562c9b0..4c2363ed9 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 +## 0.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 0.9.22 ### Patch Changes diff --git a/packages/g-plugin-mobile-interaction/package.json b/packages/g-plugin-mobile-interaction/package.json index 784da8366..c487ab9fd 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": "0.9.22", + "version": "0.9.23", "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 4915dcd12..e60b68f06 100644 --- a/packages/g-plugin-physx/CHANGELOG.md +++ b/packages/g-plugin-physx/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-physx +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-physx/package.json b/packages/g-plugin-physx/package.json index c7a4efeee..fef19a5e9 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": "1.9.22", + "version": "1.9.23", "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 817808b68..e6c4f2e4c 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 +## 1.9.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-canvas@1.11.28 + ## 1.9.27 ### Patch Changes diff --git a/packages/g-plugin-rough-canvas-renderer/package.json b/packages/g-plugin-rough-canvas-renderer/package.json index 55bb5e486..87282f39a 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": "1.9.27", + "version": "1.9.28", "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 836bb36d2..ffd2a069a 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 +## 1.9.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-svg@1.10.27 + ## 1.9.27 ### Patch Changes diff --git a/packages/g-plugin-rough-svg-renderer/package.json b/packages/g-plugin-rough-svg-renderer/package.json index e14583213..eb0b8aef7 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": "1.9.27", + "version": "1.9.28", "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 a9a05c8bf..c378fb75f 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 +## 1.9.27 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-svg-renderer@1.10.27 + ## 1.9.26 ### Patch Changes diff --git a/packages/g-plugin-svg-picker/package.json b/packages/g-plugin-svg-picker/package.json index 754ee78a9..05fd2e7d1 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": "1.9.26", + "version": "1.9.27", "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 ebe6c12df..f87d69e39 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 +## 1.10.27 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.10.26 ### Patch Changes diff --git a/packages/g-plugin-svg-renderer/package.json b/packages/g-plugin-svg-renderer/package.json index 41047a7f0..2001e5607 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": "1.10.26", + "version": "1.10.27", "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 b93c4d4c1..ca0251aa7 100644 --- a/packages/g-plugin-yoga/CHANGELOG.md +++ b/packages/g-plugin-yoga/CHANGELOG.md @@ -1,5 +1,12 @@ # @antv/g-plugin-yoga +## 1.9.23 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.9.22 ### Patch Changes diff --git a/packages/g-plugin-yoga/package.json b/packages/g-plugin-yoga/package.json index efdafb04a..5661badff 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": "1.9.22", + "version": "1.9.23", "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 7cb622724..34b0964aa 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 +## 1.2.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-canvas@1.11.28 + ## 1.2.27 ### Patch Changes diff --git a/packages/g-plugin-zdog-canvas-renderer/package.json b/packages/g-plugin-zdog-canvas-renderer/package.json index b91353841..2f4f8f76a 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": "1.2.27", + "version": "1.2.28", "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 c0a9f4d4a..b99da2ca9 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 +## 1.2.28 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-svg-renderer@1.10.27 + - @antv/g-svg@1.10.27 + ## 1.2.27 ### Patch Changes diff --git a/packages/g-plugin-zdog-svg-renderer/package.json b/packages/g-plugin-zdog-svg-renderer/package.json index b52c3907e..1fed193ae 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": "1.2.27", + "version": "1.2.28", "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 5bc59cd8d..7ee5efbea 100644 --- a/packages/g-svg/CHANGELOG.md +++ b/packages/g-svg/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g-svg +## 1.10.27 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-dom-interaction@1.9.23 + - @antv/g-plugin-svg-picker@1.9.27 + - @antv/g-plugin-svg-renderer@1.10.27 + ## 1.10.26 ### Patch Changes diff --git a/packages/g-svg/package.json b/packages/g-svg/package.json index f8274beb5..543eca723 100644 --- a/packages/g-svg/package.json +++ b/packages/g-svg/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-svg", - "version": "1.10.26", + "version": "1.10.27", "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 ea2802cda..a6b6d4065 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 +## 1.2.24 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + ## 1.2.23 ### Patch Changes diff --git a/packages/g-web-animations-api/package.json b/packages/g-web-animations-api/package.json index e438f518f..01d5ddb33 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": "1.2.23", + "version": "1.2.24", "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 2672ab289..632d317ab 100644 --- a/packages/g-web-components/CHANGELOG.md +++ b/packages/g-web-components/CHANGELOG.md @@ -1,5 +1,14 @@ # @antv/g-web-components +## 1.9.39 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-canvas@1.11.28 + - @antv/g-webgl@1.9.38 + ## 1.9.38 ### Patch Changes diff --git a/packages/g-web-components/package.json b/packages/g-web-components/package.json index 05ebc5cba..f62796e84 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": "1.9.38", + "version": "1.9.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 01fceaaa7..a53deeb2e 100644 --- a/packages/g-webgl/CHANGELOG.md +++ b/packages/g-webgl/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgl +## 1.9.38 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-device-renderer@1.9.35 + - @antv/g-plugin-dom-interaction@1.9.23 + - @antv/g-plugin-html-renderer@1.9.26 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.9.37 ### Patch Changes diff --git a/packages/g-webgl/package.json b/packages/g-webgl/package.json index 3699dfdc6..6b481842f 100644 --- a/packages/g-webgl/package.json +++ b/packages/g-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgl", - "version": "1.9.37", + "version": "1.9.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 a226f5bf1..c465070f3 100644 --- a/packages/g-webgpu/CHANGELOG.md +++ b/packages/g-webgpu/CHANGELOG.md @@ -1,5 +1,16 @@ # @antv/g-webgpu +## 1.9.38 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-plugin-device-renderer@1.9.35 + - @antv/g-plugin-dom-interaction@1.9.23 + - @antv/g-plugin-html-renderer@1.9.26 + - @antv/g-plugin-image-loader@1.3.23 + ## 1.9.37 ### Patch Changes diff --git a/packages/g-webgpu/package.json b/packages/g-webgpu/package.json index a539355ec..b1a7fb386 100644 --- a/packages/g-webgpu/package.json +++ b/packages/g-webgpu/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g-webgpu", - "version": "1.9.37", + "version": "1.9.38", "description": "A renderer implemented by WebGPU", "keywords": [ "antv", diff --git a/packages/g/CHANGELOG.md b/packages/g/CHANGELOG.md index 8936965fa..ec330152f 100644 --- a/packages/g/CHANGELOG.md +++ b/packages/g/CHANGELOG.md @@ -1,5 +1,15 @@ # @antv/g +## 5.18.26 + +### Patch Changes + +- Updated dependencies [1d25bf84] + - @antv/g-lite@1.2.23 + - @antv/g-camera-api@1.2.24 + - @antv/g-dom-mutation-observer-api@1.2.23 + - @antv/g-web-animations-api@1.2.24 + ## 5.18.25 ### Patch Changes diff --git a/packages/g/package.json b/packages/g/package.json index e3176ac47..a87cc7f28 100644 --- a/packages/g/package.json +++ b/packages/g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g", - "version": "5.18.25", + "version": "5.18.26", "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 bc7ded94f..5d9655652 100644 --- a/packages/react-g/CHANGELOG.md +++ b/packages/react-g/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/react-g +## 1.10.27 + +### Patch Changes + +- @antv/g@5.18.26 + ## 1.10.26 ### Patch Changes diff --git a/packages/react-g/package.json b/packages/react-g/package.json index 190b364a6..cb95d186d 100644 --- a/packages/react-g/package.json +++ b/packages/react-g/package.json @@ -1,6 +1,6 @@ { "name": "@antv/react-g", - "version": "1.10.26", + "version": "1.10.27", "description": "react render for @antv/g", "keywords": [ "react",