Skip to content

Commit

Permalink
Release (#1582)
Browse files Browse the repository at this point in the history
* fix: avoid generating redundant dom structure for document element #1578 (#1580)

* chore: commit changeset

* chore(release): bump version (#1581)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 6, 2023
1 parent 92b82eb commit d3771f1
Show file tree
Hide file tree
Showing 13 changed files with 52 additions and 8 deletions.
8 changes: 8 additions & 0 deletions packages/g-mobile-svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-mobile-svg

## 0.10.22

### Patch Changes

- Updated dependencies [6ce927fa]
- @antv/g-plugin-svg-renderer@1.10.21
- @antv/g-plugin-svg-picker@1.9.21

## 0.10.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-svg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-svg",
"version": "0.10.21",
"version": "0.10.22",
"description": "A renderer implemented by SVG in mobile environment",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-rough-svg-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-rough-svg-renderer

## 1.9.22

### Patch Changes

- @antv/g-svg@1.10.21

## 1.9.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-rough-svg-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-rough-svg-renderer",
"version": "1.9.21",
"version": "1.9.22",
"description": "A G plugin of renderer implementation with rough.js",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-plugin-svg-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-plugin-svg-picker

## 1.9.21

### Patch Changes

- Updated dependencies [6ce927fa]
- @antv/g-plugin-svg-renderer@1.10.21

## 1.9.20

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-svg-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-svg-picker",
"version": "1.9.20",
"version": "1.9.21",
"description": "A G plugin for picking in SVG",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-svg-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-svg-renderer

## 1.10.21

### Patch Changes

- 6ce927fa: Avoid generating redundant dom structure for document element.

## 1.10.20

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-svg-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-svg-renderer",
"version": "1.10.20",
"version": "1.10.21",
"description": "A G plugin of renderer implementation with SVG",
"keywords": [
"antv",
Expand Down
5 changes: 3 additions & 2 deletions packages/g-plugin-svg-renderer/src/SVGRendererPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,9 @@ export class SVGRendererPlugin implements RenderingPlugin {
) {
const svgElement = (object as any).elementSVG as ElementSVG;
let $hitTestingEl = svgElement.$hitTestingEl;
const increasedLineWidthForHitTesting =
object.parsedStyle.increasedLineWidthForHitTesting;
const increasedLineWidthForHitTesting = Number(
object.parsedStyle.increasedLineWidthForHitTesting,
);

// account for hitArea
if (increasedLineWidthForHitTesting) {
Expand Down
8 changes: 8 additions & 0 deletions packages/g-plugin-zdog-svg-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-plugin-zdog-svg-renderer

## 1.2.22

### Patch Changes

- Updated dependencies [6ce927fa]
- @antv/g-plugin-svg-renderer@1.10.21
- @antv/g-svg@1.10.21

## 1.2.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-zdog-svg-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-zdog-svg-renderer",
"version": "1.2.21",
"version": "1.2.22",
"description": "A G plugin of renderer implementation with Zdog",
"keywords": [
"antv",
Expand Down
8 changes: 8 additions & 0 deletions packages/g-svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-svg

## 1.10.21

### Patch Changes

- Updated dependencies [6ce927fa]
- @antv/g-plugin-svg-renderer@1.10.21
- @antv/g-plugin-svg-picker@1.9.21

## 1.10.20

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-svg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-svg",
"version": "1.10.20",
"version": "1.10.21",
"description": "A renderer implemented by SVG",
"keywords": [
"antv",
Expand Down

0 comments on commit d3771f1

Please sign in to comment.