Compare commits
10 Commits
@antv/x6-p
...
@antv/x6@2
Author | SHA1 | Date | |
---|---|---|---|
dc0f905824 | |||
aede9b3ee2 | |||
44f89a1e1a | |||
6448ec31a8 | |||
d704d7fb03 | |||
bcc3fb5f50 | |||
c5a71dee65 | |||
6b112db109 | |||
6c82b21f9e | |||
79e0fac6e4 |
@ -1,27 +0,0 @@
|
||||
name: 🚀 Create Release Branch
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
crb:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: |
|
||||
echo "${{ github.sha }}" > .releasing
|
||||
- uses: wow-actions/use-app-token@v1
|
||||
with:
|
||||
app_id: ${{ secrets.APP_ID }}
|
||||
private_key: ${{ secrets.PRIVATE_KEY }}
|
||||
env_name: bot_token
|
||||
- uses: peter-evans/create-pull-request@v4
|
||||
with:
|
||||
token: ${{ env.bot_token }}
|
||||
branch: semantic-release
|
||||
commit-message: "trigger semantic release..."
|
||||
delete-branch: true
|
||||
labels: semantic-release
|
||||
title: "chore: semantic release [skip ci]"
|
||||
body: |
|
||||
Your **[semantic-release-monorepo](https://github.com/bubkoo/semantic-release-monorepo)** bot base on **[semantic-release](https://github.com/semantic-release/semantic-release)** :package::rocket:`
|
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
@ -44,8 +44,8 @@ jobs:
|
||||
- name: 🚧 Install dependencies
|
||||
run: pnpm install --no-frozen-lockfile --ignore-scripts
|
||||
|
||||
# - name: 📦 build
|
||||
# run: pnpm run build
|
||||
- name: 📦 build
|
||||
run: pnpm run build
|
||||
|
||||
# - name: ✅ Test
|
||||
# run: pnpm run test
|
||||
@ -68,13 +68,6 @@ jobs:
|
||||
GIT_COMMITTER_NAME: x6-bot
|
||||
GIT_COMMITTER_EMAIL: x6-bot@users.noreply.github.com
|
||||
|
||||
# - uses: actions/github-script@v6
|
||||
# with:
|
||||
# github-token: ${{ env.bot_token }}
|
||||
# script: |
|
||||
# const action = require('./scripts/finalize-release.js')
|
||||
# return await action({github, context, core})
|
||||
|
||||
- name: 🔀 Repository Dispatch
|
||||
if: github.ref == 'refs/heads/master'
|
||||
uses: peter-evans/repository-dispatch@v2
|
||||
|
15
.releaserc
15
.releaserc
@ -11,14 +11,23 @@
|
||||
[
|
||||
"@semantic-release/commit-analyzer",
|
||||
{
|
||||
"preset": "angular",
|
||||
"parserOpts": {
|
||||
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
|
||||
},
|
||||
"releaseRules": [
|
||||
{ "type": "build", "release": "patch" },
|
||||
{ "breaking": true, "release": "major" },
|
||||
{ "revert": true, "release": "patch" },
|
||||
{ "type": "feat", "release": "minor" },
|
||||
{ "type": "ci", "release": "patch" },
|
||||
{ "type": "build", "release": "patch" },
|
||||
{ "type": "chore", "release": "patch" },
|
||||
{ "type": "docs", "release": "patch" },
|
||||
{ "type": "refactor", "release": "patch" },
|
||||
{ "type": "perf", "release": "patch" },
|
||||
{ "type": "style", "release": "patch" },
|
||||
{ "type": "test", "release": "patch" }
|
||||
{ "type": "test", "release": "patch" },
|
||||
{ "type": "refactor", "release": "patch" },
|
||||
{ "scope": "no-release", "release": false }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "@antv/x6-example-features",
|
||||
"version": "1.0.0",
|
||||
"version": "2.0.0",
|
||||
"scripts": {
|
||||
"start": "umi dev",
|
||||
"build": "umi build",
|
||||
@ -9,20 +9,20 @@
|
||||
"precommit": "lint-staged"
|
||||
},
|
||||
"dependencies": {
|
||||
"@antv/x6": "1.0.0",
|
||||
"@antv/x6-plugin-clipboard": "1.0.0",
|
||||
"@antv/x6-plugin-dnd": "1.0.0",
|
||||
"@antv/x6-plugin-history": "1.0.0",
|
||||
"@antv/x6-plugin-keyboard": "1.0.0",
|
||||
"@antv/x6-plugin-minimap": "1.0.0",
|
||||
"@antv/x6-plugin-scroller": "1.0.0",
|
||||
"@antv/x6-plugin-selection": "1.0.0",
|
||||
"@antv/x6-plugin-snapline": "1.0.0",
|
||||
"@antv/x6-plugin-stencil": "1.0.0",
|
||||
"@antv/x6-plugin-transform": "1.0.0",
|
||||
"@antv/x6-plugin-export": "1.0.0",
|
||||
"@antv/x6-react-components": "1.0.0",
|
||||
"@antv/x6-react-shape": "1.0.0",
|
||||
"@antv/x6": "^2.x",
|
||||
"@antv/x6-plugin-clipboard": "^2.x",
|
||||
"@antv/x6-plugin-dnd": "^2.x",
|
||||
"@antv/x6-plugin-history": "^2.x",
|
||||
"@antv/x6-plugin-keyboard": "^2.x",
|
||||
"@antv/x6-plugin-minimap": "^2.x",
|
||||
"@antv/x6-plugin-scroller": "^2.x",
|
||||
"@antv/x6-plugin-selection": "^2.x",
|
||||
"@antv/x6-plugin-snapline": "^2.x",
|
||||
"@antv/x6-plugin-stencil": "^2.x",
|
||||
"@antv/x6-plugin-transform": "^2.x",
|
||||
"@antv/x6-plugin-export": "^2.x",
|
||||
"@antv/x6-react-components": "^2.x",
|
||||
"@antv/x6-react-shape": "^2.x",
|
||||
"antd": "^4.4.2",
|
||||
"classnames": "^2.2.6",
|
||||
"dagre": "^0.8.5",
|
||||
|
@ -1,170 +0,0 @@
|
||||
## @antv/x6-common [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-common@1.0.0...@antv/x6-common@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
# @antv/x6-common 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* force bump to 2.0 ([ae7ad05](https://github.com/antvis/x6/commit/ae7ad05d9caddc1056afa17549bda74209cedfc0))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add css method for dom ([#1959](https://github.com/antvis/x6/issues/1959)) ([e8fbcd8](https://github.com/antvis/x6/commit/e8fbcd83fd07b5d2df0abe020fc8e2481332c1b2))
|
||||
* ✨ add dom data methods ([#1969](https://github.com/antvis/x6/issues/1969)) ([d1eb01c](https://github.com/antvis/x6/commit/d1eb01c491b5509686d0affa8f84fc6438673d80))
|
||||
* ✨ add dom event to replace jquery event ([#1929](https://github.com/antvis/x6/issues/1929)) ([68c143b](https://github.com/antvis/x6/commit/68c143babf20f84ab7b76aada1794131c49860b2))
|
||||
* ✨ add events module in common ([#1932](https://github.com/antvis/x6/issues/1932)) ([c1d0fc1](https://github.com/antvis/x6/commit/c1d0fc188e62a8e420ff03512f38c11c5c50a9ba))
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* ✨ add panning and mousewheel module ([#2243](https://github.com/antvis/x6/issues/2243)) ([55d36e4](https://github.com/antvis/x6/commit/55d36e46808a4c79b086d7798bce396d5211a1dc))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add version.ts ([#1981](https://github.com/antvis/x6/issues/1981)) ([aee3666](https://github.com/antvis/x6/commit/aee3666da25025b7ca284134521d6c6cd7f8edbc))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ improve auto-resize feature ([40d5335](https://github.com/antvis/x6/commit/40d53355cedc0bbbeb1e26948b67254dc6a40d85))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* ✨ init x6-core repo ([#1954](https://github.com/antvis/x6/issues/1954)) ([d7cfb6a](https://github.com/antvis/x6/commit/d7cfb6af19fc021ad197a8bed187d927a81d7dfa))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* ✨ remove jquery deps in x6-core ([#1971](https://github.com/antvis/x6/issues/1971)) ([38c6fd6](https://github.com/antvis/x6/commit/38c6fd69922b3db7eb938f55a8c29f8226edbed1))
|
||||
* add scheduler for render nodes to improve performance ([#2044](https://github.com/antvis/x6/issues/2044)) ([57a50a9](https://github.com/antvis/x6/commit/57a50a9dec2b9dbe04f51972a1eebd7a98c116e0))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ optimize breakText for a high performance version ([#2242](https://github.com/antvis/x6/issues/2242)) ([0aced58](https://github.com/antvis/x6/commit/0aced58056d908ec092bca1889b5ef367a94fe68))
|
||||
* ⚡️ repalce getTransformToElement and getBBox to improve performance ([#2177](https://github.com/antvis/x6/issues/2177)) ([1436586](https://github.com/antvis/x6/commit/1436586f85cc2e2f6ec71548f6d6c232be793154))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-common 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add css method for dom ([#1959](https://github.com/antvis/x6/issues/1959)) ([e8fbcd8](https://github.com/antvis/x6/commit/e8fbcd83fd07b5d2df0abe020fc8e2481332c1b2))
|
||||
* ✨ add dom data methods ([#1969](https://github.com/antvis/x6/issues/1969)) ([d1eb01c](https://github.com/antvis/x6/commit/d1eb01c491b5509686d0affa8f84fc6438673d80))
|
||||
* ✨ add dom event to replace jquery event ([#1929](https://github.com/antvis/x6/issues/1929)) ([68c143b](https://github.com/antvis/x6/commit/68c143babf20f84ab7b76aada1794131c49860b2))
|
||||
* ✨ add events module in common ([#1932](https://github.com/antvis/x6/issues/1932)) ([c1d0fc1](https://github.com/antvis/x6/commit/c1d0fc188e62a8e420ff03512f38c11c5c50a9ba))
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* ✨ add panning and mousewheel module ([#2243](https://github.com/antvis/x6/issues/2243)) ([55d36e4](https://github.com/antvis/x6/commit/55d36e46808a4c79b086d7798bce396d5211a1dc))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add version.ts ([#1981](https://github.com/antvis/x6/issues/1981)) ([aee3666](https://github.com/antvis/x6/commit/aee3666da25025b7ca284134521d6c6cd7f8edbc))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ improve auto-resize feature ([40d5335](https://github.com/antvis/x6/commit/40d53355cedc0bbbeb1e26948b67254dc6a40d85))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* ✨ init x6-core repo ([#1954](https://github.com/antvis/x6/issues/1954)) ([d7cfb6a](https://github.com/antvis/x6/commit/d7cfb6af19fc021ad197a8bed187d927a81d7dfa))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* ✨ remove jquery deps in x6-core ([#1971](https://github.com/antvis/x6/issues/1971)) ([38c6fd6](https://github.com/antvis/x6/commit/38c6fd69922b3db7eb938f55a8c29f8226edbed1))
|
||||
* add scheduler for render nodes to improve performance ([#2044](https://github.com/antvis/x6/issues/2044)) ([57a50a9](https://github.com/antvis/x6/commit/57a50a9dec2b9dbe04f51972a1eebd7a98c116e0))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ optimize breakText for a high performance version ([#2242](https://github.com/antvis/x6/issues/2242)) ([0aced58](https://github.com/antvis/x6/commit/0aced58056d908ec092bca1889b5ef367a94fe68))
|
||||
* ⚡️ repalce getTransformToElement and getBBox to improve performance ([#2177](https://github.com/antvis/x6/issues/2177)) ([1436586](https://github.com/antvis/x6/commit/1436586f85cc2e2f6ec71548f6d6c232be793154))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-common [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-common@1.0.0...@antv/x6-common@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* force bump to 2.0 ([ae7ad05](https://github.com/antvis/x6/commit/ae7ad05d9caddc1056afa17549bda74209cedfc0))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
|
||||
# @antv/x6-common [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-common@1.0.0...@antv/x6-common@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* force bump to 2.0 ([ae7ad05](https://github.com/antvis/x6/commit/ae7ad05d9caddc1056afa17549bda74209cedfc0))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
|
||||
# @antv/x6-common [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-common@1.0.0...@antv/x6-common@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* force bump to 2.0 ([ae7ad05](https://github.com/antvis/x6/commit/ae7ad05d9caddc1056afa17549bda74209cedfc0))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force bump to 2.0
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-common",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "Basic toolkit for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
@ -1,220 +0,0 @@
|
||||
## @antv/x6-geometry [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.0...@antv/x6-geometry@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([dbba32e](https://github.com/antvis/x6/commit/dbba32eebc4531c2f040646667c7db4a69152350))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([dbba32e](https://github.com/antvis/x6/commit/dbba32eebc4531c2f040646667c7db4a69152350))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* ✨ put animation in x6-common ([#2411](https://github.com/antvis/x6/issues/2411)) ([f1c80a8](https://github.com/antvis/x6/commit/f1c80a8cd75efe1def32168b6acff90ece5723ba))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
## @antv/x6-geometry [1.0.11](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.10...@antv/x6-geometry@1.0.11) (2021-11-14)
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-11-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([056b862](https://github.com/antvis/x6/commit/056b862b4efe7dbdc559cac7194c2453996acc07))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
|
||||
## @antv/x6-geometry [1.0.10](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.9...@antv/x6-geometry@1.0.10) (2021-10-22)
|
||||
|
||||
## @antv/x6-geometry [1.0.10](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.9...@antv/x6-geometry@1.0.10) (2021-10-19)
|
||||
|
||||
## @antv/x6-geometry [1.0.9](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.8...@antv/x6-geometry@1.0.9) (2021-09-22)
|
||||
|
||||
## @antv/x6-geometry [1.0.9](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.8...@antv/x6-geometry@1.0.9) (2021-09-13)
|
||||
|
||||
## @antv/x6-geometry [1.0.8](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.7...@antv/x6-geometry@1.0.8) (2021-07-10)
|
||||
|
||||
## @antv/x6-geometry [1.0.7](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.6...@antv/x6-geometry@1.0.7) (2021-07-05)
|
||||
|
||||
## @antv/x6-geometry [1.0.6](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.5...@antv/x6-geometry@1.0.6) (2021-06-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([056b862](https://github.com/antvis/x6/commit/056b862b4efe7dbdc559cac7194c2453996acc07))
|
||||
|
||||
## @antv/x6-geometry [1.0.6](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.5...@antv/x6-geometry@1.0.6) (2021-06-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([056b862](https://github.com/antvis/x6/commit/056b862b4efe7dbdc559cac7194c2453996acc07))
|
||||
|
||||
## @antv/x6-geometry [1.0.5](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.4...@antv/x6-geometry@1.0.5) (2021-06-15)
|
||||
|
||||
## @antv/x6-geometry [1.0.5](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.4...@antv/x6-geometry@1.0.5) (2021-06-11)
|
||||
|
||||
## @antv/x6-geometry [1.0.4](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.3...@antv/x6-geometry@1.0.4) (2021-06-09)
|
||||
|
||||
## @antv/x6-geometry [1.0.4](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.3...@antv/x6-geometry@1.0.4) (2021-06-09)
|
||||
|
||||
## @antv/x6-geometry [1.0.3](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.2...@antv/x6-geometry@1.0.3) (2021-04-01)
|
||||
|
||||
## @antv/x6-geometry [1.0.3](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.2...@antv/x6-geometry@1.0.3) (2021-03-30)
|
||||
|
||||
## @antv/x6-geometry [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.1...@antv/x6-geometry@1.0.2) (2021-03-30)
|
||||
|
||||
## @antv/x6-geometry [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.1...@antv/x6-geometry@1.0.2) (2021-03-30)
|
||||
|
||||
## @antv/x6-geometry [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.0...@antv/x6-geometry@1.0.1) (2021-03-28)
|
||||
|
||||
## @antv/x6-geometry [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-geometry@1.0.0...@antv/x6-geometry@1.0.1) (2021-03-25)
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-03-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-03-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-03-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-03-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
||||
|
||||
# @antv/x6-geometry 1.0.0 (2021-03-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add geometry library ([6502513](https://github.com/antvis/x6/commit/650251331c07de39da94b1058239d044f02c8aba))
|
||||
* add some getters ([ff0273d](https://github.com/antvis/x6/commit/ff0273d119afd74b7233649308ba0035c737ca1a))
|
||||
* equalPoints ([6a45c90](https://github.com/antvis/x6/commit/6a45c9027ab869a05c2f561cb7503078b0117264))
|
||||
* rotate rectangle ([88a4fec](https://github.com/antvis/x6/commit/88a4fec7d1d3a49b6c1373f0641c8949474d7d83))
|
||||
* round with default precision ([aef56f7](https://github.com/antvis/x6/commit/aef56f73f0627d620d36d116b74c828fa76c13f2))
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"name": "@antv/x6-geometry",
|
||||
"description": "Geometry operations for X6",
|
||||
"main": "lib/index.js",
|
||||
|
@ -1,129 +0,0 @@
|
||||
## @antv/x6-plugin-clipboard [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-clipboard@1.0.0...@antv/x6-plugin-clipboard@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-clipboard 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-clipboard 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ export common and geometry in x6 package ([#2820](https://github.com/antvis/x6/issues/2820)) ([df28200](https://github.com/antvis/x6/commit/df282000cc5e17521147c77c210e172c444c9938))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-clipboard",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "clipboard plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,137 +1,11 @@
|
||||
## @antv/x6-plugin-dnd [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-plugin-dnd@1.0.1...@antv/x6-plugin-dnd@1.0.2) (2022-11-05)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.1.0
|
||||
|
||||
## @antv/x6-plugin-dnd [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-dnd@1.0.0...@antv/x6-plugin-dnd@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-dnd 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
# @antv/x6-plugin-dnd [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-dnd@1.0.1...@antv/x6-plugin-dnd@2.0.0) (2022-11-05)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add dnd plugin ([269fae9](https://github.com/antvis/x6/commit/269fae9e5eeb969c6a7884373aa3a32002c064e6))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* refresh changelogs ([44f89a1](https://github.com/antvis/x6/commit/44f89a1e1a85513a9bf548be87be38e3cdc82574))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-dnd 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add dnd plugin ([269fae9](https://github.com/antvis/x6/commit/269fae9e5eeb969c6a7884373aa3a32002c064e6))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
* dump to 2.0
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-dnd",
|
||||
"version": "1.0.2",
|
||||
"version": "2.0.0",
|
||||
"description": "dnd plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -38,10 +38,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.1.0"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.1.0"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,91 +0,0 @@
|
||||
## @antv/x6-plugin-export [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-export@1.0.0...@antv/x6-plugin-export@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-export 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* refactor example ([#2831](https://github.com/antvis/x6/issues/2831)) ([3d8f005](https://github.com/antvis/x6/commit/3d8f005696021f1d9f91a96812ebadce179f2d73))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-export 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* refactor example ([#2831](https://github.com/antvis/x6/issues/2831)) ([3d8f005](https://github.com/antvis/x6/commit/3d8f005696021f1d9f91a96812ebadce179f2d73))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-export",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "export plugin for X6.",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -36,10 +36,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,363 +0,0 @@
|
||||
## @antv/x6-plugin-history [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-history 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add history plugin ([#2819](https://github.com/antvis/x6/issues/2819)) ([fd8d384](https://github.com/antvis/x6/commit/fd8d384a29d0f2e02bf066efd19ed3f92614c524))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-history 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add history plugin ([#2819](https://github.com/antvis/x6/issues/2819)) ([fd8d384](https://github.com/antvis/x6/commit/fd8d384a29d0f2e02bf066efd19ed3f92614c524))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6-common:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.0
|
||||
* **@antv/x6-common:** upgraded to 1.0.0
|
||||
|
||||
## @antv/x6-plugin-history [2.0.6-beta.5](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@2.0.6-beta.4...@antv/x6-plugin-history@2.0.6-beta.5) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
|
||||
## @antv/x6-plugin-history [2.0.6-beta.4](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@2.0.6-beta.3...@antv/x6-plugin-history@2.0.6-beta.4) (2022-11-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.5
|
||||
* **@antv/x6-common:** upgraded to 2.0.6-beta.1
|
||||
|
||||
## @antv/x6-plugin-history [2.0.6-beta.3](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@2.0.6-beta.2...@antv/x6-plugin-history@2.0.6-beta.3) (2022-11-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.4
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
||||
|
||||
## @antv/x6-plugin-history [2.0.6-beta.2](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@2.0.6-beta.1...@antv/x6-plugin-history@2.0.6-beta.2) (2022-11-03)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.3
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
||||
|
||||
## @antv/x6-plugin-history [2.0.6-beta.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@2.0.0-beta.1...@antv/x6-plugin-history@2.0.6-beta.1) (2022-11-03)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.2
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
||||
|
||||
# @antv/x6-plugin-history [2.0.0-beta.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-history@1.0.0...@antv/x6-plugin-history@2.0.0-beta.1) (2022-11-03)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.1
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
||||
|
||||
# @antv/x6-plugin-history 1.0.0 (2022-11-03)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add history plugin ([#2819](https://github.com/antvis/x6/issues/2819)) ([fd8d384](https://github.com/antvis/x6/commit/fd8d384a29d0f2e02bf066efd19ed3f92614c524))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.31.0
|
||||
* **@antv/x6-common:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-history",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "history plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,137 +0,0 @@
|
||||
## @antv/x6-plugin-keyboard [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-keyboard@1.0.0...@antv/x6-plugin-keyboard@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-keyboard 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 change init method to public ([#2671](https://github.com/antvis/x6/issues/2671)) ([8a17bfa](https://github.com/antvis/x6/commit/8a17bfac81190e6c492690ad4f1ae4b80eeb98b5))
|
||||
* 🐛 fix type error in keyboard plugin ([#2674](https://github.com/antvis/x6/issues/2674)) ([1701150](https://github.com/antvis/x6/commit/1701150042e45126415afd7768e2dc798906a1c4))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add keyboard plugin ([#2665](https://github.com/antvis/x6/issues/2665)) ([bf53677](https://github.com/antvis/x6/commit/bf536778ca7ee3229390dfcfcb085ec55edd9fb2))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-keyboard 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 change init method to public ([#2671](https://github.com/antvis/x6/issues/2671)) ([8a17bfa](https://github.com/antvis/x6/commit/8a17bfac81190e6c492690ad4f1ae4b80eeb98b5))
|
||||
* 🐛 fix type error in keyboard plugin ([#2674](https://github.com/antvis/x6/issues/2674)) ([1701150](https://github.com/antvis/x6/commit/1701150042e45126415afd7768e2dc798906a1c4))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add keyboard plugin ([#2665](https://github.com/antvis/x6/issues/2665)) ([bf53677](https://github.com/antvis/x6/commit/bf536778ca7ee3229390dfcfcb085ec55edd9fb2))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-keyboard",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "keyboard plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -40,10 +40,10 @@
|
||||
"mousetrap": "^1.6.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6": "^2.0.x",
|
||||
"@types/mousetrap": "^1.6.5"
|
||||
},
|
||||
"author": {
|
||||
|
@ -1,127 +0,0 @@
|
||||
## @antv/x6-plugin-minimap [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-minimap@1.0.0...@antv/x6-plugin-minimap@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-minimap 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-minimap 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-minimap",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "minimap plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,157 +0,0 @@
|
||||
## @antv/x6-plugin-scroller [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-scroller@1.0.0...@antv/x6-plugin-scroller@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-scroller 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add return value for autoScroller in scroller plugin ([5e102a3](https://github.com/antvis/x6/commit/5e102a39c5bd14a478edd4f36c4264997027c2a9))
|
||||
* 🐛 change init method to public ([#2671](https://github.com/antvis/x6/issues/2671)) ([8a17bfa](https://github.com/antvis/x6/commit/8a17bfac81190e6c492690ad4f1ae4b80eeb98b5))
|
||||
* 🐛 debounce update methords in scroller ([6e1bd9b](https://github.com/antvis/x6/commit/6e1bd9b5307b4cf17b3951168e10527d6111e5e5))
|
||||
* 🐛 ensure css loader for plugin ([24de125](https://github.com/antvis/x6/commit/24de1254a14937a8b5fbb9fd1635e470ae10ebc9))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add autoResize feature ([5aeae97](https://github.com/antvis/x6/commit/5aeae976cd7638b2b5c05bc12bc56b562366fe5f))
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* ✨ add scroller api ([12173bf](https://github.com/antvis/x6/commit/12173bf500624f197ed56cf6a797499587178cba))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ add some missing api ([1dcb3d9](https://github.com/antvis/x6/commit/1dcb3d92fd83e5dfd1a1af9670d539a99dd9f55a))
|
||||
* ✨ add trnsition methods for scroller plugin ([#2670](https://github.com/antvis/x6/issues/2670)) ([f43e0a5](https://github.com/antvis/x6/commit/f43e0a5417ced76ff328f130872dea5c0b13acbd))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* ✨ improve auto-resize feature ([40d5335](https://github.com/antvis/x6/commit/40d53355cedc0bbbeb1e26948b67254dc6a40d85))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-scroller 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add return value for autoScroller in scroller plugin ([5e102a3](https://github.com/antvis/x6/commit/5e102a39c5bd14a478edd4f36c4264997027c2a9))
|
||||
* 🐛 change init method to public ([#2671](https://github.com/antvis/x6/issues/2671)) ([8a17bfa](https://github.com/antvis/x6/commit/8a17bfac81190e6c492690ad4f1ae4b80eeb98b5))
|
||||
* 🐛 debounce update methords in scroller ([6e1bd9b](https://github.com/antvis/x6/commit/6e1bd9b5307b4cf17b3951168e10527d6111e5e5))
|
||||
* 🐛 ensure css loader for plugin ([24de125](https://github.com/antvis/x6/commit/24de1254a14937a8b5fbb9fd1635e470ae10ebc9))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add autoResize feature ([5aeae97](https://github.com/antvis/x6/commit/5aeae976cd7638b2b5c05bc12bc56b562366fe5f))
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ add minimap plugin ([6cdecbb](https://github.com/antvis/x6/commit/6cdecbbba9a4db1f67189e23fb89f2a7ba2af99e))
|
||||
* ✨ add scroller api ([12173bf](https://github.com/antvis/x6/commit/12173bf500624f197ed56cf6a797499587178cba))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ add some missing api ([1dcb3d9](https://github.com/antvis/x6/commit/1dcb3d92fd83e5dfd1a1af9670d539a99dd9f55a))
|
||||
* ✨ add trnsition methods for scroller plugin ([#2670](https://github.com/antvis/x6/issues/2670)) ([f43e0a5](https://github.com/antvis/x6/commit/f43e0a5417ced76ff328f130872dea5c0b13acbd))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* ✨ improve auto-resize feature ([40d5335](https://github.com/antvis/x6/commit/40d53355cedc0bbbeb1e26948b67254dc6a40d85))
|
||||
* ✨ improve scroller plugin ([#2667](https://github.com/antvis/x6/issues/2667)) ([25b238f](https://github.com/antvis/x6/commit/25b238fd0bd289c0175f0cb1282233cb3badbc20))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-scroller",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "scroller plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,139 +0,0 @@
|
||||
## @antv/x6-plugin-selection [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-selection@1.0.0...@antv/x6-plugin-selection@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-selection 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 ensure css loader for plugin ([24de125](https://github.com/antvis/x6/commit/24de1254a14937a8b5fbb9fd1635e470ae10ebc9))
|
||||
* 🐛 fix multiple selection drag error ([5ae7807](https://github.com/antvis/x6/commit/5ae78077e2a495122a28c75dbb30377eae5c45e6))
|
||||
* 🐛 fix the error in selected nodes position when snapline enabled ([#2797](https://github.com/antvis/x6/issues/2797)) ([1e7f132](https://github.com/antvis/x6/commit/1e7f132bed15006cc5535f1294f0b8a545dd6441))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-selection 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 ensure css loader for plugin ([24de125](https://github.com/antvis/x6/commit/24de1254a14937a8b5fbb9fd1635e470ae10ebc9))
|
||||
* 🐛 fix multiple selection drag error ([5ae7807](https://github.com/antvis/x6/commit/5ae78077e2a495122a28c75dbb30377eae5c45e6))
|
||||
* 🐛 fix the error in selected nodes position when snapline enabled ([#2797](https://github.com/antvis/x6/issues/2797)) ([1e7f132](https://github.com/antvis/x6/commit/1e7f132bed15006cc5535f1294f0b8a545dd6441))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add clipboard plugin ([8107f6d](https://github.com/antvis/x6/commit/8107f6df5de52a33e1b8094a44d59ee7fd2a8042))
|
||||
* ✨ add selection plugin ([#2742](https://github.com/antvis/x6/issues/2742)) ([50a5dc7](https://github.com/antvis/x6/commit/50a5dc7cd8c2e39a1f8bf8359a0eb189dda8cb86))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ expose the selection api ([#2756](https://github.com/antvis/x6/issues/2756)) ([f3edbbc](https://github.com/antvis/x6/commit/f3edbbc95d2038a61116fa71bb0c3016f1c92d5e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-selection",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "selection plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,129 +0,0 @@
|
||||
## @antv/x6-plugin-snapline [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-snapline@1.0.0...@antv/x6-plugin-snapline@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-snapline 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add dnd plugin ([269fae9](https://github.com/antvis/x6/commit/269fae9e5eeb969c6a7884373aa3a32002c064e6))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-snapline 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add dnd plugin ([269fae9](https://github.com/antvis/x6/commit/269fae9e5eeb969c6a7884373aa3a32002c064e6))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-snapline",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "snapline plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,130 +0,0 @@
|
||||
## @antv/x6-plugin-stencil [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-stencil@1.0.0...@antv/x6-plugin-stencil@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
* **@antv/x6-plugin-dnd:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-stencil 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add stencil plugin ([#2815](https://github.com/antvis/x6/issues/2815)) ([4e1fb7b](https://github.com/antvis/x6/commit/4e1fb7bef8ff5548edf2529eb27be0a66a600996))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
* **@antv/x6-plugin-dnd:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-stencil 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add stencil plugin ([#2815](https://github.com/antvis/x6/issues/2815)) ([4e1fb7b](https://github.com/antvis/x6/commit/4e1fb7bef8ff5548edf2529eb27be0a66a600996))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
* **@antv/x6-plugin-dnd:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-stencil",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "stencil plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,12 +37,12 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6-plugin-dnd": "1.0.1"
|
||||
"@antv/x6": "^2.x",
|
||||
"@antv/x6-plugin-dnd": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6-plugin-dnd": "1.0.1"
|
||||
"@antv/x6": "^2.0.x",
|
||||
"@antv/x6-plugin-dnd": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,129 +0,0 @@
|
||||
## @antv/x6-plugin-transform [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-plugin-transform@1.0.0...@antv/x6-plugin-transform@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-plugin-transform 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* refactor example ([#2831](https://github.com/antvis/x6/issues/2831)) ([3d8f005](https://github.com/antvis/x6/commit/3d8f005696021f1d9f91a96812ebadce179f2d73))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add transform plugin ([#2818](https://github.com/antvis/x6/issues/2818)) ([660e2d7](https://github.com/antvis/x6/commit/660e2d7689bfa59a0f4a4a5e3c0ace70dec21e9e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-plugin-transform 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* refactor example ([#2831](https://github.com/antvis/x6/issues/2831)) ([3d8f005](https://github.com/antvis/x6/commit/3d8f005696021f1d9f91a96812ebadce179f2d73))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([1ffafce](https://github.com/antvis/x6/commit/1ffafcea22472f4e5b50319c91667a1eea457219))
|
||||
* bump to 2.0 ([8638d43](https://github.com/antvis/x6/commit/8638d4310b67b9107e8ef1f6d7a22311f1999df0))
|
||||
* bump to 2.0 ([0e258d0](https://github.com/antvis/x6/commit/0e258d0704b444103410a565fe033dae76426ad4))
|
||||
* force bump to 2.0.0 ([0cab334](https://github.com/antvis/x6/commit/0cab334e4b72a4df33a371c37dfbeff8dc0ae231))
|
||||
* force release 2.0-beta ([af8c588](https://github.com/antvis/x6/commit/af8c5887b3de721f125da6d71e40c3ec76d0f660))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* clean up changelogs ([7c012f7](https://github.com/antvis/x6/commit/7c012f7360ad9b74e5292a7a8d0d04b0ec28987e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add transform plugin ([#2818](https://github.com/antvis/x6/issues/2818)) ([660e2d7](https://github.com/antvis/x6/commit/660e2d7689bfa59a0f4a4a5e3c0ace70dec21e9e))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* bump version
|
||||
* bump to 2.0
|
||||
* force bump to 2.0.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-plugin-transform",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "transform plugin for X6",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -37,10 +37,10 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.x"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1"
|
||||
"@antv/x6": "^2.0.x"
|
||||
},
|
||||
"author": {
|
||||
"name": "bubkoo",
|
||||
|
@ -1,224 +0,0 @@
|
||||
## @antv/x6-react-components [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.0...@antv/x6-react-components@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
# @antv/x6-react-components 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add x6-react-components umd build ([fc91c27](https://github.com/antvis/x6/commit/fc91c271a78d5423bae0fedf6af2bc12d024971f))
|
||||
* 🐛 fast switch menubar-item lead to multiple popup ([#398](https://github.com/antvis/x6/issues/398)) ([12eb2a3](https://github.com/antvis/x6/commit/12eb2a3c60df584d44b5a13cad21b3b90b0134b2))
|
||||
* 🐛 fix x6-react-component release version ([e8e0a9d](https://github.com/antvis/x6/commit/e8e0a9d8eba07740c7aef9e54faf751e694f590f))
|
||||
* 🐛 fix x6-react-components rollup config ([5e47faa](https://github.com/antvis/x6/commit/5e47faaa2c7186716f22128c940a503c63de25a2))
|
||||
* 🐛 release x6-react-components 1.1.3 ([1ca9a1b](https://github.com/antvis/x6/commit/1ca9a1ba2c2931c9eae9fc2ab637777b92260184))
|
||||
* 🐛 revert react-color version ([#1576](https://github.com/antvis/x6/issues/1576)) ([bcaa3a2](https://github.com/antvis/x6/commit/bcaa3a24bb5fa614d5c4299488af676000ed5b79))
|
||||
* 🐛 update .lock file ([462c9a0](https://github.com/antvis/x6/commit/462c9a02014f696adeb908caa020fe2e50b6cc06))
|
||||
* 🐛 update yarn.lock file ([313a471](https://github.com/antvis/x6/commit/313a471ca15bf26781257ab4f3b9b03d61f38bcd))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* fix react-color version to avoid bug ([#1571](https://github.com/antvis/x6/issues/1571)) ([d2d6d6c](https://github.com/antvis/x6/commit/d2d6d6c661d40ddaf3df2d794c3fbd67703a4027))
|
||||
* fix react-color version to avoid bug ([#1579](https://github.com/antvis/x6/issues/1579)) ([8c6ae95](https://github.com/antvis/x6/commit/8c6ae95ec39e71069f0d0791c99530f41b9f35aa))
|
||||
* import css replace less ([#1548](https://github.com/antvis/x6/issues/1548)) ([9ca4ef1](https://github.com/antvis/x6/commit/9ca4ef1553b903ce1da83e20bd9e007d1e85f993))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
* 修复x6-react-component antd引入的问题 ([88d2e8b](https://github.com/antvis/x6/commit/88d2e8b2cf1132d680ef0a69741bad8d862f95f6))
|
||||
* 修复x6-react-component antd引入的问题 ([ff29109](https://github.com/antvis/x6/commit/ff29109b9bc80e6e29ed6421939818904013563e))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* upgrade react to 18 in react-components ([#2836](https://github.com/antvis/x6/issues/2836)) ([5138562](https://github.com/antvis/x6/commit/5138562515ddbd3975adc9d93514f21d6fc2bb3e))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
# @antv/x6-react-components 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add x6-react-components umd build ([fc91c27](https://github.com/antvis/x6/commit/fc91c271a78d5423bae0fedf6af2bc12d024971f))
|
||||
* 🐛 fast switch menubar-item lead to multiple popup ([#398](https://github.com/antvis/x6/issues/398)) ([12eb2a3](https://github.com/antvis/x6/commit/12eb2a3c60df584d44b5a13cad21b3b90b0134b2))
|
||||
* 🐛 fix x6-react-component release version ([e8e0a9d](https://github.com/antvis/x6/commit/e8e0a9d8eba07740c7aef9e54faf751e694f590f))
|
||||
* 🐛 fix x6-react-components rollup config ([5e47faa](https://github.com/antvis/x6/commit/5e47faaa2c7186716f22128c940a503c63de25a2))
|
||||
* 🐛 release x6-react-components 1.1.3 ([1ca9a1b](https://github.com/antvis/x6/commit/1ca9a1ba2c2931c9eae9fc2ab637777b92260184))
|
||||
* 🐛 revert react-color version ([#1576](https://github.com/antvis/x6/issues/1576)) ([bcaa3a2](https://github.com/antvis/x6/commit/bcaa3a24bb5fa614d5c4299488af676000ed5b79))
|
||||
* 🐛 update .lock file ([462c9a0](https://github.com/antvis/x6/commit/462c9a02014f696adeb908caa020fe2e50b6cc06))
|
||||
* 🐛 update yarn.lock file ([313a471](https://github.com/antvis/x6/commit/313a471ca15bf26781257ab4f3b9b03d61f38bcd))
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
* fix react-color version to avoid bug ([#1571](https://github.com/antvis/x6/issues/1571)) ([d2d6d6c](https://github.com/antvis/x6/commit/d2d6d6c661d40ddaf3df2d794c3fbd67703a4027))
|
||||
* fix react-color version to avoid bug ([#1579](https://github.com/antvis/x6/issues/1579)) ([8c6ae95](https://github.com/antvis/x6/commit/8c6ae95ec39e71069f0d0791c99530f41b9f35aa))
|
||||
* import css replace less ([#1548](https://github.com/antvis/x6/issues/1548)) ([9ca4ef1](https://github.com/antvis/x6/commit/9ca4ef1553b903ce1da83e20bd9e007d1e85f993))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
* 修复x6-react-component antd引入的问题 ([88d2e8b](https://github.com/antvis/x6/commit/88d2e8b2cf1132d680ef0a69741bad8d862f95f6))
|
||||
* 修复x6-react-component antd引入的问题 ([ff29109](https://github.com/antvis/x6/commit/ff29109b9bc80e6e29ed6421939818904013563e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* commit message E2BIG ([a2c5f9e](https://github.com/antvis/x6/commit/a2c5f9e943ccf1d7ae478af30cb5022dd72e2e99))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
## @antv/x6-react-components [1.1.16](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.15...@antv/x6-react-components@1.1.16) (2021-11-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 revert react-color version ([#1576](https://github.com/antvis/x6/issues/1576)) ([bcaa3a2](https://github.com/antvis/x6/commit/bcaa3a24bb5fa614d5c4299488af676000ed5b79))
|
||||
* fix react-color version to avoid bug ([#1571](https://github.com/antvis/x6/issues/1571)) ([d2d6d6c](https://github.com/antvis/x6/commit/d2d6d6c661d40ddaf3df2d794c3fbd67703a4027))
|
||||
* fix react-color version to avoid bug ([#1579](https://github.com/antvis/x6/issues/1579)) ([8c6ae95](https://github.com/antvis/x6/commit/8c6ae95ec39e71069f0d0791c99530f41b9f35aa))
|
||||
|
||||
## @antv/x6-react-components [1.1.15](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.14...@antv/x6-react-components@1.1.15) (2021-11-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* import css replace less ([#1548](https://github.com/antvis/x6/issues/1548)) ([9ca4ef1](https://github.com/antvis/x6/commit/9ca4ef1553b903ce1da83e20bd9e007d1e85f993))
|
||||
|
||||
## @antv/x6-react-components [1.1.14](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.13...@antv/x6-react-components@1.1.14) (2021-09-13)
|
||||
|
||||
## @antv/x6-react-components [1.1.13](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.12...@antv/x6-react-components@1.1.13) (2021-06-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([056b862](https://github.com/antvis/x6/commit/056b862b4efe7dbdc559cac7194c2453996acc07))
|
||||
|
||||
## @antv/x6-react-components [1.1.12](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.11...@antv/x6-react-components@1.1.12) (2021-06-11)
|
||||
|
||||
## @antv/x6-react-components [1.1.11](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.10...@antv/x6-react-components@1.1.11) (2021-06-09)
|
||||
|
||||
## @antv/x6-react-components [1.1.10](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.9...@antv/x6-react-components@1.1.10) (2021-05-30)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 fix x6-react-component release version ([508c959](https://github.com/antvis/x6/commit/508c9592e9c2dda5888713c5b69b470ac35697fa))
|
||||
|
||||
## @antv/x6-react-components [1.1.9](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.8...@antv/x6-react-components@1.1.9) (2021-04-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 fix x6-react-components rollup config ([66190e5](https://github.com/antvis/x6/commit/66190e5b980f6061d3219906e9dd200d20e61534))
|
||||
|
||||
## @antv/x6-react-components [1.1.8](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.7...@antv/x6-react-components@1.1.8) (2021-03-30)
|
||||
|
||||
## @antv/x6-react-components [1.1.7](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.6...@antv/x6-react-components@1.1.7) (2021-03-30)
|
||||
|
||||
## @antv/x6-react-components [1.1.6](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.5...@antv/x6-react-components@1.1.6) (2021-03-29)
|
||||
|
||||
## @antv/x6-react-components [1.1.5](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.4...@antv/x6-react-components@1.1.5) (2021-03-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 修复x6-react-component antd引入的问题 ([edf947d](https://github.com/antvis/x6/commit/edf947debc2d2ea22569a116c41c7af27d81d331))
|
||||
* 修复x6-react-component antd引入的问题 ([b261160](https://github.com/antvis/x6/commit/b261160299a92a796cda8ca96710d7b3447aa815))
|
||||
|
||||
## @antv/x6-react-components [1.1.4](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.3...@antv/x6-react-components@1.1.4) (2021-03-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 release x6-react-components 1.1.3 ([e362ae2](https://github.com/antvis/x6/commit/e362ae273fce752f0ee18da604cd6d3723320feb))
|
||||
|
||||
## @antv/x6-react-components [1.1.3](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.2...@antv/x6-react-components@1.1.3) (2021-03-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 update .lock file ([5fe675c](https://github.com/antvis/x6/commit/5fe675cd1a68a8c50c1dc12fd22c8eb7c54e1e42))
|
||||
* 🐛 update yarn.lock file ([22817d1](https://github.com/antvis/x6/commit/22817d1505e017b73fcc92896cd4032d42fe82b2))
|
||||
|
||||
## @antv/x6-react-components [1.1.2](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.1.1...@antv/x6-react-components@1.1.2) (2021-03-23)
|
||||
|
||||
## @antv/x6-react-components [1.0.3](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.2...@antv/x6-react-components@1.0.3) (2021-01-13)
|
||||
|
||||
## @antv/x6-react-components [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.1...@antv/x6-react-components@1.0.2) (2021-01-12)
|
||||
|
||||
## @antv/x6-react-components [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.0...@antv/x6-react-components@1.0.1) (2021-01-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add x6-react-components umd build ([89421c8](https://github.com/antvis/x6/commit/89421c88afa141fe753cfca65a3c9132007057ce))
|
||||
* 🐛 fast switch menubar-item lead to multiple popup ([#398](https://github.com/antvis/x6/issues/398)) ([8d4644f](https://github.com/antvis/x6/commit/8d4644f27c1f837a422703bcb1ef049c9c2794b8))
|
||||
|
||||
## @antv/x6-react-components [1.0.4](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.3...@antv/x6-react-components@1.0.4) (2020-12-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add x6-react-components umd build ([89421c8](https://github.com/antvis/x6/commit/89421c88afa141fe753cfca65a3c9132007057ce))
|
||||
|
||||
## @antv/x6-react-components [1.0.3](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.2...@antv/x6-react-components@1.0.3) (2020-12-21)
|
||||
|
||||
## @antv/x6-react-components [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.1...@antv/x6-react-components@1.0.2) (2020-12-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 fast switch menubar-item lead to multiple popup ([#398](https://github.com/antvis/x6/issues/398)) ([8d4644f](https://github.com/antvis/x6/commit/8d4644f27c1f837a422703bcb1ef049c9c2794b8))
|
||||
|
||||
## @antv/x6-react-components [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-react-components@1.0.0...@antv/x6-react-components@1.0.1) (2020-12-07)
|
||||
|
||||
## @antv/x6-react-components [0.10.20](https://github.com/antvis/x6/compare/@antv/x6-react-components@0.10.19...@antv/x6-react-components@0.10.20) (2020-11-17)
|
||||
|
||||
## @antv/x6-react-components [0.10.20-beta.1](https://github.com/antvis/x6/compare/@antv/x6-react-components@0.10.19...@antv/x6-react-components@0.10.20-beta.1) (2020-11-17)
|
||||
|
||||
## @antv/x6-react-components [0.10.19](https://github.com/antvis/x6/compare/@antv/x6-react-components@0.10.18...@antv/x6-react-components@0.10.19) (2020-11-10)
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-react-components",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "React components for building x6 editors",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -58,7 +58,7 @@
|
||||
"rc-dropdown": "^3.0.0-alpha.0",
|
||||
"rc-util": "^4.15.7",
|
||||
"react-color": "2.17.1",
|
||||
"react-resize-detector": "^7.0.0",
|
||||
"react-resize-detector": "^6.6.4",
|
||||
"ua-parser-js": "^0.7.20"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -67,7 +67,7 @@
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0",
|
||||
"@types/react-color": "^3.0.1",
|
||||
"@types/react-resize-detector": "^6.0.0",
|
||||
"@types/react-resize-detector": "^5.0.0",
|
||||
"@types/ua-parser-js": "^0.7.33",
|
||||
"antd": "^4.4.2"
|
||||
},
|
||||
|
@ -1,294 +0,0 @@
|
||||
## @antv/x6-react-shape [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-react-shape@1.0.0...@antv/x6-react-shape@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-react-shape 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add unregister for react/vue shape ([b741a0d](https://github.com/antvis/x6/commit/b741a0d82ae4bb6e1579b8656086b4ff0173f845))
|
||||
* 🐛 component was rendered twice on init ([2d230f4](https://github.com/antvis/x6/commit/2d230f47c781301fd30011441099d4c0efad1ed2))
|
||||
* 🐛 do not pass `node` prop to inline component ([9deb76b](https://github.com/antvis/x6/commit/9deb76bcefb9bf1e0a053c8443e5aeb4b45bf44b))
|
||||
* 🐛 global `process` should be replaced when build with rollup ([b459b61](https://github.com/antvis/x6/commit/b459b61a7aa966ff83bfb5992586aed2583b8a46)), closes [#324](https://github.com/antvis/x6/issues/324)
|
||||
* 🐛 interact with input rendered in react component ([82478b1](https://github.com/antvis/x6/commit/82478b1d66e3b8b4346dab9041cb00e54fea9be1))
|
||||
* 🐛 revert add unmont method ([#1125](https://github.com/antvis/x6/issues/1125)) ([0cd8a9f](https://github.com/antvis/x6/commit/0cd8a9fee5d5f2b0f4f6f7419ef41b40f9129340))
|
||||
* 🐛 unmount component when node unmount ([#1118](https://github.com/antvis/x6/issues/1118)) ([e029c7a](https://github.com/antvis/x6/commit/e029c7a6d281c727167a9076ba3217fed2a4d618))
|
||||
* 🐛 update x6-react-shape ([#1424](https://github.com/antvis/x6/issues/1424)) ([27810c7](https://github.com/antvis/x6/commit/27810c73e4778cd1a8f587f477cf3ff668160c9b))
|
||||
* 🐛 update x6-react-shape version ([#1422](https://github.com/antvis/x6/issues/1422)) ([ed6ac13](https://github.com/antvis/x6/commit/ed6ac135a991c2474694124846b732867bf81f8f))
|
||||
* 🐛 use selectors to find react's container ([f5ed04e](https://github.com/antvis/x6/commit/f5ed04ec95c07a310b32e435b2405db14a8cf4d5))
|
||||
* 🐛 version error ([5c80d69](https://github.com/antvis/x6/commit/5c80d69f66217e131176fce89b95d30bd47e3c4c))
|
||||
* 🐛 version error ([fd57688](https://github.com/antvis/x6/commit/fd5768861fedda32d341c774f6e80da67646426f))
|
||||
* 🐛 version not found ([8166346](https://github.com/antvis/x6/commit/8166346771f11ef5997a6e1ed376987408e57cde))
|
||||
* 🐛 x6 version ([f2e01c4](https://github.com/antvis/x6/commit/f2e01c44a1f1acd9390c9de0b5ade913cfd8b03b))
|
||||
* **anchor:** position of anchor and connection point ([f8f432a](https://github.com/antvis/x6/commit/f8f432afcef3cf5aec0c72cc351e8065c9c4559f))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* component function should be called on every change of the node ([3d92caf](https://github.com/antvis/x6/commit/3d92caf6a97db95fee874359b7e62691f01a77f6)), closes [#185](https://github.com/antvis/x6/issues/185)
|
||||
* extends style ([04d4aab](https://github.com/antvis/x6/commit/04d4aab8d25acd3edfa0e842987c7338989d7476))
|
||||
* fix type error ([c5f14c4](https://github.com/antvis/x6/commit/c5f14c419f31abd7c6fe1113bf90b55724745828))
|
||||
* fix x6-react-shape typo 'getPovider' ([83be5e1](https://github.com/antvis/x6/commit/83be5e10eecc687a7d389c17141ebd49d6fcc7f2))
|
||||
* **minimap:** only render facade for minimap ([aa65629](https://github.com/antvis/x6/commit/aa65629df6e13e05d121861c7b56256be840054a))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add `primer` and `useForeignObject` option for react-shape ([ab6a06f](https://github.com/antvis/x6/commit/ab6a06f1fe70b71ae31acc47b0d9cb02c86097e2))
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add usePortal react hook in x6-react-shape ([b57760e](https://github.com/antvis/x6/commit/b57760e2f778b4bc8307a6cabd4eca14e0f91279))
|
||||
* ✨ dispose components when unmount ([#1745](https://github.com/antvis/x6/issues/1745)) ([2bcd45f](https://github.com/antvis/x6/commit/2bcd45f818cfad5c19011660b30bbdd602787cd7))
|
||||
* ✨ dot not update peerDependencies with x6 publish ([6d13809](https://github.com/antvis/x6/commit/6d138097cfce1755164f166a5e0c44d05b399528))
|
||||
* ✨ support inherit options for react-shape registry ([#2596](https://github.com/antvis/x6/issues/2596)) ([ad63046](https://github.com/antvis/x6/commit/ad63046e89fa5853b0cf15947af1ed2a7b625188))
|
||||
* ✨ support react portal ([c20c0c4](https://github.com/antvis/x6/commit/c20c0c473ee311b12a09193bb43209f47e7363b9))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* custom function to return a react component ([da24c84](https://github.com/antvis/x6/commit/da24c84be4716def93232de4cea740a1a1e18e9a))
|
||||
* dynamic update react node ([58539a4](https://github.com/antvis/x6/commit/58539a48ed461c717b8278d3088eb54608e2175f))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* init ([8cad113](https://github.com/antvis/x6/commit/8cad113bae4b4856905e39a791aa6ea69e7bd361))
|
||||
* only export the shape ([527e501](https://github.com/antvis/x6/commit/527e5010e422dbfb0f15c8edc4d4c358bc54772b))
|
||||
* react shape registry and hook ([d5fdd65](https://github.com/antvis/x6/commit/d5fdd655c3bd27f10ce3ec5ed4f52d11a66a71d4))
|
||||
* **react-shape:** ✨ add throttle to size and position ([#1335](https://github.com/antvis/x6/issues/1335)) ([be0b78b](https://github.com/antvis/x6/commit/be0b78b2f6db7a73e7ff03e8dd8bff313cce9783))
|
||||
* Support jsdelivr and cdnjs CDN service [#335](https://github.com/antvis/x6/issues/335) ([#336](https://github.com/antvis/x6/issues/336)) ([be37f66](https://github.com/antvis/x6/commit/be37f66e421aa999332dd2f54f711f930fc095dc))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* use x6-dom-util ([28b082c](https://github.com/antvis/x6/commit/28b082c8a5a37b4c2034fedf71c6e2b01c1c2b0f))
|
||||
* use x6-util ([85240e9](https://github.com/antvis/x6/commit/85240e9a1aac5387b79916ead3b309b7c1e2b7db))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ add simple config to remove rect and text element ([#1449](https://github.com/antvis/x6/issues/1449)) ([0b5f241](https://github.com/antvis/x6/commit/0b5f2413f0b907316784149027615ae2d09616a4))
|
||||
* ⚡️ optimize node render performance ([6554959](https://github.com/antvis/x6/commit/65549599d2f82f8052d16776c8d36ce7ee2fba9b))
|
||||
* do not re-render react component when shape redrawing ([7bde71d](https://github.com/antvis/x6/commit/7bde71d75da535eec944754b047066fce180cc25))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-react-shape 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add unregister for react/vue shape ([b741a0d](https://github.com/antvis/x6/commit/b741a0d82ae4bb6e1579b8656086b4ff0173f845))
|
||||
* 🐛 component was rendered twice on init ([2d230f4](https://github.com/antvis/x6/commit/2d230f47c781301fd30011441099d4c0efad1ed2))
|
||||
* 🐛 do not pass `node` prop to inline component ([9deb76b](https://github.com/antvis/x6/commit/9deb76bcefb9bf1e0a053c8443e5aeb4b45bf44b))
|
||||
* 🐛 global `process` should be replaced when build with rollup ([b459b61](https://github.com/antvis/x6/commit/b459b61a7aa966ff83bfb5992586aed2583b8a46)), closes [#324](https://github.com/antvis/x6/issues/324)
|
||||
* 🐛 interact with input rendered in react component ([82478b1](https://github.com/antvis/x6/commit/82478b1d66e3b8b4346dab9041cb00e54fea9be1))
|
||||
* 🐛 revert add unmont method ([#1125](https://github.com/antvis/x6/issues/1125)) ([0cd8a9f](https://github.com/antvis/x6/commit/0cd8a9fee5d5f2b0f4f6f7419ef41b40f9129340))
|
||||
* 🐛 unmount component when node unmount ([#1118](https://github.com/antvis/x6/issues/1118)) ([e029c7a](https://github.com/antvis/x6/commit/e029c7a6d281c727167a9076ba3217fed2a4d618))
|
||||
* 🐛 update x6-react-shape ([#1424](https://github.com/antvis/x6/issues/1424)) ([27810c7](https://github.com/antvis/x6/commit/27810c73e4778cd1a8f587f477cf3ff668160c9b))
|
||||
* 🐛 update x6-react-shape version ([#1422](https://github.com/antvis/x6/issues/1422)) ([ed6ac13](https://github.com/antvis/x6/commit/ed6ac135a991c2474694124846b732867bf81f8f))
|
||||
* 🐛 use selectors to find react's container ([f5ed04e](https://github.com/antvis/x6/commit/f5ed04ec95c07a310b32e435b2405db14a8cf4d5))
|
||||
* 🐛 version error ([5c80d69](https://github.com/antvis/x6/commit/5c80d69f66217e131176fce89b95d30bd47e3c4c))
|
||||
* 🐛 version error ([fd57688](https://github.com/antvis/x6/commit/fd5768861fedda32d341c774f6e80da67646426f))
|
||||
* 🐛 version not found ([8166346](https://github.com/antvis/x6/commit/8166346771f11ef5997a6e1ed376987408e57cde))
|
||||
* 🐛 x6 version ([f2e01c4](https://github.com/antvis/x6/commit/f2e01c44a1f1acd9390c9de0b5ade913cfd8b03b))
|
||||
* **anchor:** position of anchor and connection point ([f8f432a](https://github.com/antvis/x6/commit/f8f432afcef3cf5aec0c72cc351e8065c9c4559f))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* component function should be called on every change of the node ([3d92caf](https://github.com/antvis/x6/commit/3d92caf6a97db95fee874359b7e62691f01a77f6)), closes [#185](https://github.com/antvis/x6/issues/185)
|
||||
* extends style ([04d4aab](https://github.com/antvis/x6/commit/04d4aab8d25acd3edfa0e842987c7338989d7476))
|
||||
* fix type error ([c5f14c4](https://github.com/antvis/x6/commit/c5f14c419f31abd7c6fe1113bf90b55724745828))
|
||||
* fix x6-react-shape typo 'getPovider' ([83be5e1](https://github.com/antvis/x6/commit/83be5e10eecc687a7d389c17141ebd49d6fcc7f2))
|
||||
* **minimap:** only render facade for minimap ([aa65629](https://github.com/antvis/x6/commit/aa65629df6e13e05d121861c7b56256be840054a))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add `primer` and `useForeignObject` option for react-shape ([ab6a06f](https://github.com/antvis/x6/commit/ab6a06f1fe70b71ae31acc47b0d9cb02c86097e2))
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add usePortal react hook in x6-react-shape ([b57760e](https://github.com/antvis/x6/commit/b57760e2f778b4bc8307a6cabd4eca14e0f91279))
|
||||
* ✨ dispose components when unmount ([#1745](https://github.com/antvis/x6/issues/1745)) ([2bcd45f](https://github.com/antvis/x6/commit/2bcd45f818cfad5c19011660b30bbdd602787cd7))
|
||||
* ✨ dot not update peerDependencies with x6 publish ([6d13809](https://github.com/antvis/x6/commit/6d138097cfce1755164f166a5e0c44d05b399528))
|
||||
* ✨ support inherit options for react-shape registry ([#2596](https://github.com/antvis/x6/issues/2596)) ([ad63046](https://github.com/antvis/x6/commit/ad63046e89fa5853b0cf15947af1ed2a7b625188))
|
||||
* ✨ support react portal ([c20c0c4](https://github.com/antvis/x6/commit/c20c0c473ee311b12a09193bb43209f47e7363b9))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* custom function to return a react component ([da24c84](https://github.com/antvis/x6/commit/da24c84be4716def93232de4cea740a1a1e18e9a))
|
||||
* dynamic update react node ([58539a4](https://github.com/antvis/x6/commit/58539a48ed461c717b8278d3088eb54608e2175f))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* init ([8cad113](https://github.com/antvis/x6/commit/8cad113bae4b4856905e39a791aa6ea69e7bd361))
|
||||
* only export the shape ([527e501](https://github.com/antvis/x6/commit/527e5010e422dbfb0f15c8edc4d4c358bc54772b))
|
||||
* react shape registry and hook ([d5fdd65](https://github.com/antvis/x6/commit/d5fdd655c3bd27f10ce3ec5ed4f52d11a66a71d4))
|
||||
* **react-shape:** ✨ add throttle to size and position ([#1335](https://github.com/antvis/x6/issues/1335)) ([be0b78b](https://github.com/antvis/x6/commit/be0b78b2f6db7a73e7ff03e8dd8bff313cce9783))
|
||||
* Support jsdelivr and cdnjs CDN service [#335](https://github.com/antvis/x6/issues/335) ([#336](https://github.com/antvis/x6/issues/336)) ([be37f66](https://github.com/antvis/x6/commit/be37f66e421aa999332dd2f54f711f930fc095dc))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* use x6-dom-util ([28b082c](https://github.com/antvis/x6/commit/28b082c8a5a37b4c2034fedf71c6e2b01c1c2b0f))
|
||||
* use x6-util ([85240e9](https://github.com/antvis/x6/commit/85240e9a1aac5387b79916ead3b309b7c1e2b7db))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ add simple config to remove rect and text element ([#1449](https://github.com/antvis/x6/issues/1449)) ([0b5f241](https://github.com/antvis/x6/commit/0b5f2413f0b907316784149027615ae2d09616a4))
|
||||
* ⚡️ optimize node render performance ([6554959](https://github.com/antvis/x6/commit/65549599d2f82f8052d16776c8d36ce7ee2fba9b))
|
||||
* do not re-render react component when shape redrawing ([7bde71d](https://github.com/antvis/x6/commit/7bde71d75da535eec944754b047066fce180cc25))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
## @antv/x6-react-shape [2.0.3](https://github.com/antvis/x6/compare/@antv/x6-react-shape@2.0.2...@antv/x6-react-shape@2.0.3) (2022-11-04)
|
||||
|
||||
## @antv/x6-react-shape [2.0.2](https://github.com/antvis/x6/compare/@antv/x6-react-shape@2.0.1...@antv/x6-react-shape@2.0.2) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
## @antv/x6-react-shape [2.0.1](https://github.com/antvis/x6/compare/@antv/x6-react-shape@2.0.0...@antv/x6-react-shape@2.0.1) (2022-11-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6-common:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-react-shape [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-react-shape@1.6.0...@antv/x6-react-shape@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ support inherit options for react-shape registry ([#2596](https://github.com/antvis/x6/issues/2596)) ([ad63046](https://github.com/antvis/x6/commit/ad63046e89fa5853b0cf15947af1ed2a7b625188))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.0
|
||||
* **@antv/x6-common:** upgraded to 1.0.0
|
||||
|
||||
## @antv/x6-react-shape [2.0.6-beta.2](https://github.com/antvis/x6/compare/@antv/x6-react-shape@2.0.6-beta.1...@antv/x6-react-shape@2.0.6-beta.2) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
|
||||
## @antv/x6-react-shape [2.0.6-beta.1](https://github.com/antvis/x6/compare/@antv/x6-react-shape@2.0.0-beta.1...@antv/x6-react-shape@2.0.6-beta.1) (2022-11-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.5
|
||||
* **@antv/x6-common:** upgraded to 2.0.6-beta.1
|
||||
|
||||
# @antv/x6-react-shape [2.0.0-beta.1](https://github.com/antvis/x6/compare/@antv/x6-react-shape@1.6.0...@antv/x6-react-shape@2.0.0-beta.1) (2022-11-03)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ support inherit options for react-shape registry ([#2596](https://github.com/antvis/x6/issues/2596)) ([ad63046](https://github.com/antvis/x6/commit/ad63046e89fa5853b0cf15947af1ed2a7b625188))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.4
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-react-shape",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "X6 shape for rendering react components.",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -38,12 +38,12 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6": "^2.x",
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6": "^2.0.x",
|
||||
"@types/react": "^18.0.0",
|
||||
"@types/react-dom": "^18.0.0",
|
||||
"react": "^18.0.0",
|
||||
|
@ -1,760 +0,0 @@
|
||||
## @antv/x6-vue-shape [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.0...@antv/x6-vue-shape@1.0.1) (2022-11-05)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([04cd9de](https://github.com/antvis/x6/commit/04cd9de505bd92a70f33dbc0cfc75b4f9b8126c1))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-vue-shape 1.0.0 (2022-11-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add primer for vue-shape ([#738](https://github.com/antvis/x6/issues/738)) ([9eaaab4](https://github.com/antvis/x6/commit/9eaaab4017b0915f64b9af650d1982ff94f75274))
|
||||
* 🐛 add unregister for react/vue shape ([b741a0d](https://github.com/antvis/x6/commit/b741a0d82ae4bb6e1579b8656086b4ff0173f845))
|
||||
* 🐛 change vue vm instance ([#1751](https://github.com/antvis/x6/issues/1751)) ([bcf1485](https://github.com/antvis/x6/commit/bcf148584e4dfa9d468033914aec4cc96e90e07c))
|
||||
* 🐛 missing global variable names ([8294209](https://github.com/antvis/x6/commit/8294209f1f1e47cf2cf331351c33ccbcd05867d5))
|
||||
* 🐛 missing vue module ([705c36f](https://github.com/antvis/x6/commit/705c36f1d70126a83d46e27119f4bdd64d2369ff))
|
||||
* 🐛 revert add unmont method ([#1125](https://github.com/antvis/x6/issues/1125)) ([0cd8a9f](https://github.com/antvis/x6/commit/0cd8a9fee5d5f2b0f4f6f7419ef41b40f9129340))
|
||||
* 🐛 type errors ([4973146](https://github.com/antvis/x6/commit/497314691543919bf0c1219f800e77aa54bb6694))
|
||||
* 🐛 unmount component when node unmount ([#1118](https://github.com/antvis/x6/issues/1118)) ([e029c7a](https://github.com/antvis/x6/commit/e029c7a6d281c727167a9076ba3217fed2a4d618))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* fix error in vue shape when formJSON ([e91fb8a](https://github.com/antvis/x6/commit/e91fb8a1967e47ea324ee4733bdb7e835feb8372))
|
||||
* fix type error ([c5f14c4](https://github.com/antvis/x6/commit/c5f14c419f31abd7c6fe1113bf90b55724745828))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
* **x6-vue-shape:** clear vue instance ([#1264](https://github.com/antvis/x6/issues/1264)) ([f8d874c](https://github.com/antvis/x6/commit/f8d874c4103e77df55b075cf5cd40a64945fe7f5)), closes [#1261](https://github.com/antvis/x6/issues/1261)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* bump to 2.0 ([94af7fa](https://github.com/antvis/x6/commit/94af7fa7ec96e3417db9aa5d245751507ae2671e))
|
||||
* bump to 2.0 ([ecffe1a](https://github.com/antvis/x6/commit/ecffe1a2a8bcf5538f027c3c54acaefc50215023))
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ dispose components when unmount ([#1745](https://github.com/antvis/x6/issues/1745)) ([2bcd45f](https://github.com/antvis/x6/commit/2bcd45f818cfad5c19011660b30bbdd602787cd7))
|
||||
* ✨ dot not update peerDependencies with x6 publish ([6d13809](https://github.com/antvis/x6/commit/6d138097cfce1755164f166a5e0c44d05b399528))
|
||||
* ✨ use vue-demi manage vue3 and vue2 ([a96130d](https://github.com/antvis/x6/commit/a96130d12639c1e8d68adc2eea96ec1e6bbc99ce))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* add x6-vue-shape ([4675975](https://github.com/antvis/x6/commit/4675975aa10395fc7c6827af4b08e6406eb4d93b))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ optimize node render performance ([6554959](https://github.com/antvis/x6/commit/65549599d2f82f8052d16776c8d36ce7ee2fba9b))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* bump to 2.0
|
||||
* bump to 2.0
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
# @antv/x6-vue-shape 1.0.0 (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add primer for vue-shape ([#738](https://github.com/antvis/x6/issues/738)) ([9eaaab4](https://github.com/antvis/x6/commit/9eaaab4017b0915f64b9af650d1982ff94f75274))
|
||||
* 🐛 add unregister for react/vue shape ([b741a0d](https://github.com/antvis/x6/commit/b741a0d82ae4bb6e1579b8656086b4ff0173f845))
|
||||
* 🐛 change vue vm instance ([#1751](https://github.com/antvis/x6/issues/1751)) ([bcf1485](https://github.com/antvis/x6/commit/bcf148584e4dfa9d468033914aec4cc96e90e07c))
|
||||
* 🐛 missing global variable names ([8294209](https://github.com/antvis/x6/commit/8294209f1f1e47cf2cf331351c33ccbcd05867d5))
|
||||
* 🐛 missing vue module ([705c36f](https://github.com/antvis/x6/commit/705c36f1d70126a83d46e27119f4bdd64d2369ff))
|
||||
* 🐛 revert add unmont method ([#1125](https://github.com/antvis/x6/issues/1125)) ([0cd8a9f](https://github.com/antvis/x6/commit/0cd8a9fee5d5f2b0f4f6f7419ef41b40f9129340))
|
||||
* 🐛 type errors ([4973146](https://github.com/antvis/x6/commit/497314691543919bf0c1219f800e77aa54bb6694))
|
||||
* 🐛 unmount component when node unmount ([#1118](https://github.com/antvis/x6/issues/1118)) ([e029c7a](https://github.com/antvis/x6/commit/e029c7a6d281c727167a9076ba3217fed2a4d618))
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
* fix error in vue shape when formJSON ([e91fb8a](https://github.com/antvis/x6/commit/e91fb8a1967e47ea324ee4733bdb7e835feb8372))
|
||||
* fix type error ([c5f14c4](https://github.com/antvis/x6/commit/c5f14c419f31abd7c6fe1113bf90b55724745828))
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([49d4371](https://github.com/antvis/x6/commit/49d43716ada672e609e4e6d9c6fdca3f494b6f68))
|
||||
* **x6-vue-shape:** clear vue instance ([#1264](https://github.com/antvis/x6/issues/1264)) ([f8d874c](https://github.com/antvis/x6/commit/f8d874c4103e77df55b075cf5cd40a64945fe7f5)), closes [#1261](https://github.com/antvis/x6/issues/1261)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* ✨ dispose components when unmount ([#1745](https://github.com/antvis/x6/issues/1745)) ([2bcd45f](https://github.com/antvis/x6/commit/2bcd45f818cfad5c19011660b30bbdd602787cd7))
|
||||
* ✨ dot not update peerDependencies with x6 publish ([6d13809](https://github.com/antvis/x6/commit/6d138097cfce1755164f166a5e0c44d05b399528))
|
||||
* ✨ use vue-demi manage vue3 and vue2 ([a96130d](https://github.com/antvis/x6/commit/a96130d12639c1e8d68adc2eea96ec1e6bbc99ce))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* add x6-vue-shape ([4675975](https://github.com/antvis/x6/commit/4675975aa10395fc7c6827af4b08e6406eb4d93b))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ optimize node render performance ([6554959](https://github.com/antvis/x6/commit/65549599d2f82f8052d16776c8d36ce7ee2fba9b))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.0.0
|
||||
|
||||
## @antv/x6-vue-shape [2.0.3](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@2.0.2...@antv/x6-vue-shape@2.0.3) (2022-11-04)
|
||||
|
||||
## @antv/x6-vue-shape [2.0.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@2.0.1...@antv/x6-vue-shape@2.0.2) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove x6-common and x6-geometry deps ([#2830](https://github.com/antvis/x6/issues/2830)) ([5b5f5aa](https://github.com/antvis/x6/commit/5b5f5aa7ea6fded1b15abc79b9b5a5e2281b3ab9))
|
||||
|
||||
## @antv/x6-vue-shape [2.0.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@2.0.0...@antv/x6-vue-shape@2.0.1) (2022-11-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6-common:** upgraded to 1.0.1
|
||||
|
||||
# @antv/x6-vue-shape [2.0.0](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.3.1...@antv/x6-vue-shape@2.0.0) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* adjust event source and package deps ([#2826](https://github.com/antvis/x6/issues/2826)) ([a1bdb18](https://github.com/antvis/x6/commit/a1bdb18b1d1e1967e8e27862fed2e4fe8787a8cb))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.0
|
||||
* **@antv/x6-common:** upgraded to 1.0.0
|
||||
|
||||
## @antv/x6-vue-shape [2.0.6-beta.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@2.0.6-beta.1...@antv/x6-vue-shape@2.0.6-beta.2) (2022-11-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bump rule ([c9559f2](https://github.com/antvis/x6/commit/c9559f2f30790857ff066be7d0ce99ed8933e20c))
|
||||
|
||||
## @antv/x6-vue-shape [2.0.6-beta.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@2.0.0-beta.1...@antv/x6-vue-shape@2.0.6-beta.1) (2022-11-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.5
|
||||
* **@antv/x6-common:** upgraded to 2.0.6-beta.1
|
||||
|
||||
# @antv/x6-vue-shape [2.0.0-beta.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.3.1...@antv/x6-vue-shape@2.0.0-beta.1) (2022-11-03)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* release beta ([b5f3cfa](https://github.com/antvis/x6/commit/b5f3cfa2042f5196a995a38a8f41f140cabdce57))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add html shape ([8d75504](https://github.com/antvis/x6/commit/8d7550413f9f6f3177eab9d0f7fef14c55949fb8))
|
||||
* ✨ add snapline plugin ([294672b](https://github.com/antvis/x6/commit/294672b3066b15ab834ce2a3172facc49004c950))
|
||||
* add scroller plugin ([#2580](https://github.com/antvis/x6/issues/2580)) ([5e0e2ac](https://github.com/antvis/x6/commit/5e0e2acde7d7e259ea27d001983e950878d0ecc8))
|
||||
* force release 2.0-beta ([6987d9c](https://github.com/antvis/x6/commit/6987d9ce64454cd76f697d33f96715dbdf56524a))
|
||||
* support mouseenter and mouseleave event ([#2559](https://github.com/antvis/x6/issues/2559)) ([ecfd426](https://github.com/antvis/x6/commit/ecfd4263b1266a128bf8651c4dd745ff8ab038b3))
|
||||
* support turbo ([1da55bf](https://github.com/antvis/x6/commit/1da55bfda73edaa96515998b5766e9ed5f241ee9))
|
||||
* sync code from master ([#2004](https://github.com/antvis/x6/issues/2004)) ([c681405](https://github.com/antvis/x6/commit/c68140504bd21f654870f3d2fc1ad2f16f1113c8)), closes [#1974](https://github.com/antvis/x6/issues/1974) [#1977](https://github.com/antvis/x6/issues/1977) [#1985](https://github.com/antvis/x6/issues/1985) [#1988](https://github.com/antvis/x6/issues/1988) [#1991](https://github.com/antvis/x6/issues/1991) [#1989](https://github.com/antvis/x6/issues/1989)
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* force release 2.0-beta
|
||||
* force release 2.0-beta
|
||||
* 2.0-beta
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 2.0.6-beta.4
|
||||
* **@antv/x6-common:** upgraded to 1.0.0-beta.1
|
||||
|
||||
## @antv/x6-vue-shape [1.3.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.3.0...@antv/x6-vue-shape@1.3.1) (2022-01-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 change vue vm instance ([#1751](https://github.com/antvis/x6/issues/1751)) ([bcf1485](https://github.com/antvis/x6/commit/bcf148584e4dfa9d468033914aec4cc96e90e07c))
|
||||
|
||||
# @antv/x6-vue-shape [1.3.0](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.10...@antv/x6-vue-shape@1.3.0) (2022-01-11)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ dispose components when unmount ([#1745](https://github.com/antvis/x6/issues/1745)) ([2bcd45f](https://github.com/antvis/x6/commit/2bcd45f818cfad5c19011660b30bbdd602787cd7))
|
||||
|
||||
## @antv/x6-vue-shape [1.2.10](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.9...@antv/x6-vue-shape@1.2.10) (2021-09-13)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.26.2
|
||||
|
||||
## @antv/x6-vue-shape [1.2.9](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.8...@antv/x6-vue-shape@1.2.9) (2021-08-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **x6-vue-shape:** clear vue instance ([#1264](https://github.com/antvis/x6/issues/1264)) ([98d98ca](https://github.com/antvis/x6/commit/98d98ca17c92b357c162b6e118a1e8d6fe72b4d7)), closes [#1261](https://github.com/antvis/x6/issues/1261)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.26.0
|
||||
|
||||
## @antv/x6-vue-shape [1.2.8](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.7...@antv/x6-vue-shape@1.2.8) (2021-06-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 revert add unmont method ([#1125](https://github.com/antvis/x6/issues/1125)) ([d2e0032](https://github.com/antvis/x6/commit/d2e00323c04f7ff9bda784c8569d613a9ee93aa0))
|
||||
|
||||
## @antv/x6-vue-shape [1.2.7](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.6...@antv/x6-vue-shape@1.2.7) (2021-06-20)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 unmount component when node unmount ([#1118](https://github.com/antvis/x6/issues/1118)) ([35e3d07](https://github.com/antvis/x6/commit/35e3d0712250723ca349443c332ee5332ae7ae24))
|
||||
|
||||
## @antv/x6-vue-shape [1.2.6](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.5...@antv/x6-vue-shape@1.2.6) (2021-06-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update dependencies and fix type errors ([#1103](https://github.com/antvis/x6/issues/1103)) ([056b862](https://github.com/antvis/x6/commit/056b862b4efe7dbdc559cac7194c2453996acc07))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.23.10
|
||||
|
||||
## @antv/x6-vue-shape [1.2.5](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.4...@antv/x6-vue-shape@1.2.5) (2021-06-11)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.23.7
|
||||
|
||||
## @antv/x6-vue-shape [1.2.4](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.3...@antv/x6-vue-shape@1.2.4) (2021-04-30)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* ⚡️ optimize node render performance ([433d25f](https://github.com/antvis/x6/commit/433d25ff4a8cb6bab662f1a2317f59c1d41aa7bd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.19.4
|
||||
|
||||
## @antv/x6-vue-shape [1.2.3](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.2...@antv/x6-vue-shape@1.2.3) (2021-03-30)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.18.2
|
||||
|
||||
## @antv/x6-vue-shape [1.2.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.1...@antv/x6-vue-shape@1.2.2) (2021-03-24)
|
||||
|
||||
## @antv/x6-vue-shape [1.2.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.2.0...@antv/x6-vue-shape@1.2.1) (2021-03-23)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 missing global variable names ([64b55f8](https://github.com/antvis/x6/commit/64b55f85b4314a1029cf9a538a4dcc68a1dc945a))
|
||||
* 🐛 type errors ([854619f](https://github.com/antvis/x6/commit/854619f9493661d9a7e743243a81f44bdcc1b40b))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.17.7
|
||||
|
||||
# @antv/x6-vue-shape [1.2.0](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.7...@antv/x6-vue-shape@1.2.0) (2021-03-12)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ use vue-demi manage vue3 and vue2 ([ea66480](https://github.com/antvis/x6/commit/ea6648011e46fce128a9ee28fdf1385255248e92))
|
||||
|
||||
## @antv/x6-vue-shape [1.1.7](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.6...@antv/x6-vue-shape@1.1.7) (2021-03-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add primer for vue-shape ([#738](https://github.com/antvis/x6/issues/738)) ([9dbcb07](https://github.com/antvis/x6/commit/9dbcb074facd75a9c9bc940bc2c831c3349525e8))
|
||||
|
||||
## @antv/x6-vue-shape [1.1.6](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.5...@antv/x6-vue-shape@1.1.6) (2021-02-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix type error ([e419bd4](https://github.com/antvis/x6/commit/e419bd444952e298043da550a3de4528c7259d8e))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.12.30
|
||||
|
||||
## @antv/x6-vue-shape [1.1.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.1...@antv/x6-vue-shape@1.1.2) (2021-01-13)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.8.3
|
||||
|
||||
## @antv/x6-vue-shape [1.1.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.0...@antv/x6-vue-shape@1.1.1) (2021-01-12)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.8.2
|
||||
|
||||
# @antv/x6-vue-shape [1.1.0](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.4...@antv/x6-vue-shape@1.1.0) (2021-01-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add unregister for react/vue shape ([5937a01](https://github.com/antvis/x6/commit/5937a01ee7ebb85b1dd313510d5b9fa88c8c5f32))
|
||||
* fix error in vue shape when formJSON ([d9bf39f](https://github.com/antvis/x6/commit/d9bf39f708d8a6e73443984e02361ad2fb6594a7))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ dot not update peerDependencies with x6 publish ([232fbab](https://github.com/antvis/x6/commit/232fbabf901705874c59178d9f014b1aedc96637))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.8.0
|
||||
|
||||
## @antv/x6-vue-shape [1.1.3](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.2...@antv/x6-vue-shape@1.1.3) (2021-01-11)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.11.1
|
||||
|
||||
## @antv/x6-vue-shape [1.1.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.1...@antv/x6-vue-shape@1.1.2) (2021-01-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix error in vue shape when formJSON ([d9bf39f](https://github.com/antvis/x6/commit/d9bf39f708d8a6e73443984e02361ad2fb6594a7))
|
||||
|
||||
## @antv/x6-vue-shape [1.1.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.1.0...@antv/x6-vue-shape@1.1.1) (2021-01-08)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.11.0
|
||||
|
||||
# @antv/x6-vue-shape [1.1.0](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.27...@antv/x6-vue-shape@1.1.0) (2021-01-08)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ dot not update peerDependencies with x6 publish ([232fbab](https://github.com/antvis/x6/commit/232fbabf901705874c59178d9f014b1aedc96637))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.10.2
|
||||
|
||||
## @antv/x6-vue-shape [1.0.27](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.26...@antv/x6-vue-shape@1.0.27) (2021-01-08)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.10.1
|
||||
|
||||
## @antv/x6-vue-shape [1.0.26](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.25...@antv/x6-vue-shape@1.0.26) (2021-01-08)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.10.0
|
||||
|
||||
## @antv/x6-vue-shape [1.0.25](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.24...@antv/x6-vue-shape@1.0.25) (2021-01-05)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.9.3
|
||||
|
||||
## @antv/x6-vue-shape [1.0.24](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.23...@antv/x6-vue-shape@1.0.24) (2021-01-05)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.9.2
|
||||
|
||||
## @antv/x6-vue-shape [1.0.23](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.22...@antv/x6-vue-shape@1.0.23) (2021-01-05)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.9.1
|
||||
|
||||
## @antv/x6-vue-shape [1.0.22](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.21...@antv/x6-vue-shape@1.0.22) (2021-01-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.9.0
|
||||
|
||||
## @antv/x6-vue-shape [1.0.21](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.20...@antv/x6-vue-shape@1.0.21) (2021-01-04)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.8.0
|
||||
|
||||
## @antv/x6-vue-shape [1.0.20](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.19...@antv/x6-vue-shape@1.0.20) (2021-01-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 add unregister for react/vue shape ([5937a01](https://github.com/antvis/x6/commit/5937a01ee7ebb85b1dd313510d5b9fa88c8c5f32))
|
||||
|
||||
## @antv/x6-vue-shape [1.0.19](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.18...@antv/x6-vue-shape@1.0.19) (2020-12-31)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.12
|
||||
|
||||
## @antv/x6-vue-shape [1.0.18](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.17...@antv/x6-vue-shape@1.0.18) (2020-12-30)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.11
|
||||
|
||||
## @antv/x6-vue-shape [1.0.17](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.16...@antv/x6-vue-shape@1.0.17) (2020-12-29)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.10
|
||||
|
||||
## @antv/x6-vue-shape [1.0.16](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.15...@antv/x6-vue-shape@1.0.16) (2020-12-29)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.9
|
||||
|
||||
## @antv/x6-vue-shape [1.0.15](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.14...@antv/x6-vue-shape@1.0.15) (2020-12-28)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.8
|
||||
|
||||
## @antv/x6-vue-shape [1.0.14](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.13...@antv/x6-vue-shape@1.0.14) (2020-12-26)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.7
|
||||
|
||||
## @antv/x6-vue-shape [1.0.13](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.12...@antv/x6-vue-shape@1.0.13) (2020-12-25)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.6
|
||||
|
||||
## @antv/x6-vue-shape [1.0.12](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.11...@antv/x6-vue-shape@1.0.12) (2020-12-25)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.5
|
||||
|
||||
## @antv/x6-vue-shape [1.0.11](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.10...@antv/x6-vue-shape@1.0.11) (2020-12-24)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.4
|
||||
|
||||
## @antv/x6-vue-shape [1.0.10](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.9...@antv/x6-vue-shape@1.0.10) (2020-12-24)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.3
|
||||
|
||||
## @antv/x6-vue-shape [1.0.9](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.8...@antv/x6-vue-shape@1.0.9) (2020-12-24)
|
||||
|
||||
## @antv/x6-vue-shape [1.0.8](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.7...@antv/x6-vue-shape@1.0.8) (2020-12-24)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.2
|
||||
|
||||
## @antv/x6-vue-shape [1.0.7](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.6...@antv/x6-vue-shape@1.0.7) (2020-12-24)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.1
|
||||
|
||||
## @antv/x6-vue-shape [1.0.6](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.5...@antv/x6-vue-shape@1.0.6) (2020-12-24)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.7.0
|
||||
|
||||
## @antv/x6-vue-shape [1.0.5](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.4...@antv/x6-vue-shape@1.0.5) (2020-12-23)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.6.4
|
||||
|
||||
## @antv/x6-vue-shape [1.0.4](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.3...@antv/x6-vue-shape@1.0.4) (2020-12-22)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.6.3
|
||||
|
||||
## @antv/x6-vue-shape [1.0.3](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.2...@antv/x6-vue-shape@1.0.3) (2020-12-22)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.6.2
|
||||
|
||||
## @antv/x6-vue-shape [1.0.2](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.1...@antv/x6-vue-shape@1.0.2) (2020-12-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 missing vue module ([f7877b7](https://github.com/antvis/x6/commit/f7877b7a981730fdce7f1dda4f710a5769bb3346))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.6.1
|
||||
|
||||
## @antv/x6-vue-shape [1.0.1](https://github.com/antvis/x6/compare/@antv/x6-vue-shape@1.0.0...@antv/x6-vue-shape@1.0.1) (2020-12-21)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* **@antv/x6:** upgraded to 1.6.0
|
||||
|
||||
# @antv/x6-vue-shape 1.0.0 (2020-12-19)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add x6-vue-shape ([38e4a09](https://github.com/antvis/x6/commit/38e4a09344d5d893a36d7edc46fc9b1b291b4fdd))
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6-vue-shape",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "X6 shape for rendering vue components.",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -38,7 +38,7 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"dependencies": {
|
||||
"vue-demi": "latest"
|
||||
"vue-demi": "^0.7.4"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@vue/composition-api": {
|
||||
@ -46,12 +46,12 @@
|
||||
}
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6": "^2.x",
|
||||
"@vue/composition-api": "^1.0.0-rc.6",
|
||||
"vue": "^2.6.12 || ^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/x6": "1.0.1",
|
||||
"@antv/x6": "^2.0.x",
|
||||
"@vue/composition-api": "^1.0.0-rc.6",
|
||||
"vue": "^2.6.12"
|
||||
},
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/x6",
|
||||
"version": "1.0.1",
|
||||
"version": "2.0.0",
|
||||
"description": "JavaScript diagramming library that uses SVG and HTML for rendering",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -44,8 +44,8 @@
|
||||
"pretest": "rss"
|
||||
},
|
||||
"dependencies": {
|
||||
"@antv/x6-common": "1.0.1",
|
||||
"@antv/x6-geometry": "1.0.1",
|
||||
"@antv/x6-common": "^2.0.x",
|
||||
"@antv/x6-geometry": "^2.0.x",
|
||||
"utility-types": "^3.10.0"
|
||||
},
|
||||
"author": {
|
||||
|
10626
pnpm-lock.yaml
generated
10626
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,56 +0,0 @@
|
||||
function delay(ms) {
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(resolve, ms)
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = async ({ github, context, core }) => {
|
||||
// find pr associated with the current SHA
|
||||
const { data: prs } =
|
||||
await github.rest.repos.listPullRequestsAssociatedWithCommit({
|
||||
...context.repo,
|
||||
commit_sha: context.sha,
|
||||
})
|
||||
|
||||
const pr =
|
||||
prs.find((item) => context.payload.ref === `refs/heads/${item.head.ref}`) ||
|
||||
prs[0]
|
||||
|
||||
if (pr) {
|
||||
const path = '.releasing'
|
||||
let res
|
||||
try {
|
||||
res = await github.rest.repos.getContent({
|
||||
...context.repo,
|
||||
path,
|
||||
ref: context.ref,
|
||||
})
|
||||
} catch (e) {}
|
||||
|
||||
if (res) {
|
||||
await github.rest.repos.deleteFile({
|
||||
...context.repo,
|
||||
path,
|
||||
message: 'finalize release [skip ci]',
|
||||
sha: res.data.sha,
|
||||
branch: context.ref,
|
||||
})
|
||||
core.info('".releasing" file deleted')
|
||||
} else {
|
||||
core.info(`".releasing" file not found`)
|
||||
}
|
||||
|
||||
for (let i = 0; i < 5; i++) {
|
||||
await delay(1000)
|
||||
core.info(`delaying ${i + 1}s ...`)
|
||||
}
|
||||
|
||||
await github.rest.pulls.merge({
|
||||
...context.repo,
|
||||
pull_number: pr.number,
|
||||
merge_method: 'squash',
|
||||
})
|
||||
|
||||
core.info('released')
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user