Skip to content

Bump @vue-flow/core from 1.9.4 to 1.10.2

Geoxor requested to merge dependabot/npm_and_yarn/vue-flow/core-1.10.2 into master

Created by: dependabot[bot]

Bumps @vue-flow/core from 1.9.4 to 1.10.2.

Release notes

Sourced from @​vue-flow/core's releases.

v1.10.2

What's Changed

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.10.1...v1.10.2

v1.10.1

What's Changed

Full Changelog: https://github.com/bcakmakoglu/vue-flow/compare/v1.10.0...v1.10.1

v1.10.0

What's Changed

🚀 New Features

You can now use padding on parent extent option. Padding can be a number[] containing a maximum of 4 values. The values are applied in the same order as CSS padding: top, right, bottom, left. You can omit values at the end of the array, so [10, 20] is equivalent to [10, 20, 10, 20] etc.

Usage

const nodes = ref([
  {
    id: '4',
    label: 'Node 4',
    position: { x: 320, y: 200 },
    style: { backgroundColor: 'rgba(255, 0, 0, 0.7)', width: '300px', height: '300px' },
  },
  {
    id: '4a',
    label: 'Node 4a',
    position: { x: 15, y: 65 },
    class: 'light',
    extent: {
      range: 'parent',
      // apply 10 px padding to all four sides
      padding: [10],
    },
</tr></table> 

... (truncated)

Changelog

Sourced from @​vue-flow/core's changelog.

[1.10.2] - 2023-01-05

58fb546...fafb2e4

Bug Fixes

  • Use relative path for tsconfig (140c643)
  • Calculate position and computedPos correctly in calcNextPosition (6aec815)

Miscellaneous Tasks

[1.10.1] - 2023-01-04

c3848a1...58fb546

Bug Fixes

  • Reapply node extent on change (94344a6)

Miscellaneous Tasks

[1.10.0] - 2023-01-04

16d9bb1...c3848a1

Features

  • Allow setting padding for extent parent (de71b5a)

Miscellaneous Tasks

Refactor

  • Allow omitting width/height styles for parent nodes (732e773)
Commits
  • fafb2e4 chore: next release
  • 17cd5bc chore: add changeset
  • fe4309b chore(core): cleanup node wrapper
  • 6aec815 fix(core): calculate position and computedPos correctly in calcNextPosition
  • 0c25796 chore: add changeset
  • 140c643 fix(core): use relative path for tsconfig
  • 7ef1ac6 chore: update CHANGELOG.md
  • 58fb546 chore: next release
  • ea5c35e chore: add changeset
  • 94344a6 fix(core): reapply node extent on change
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Merge request reports