diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 0000000000..654c6d4750 --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,8 @@ +# Changesets + +Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works +with multi-package repos, or single-package repos to help you version and publish your code. You can +find the full documentation for it [in our repository](https://github.com/changesets/changesets). + +We have a quick list of common questions to get you started engaging with this project in +[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md). diff --git a/.changeset/clear-maps-begin.md b/.changeset/clear-maps-begin.md new file mode 100644 index 0000000000..f0184f387e --- /dev/null +++ b/.changeset/clear-maps-begin.md @@ -0,0 +1,6 @@ +--- + +--- + + + \ No newline at end of file diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 0000000000..307a23116e --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@4.0.0/schema.json", + "baseBranch": "master", + "access": "public", + "changelog": "@changesets/cli/changelog", + "commit": false, + "ignore": [], + "fixed": [], + "linked": [], + "updateInternalDependencies": "patch", + "privatePackages": { + "version": false, + "tag": false + }, + "changedFilePatterns": [ + "**", + "!**/*.test.{js,jsx,ts,tsx,mjs}", + "!**/test/**", + "!**/__tests__/**", + "!**/__mocks__/**", + "!**/bench/**", + "!**/demo/**", + "!**/stories/**", + "!**/.storybook/**", + "!**/dist/**", + "!**/build/**", + "!**/coverage/**", + "!**/coverage.json", + "!**/.tscache/**", + "!**/scripts/**", + "!**/grunt/**", + "!**/Gruntfile.js", + "!**/Makefile", + "!**/rollup.config.*", + "!**/rollup.resources.mjs", + "!**/vite.config.*", + "!**/vitest.workspace.*", + "!**/jest.config.js", + "!**/jest.react18.config.mjs", + "!**/karma.conf.js", + "!**/tsconfig*.json", + "!**/dts-generator.config.js", + "!**/knip.json", + "!**/typedoc.*", + "!**/.prettierrc*", + "!**/.gitignore", + "!**/eslint.config.mjs", + "!**/*.md", + "!**/LICENSE" + ] +} diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d015073ee9..a3b7eb9b7d 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,6 +7,7 @@ Please verify that: * [ ] If applicable, there are new or updated unit tests validating the change * [ ] If applicable, there are new or updated @types * [ ] If applicable, documentation has been updated +* [ ] If the change is releasable, you've added a changeset (`yarn changeset`) --> ## Description diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..dd904f6868 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,141 @@ +# Release pipeline, driven by Changesets (https://changesets.dev). +# +# On every push to `master` this workflow decides between two modes: +# +# * `version` - there are pending changesets in `.changeset/`. The workflow +# applies the version bumps + per-package `CHANGELOG.md` entries, deletes +# the consumed changesets and opens (or updates) `changeset-release/master` +# PR titled "Version Packages". +# * `publish` - the release PR has been merged, so the versions in `master` +# are ahead of what is on npm. The workflow builds the workspace, publishes +# every changed public package, and creates a git tag + GitHub Release per +# published package. +# +# Nothing is published until the release PR is merged by a maintainer. +# +# Repository setup: +# * Settings > Actions > General > "Allow GitHub Actions to create and approve +# pull requests" must be enabled (needed to open the release PR). +# * Secret `NPM_TOKEN` - an npm automation token that bypasses 2FA. +# +# Note: the release PR is opened by `github-actions[bot]`, so `test-pr.yml` does +# not run on it. +name: Release + +on: + push: + branches: [ "master" ] + +# Reset permissions and grant them explicitly per job. +permissions: {} + +# Never release twice at the same time. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + +jobs: + # Decide whether this push should version or publish. + select-mode: + if: ${{ github.repository == 'clientIO/joint' }} + runs-on: ubuntu-latest + permissions: + contents: read + outputs: + mode: ${{ steps.select-mode.outputs.mode }} + steps: + - name: Checkout joint + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Setup Node.js v22 + uses: actions/setup-node@v4 + with: + node-version: 22.14.0 + + - name: Cache Yarn + uses: actions/cache@v4 + with: + path: | + .yarn/cache + key: yarn-cache-${{ hashFiles('yarn.lock') }} + + - name: Install dependencies + run: yarn install --immutable + + - name: Select Changesets mode + id: select-mode + uses: changesets/action/select-mode@v2 + + # Pending changesets: open/update the "Version Packages" PR. + version: + needs: select-mode + if: ${{ needs.select-mode.outputs.mode == 'version' }} + runs-on: ubuntu-latest + permissions: + contents: write # commit the version bumps + pull-requests: write # open the release PR + steps: + - name: Checkout joint + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Setup Node.js v22 + uses: actions/setup-node@v4 + with: + node-version: 22.14.0 + + - name: Cache Yarn + uses: actions/cache@v4 + with: + path: | + .yarn/cache + key: yarn-cache-${{ hashFiles('yarn.lock') }} + + - name: Install dependencies + run: yarn install --immutable + + # Runs `changeset version` and pushes the result to `changeset-release/master`. + - name: Version packages + uses: changesets/action/version@v2 + + # Release PR merged: build and publish everything that is not on npm yet. + publish: + needs: select-mode + if: ${{ needs.select-mode.outputs.mode == 'publish' }} + runs-on: ubuntu-latest + permissions: + contents: write # push git tags and create GitHub Releases + steps: + - name: Checkout joint + uses: actions/checkout@v4 + + + - name: Setup Node.js v22 + uses: actions/setup-node@v4 + with: + node-version: 22.14.0 + # No `registry-url` on purpose (not used by Yarn) + + - name: Cache Yarn + uses: actions/cache@v4 + with: + path: | + .yarn/cache + key: yarn-cache-${{ hashFiles('yarn.lock') }} + + - name: Install dependencies + run: yarn install --immutable + + - name: Build packages + run: yarn dist + + # Runs `changeset publish`, which publishes through `yarn npm publish` (Yarn Berry + # is auto-detected), then tags each published package and cuts a GitHub Release. + - name: Publish packages + uses: changesets/action/publish@v2 + env: + YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + # No `NODE_AUTH_TOKEN` on purpose (must use Yarn) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 162955f372..24d3141ddb 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -62,6 +62,18 @@ jobs: id: install-dependencies run: yarn install --immutable + # Changing releasable code in a public package must provide a changeset + # (Releasable files are configured in `.changeset/config.json`) + # (Call `yarn changeset --empty` for a PR without releasable code) + - name: Check changeset + id: check-changeset + # Release PR is skipped - it consumes all changesets instead + if: ${{ github.event_name == 'pull_request' && !startsWith(github.head_ref, 'changeset-release/') }} + # Compare PR to current committed master + run: | + git fetch --no-tags origin '+refs/heads/master:refs/remotes/origin/master' + yarn changeset status --since=origin/master + # Build the joint project - name: Prepare joint id: prepare-joint diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 439707dfc8..1c8992ea6c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,6 +72,7 @@ Before submitting a PR, please verify: - [ ] If applicable, there are new or updated unit tests validating the change - [ ] If applicable, there are new or updated @types - [ ] If applicable, documentation has been updated +- [ ] If the change is releasable, you've added a changeset (`yarn changeset`) ### Commit Message Format @@ -84,6 +85,65 @@ Examples: Types: `feat`, `fix`, `style`, `refactor`, `test`, `chore`, `example` +## Changesets + +Versions and changelogs are managed by [Changesets](https://changesets.dev). Every package +keeps its own `CHANGELOG.md`, and each package is versioned independently. + +If your PR changes releasable code, add a changeset: + +```bash +yarn changeset +``` + +Pick the affected package(s) and the bump type (`patch`, `minor`, `major`), then write a +short summary. The summary is what ends up in the package's `CHANGELOG.md`, so write it for +users of the package - we use the same `scope: description` style as commit messages: + +```markdown +--- +"@joint/core": minor +--- + +dia.Paper: add `originX` and `originY` options to `getFitToContentArea()` +``` + +Commit the generated `.changeset/*.md` file with your PR. + +CI runs `changeset status --since=origin/master` and fails a PR that changes releasable +code in a public package without a changeset. Test-, docs-, demo- and build-config-only +changes are exempt - the exact list lives in `changedFilePatterns` in +[.changeset/config.json](.changeset/config.json). If a PR touches releasable files but +should not trigger a release, add an empty changeset: + +```bash +yarn changeset add --empty +``` + +## Releasing (maintainers) + +Releasing is automated by [.github/workflows/release.yml](.github/workflows/release.yml), +which runs on every push to `master`: + +1. **Version** - while there are pending changesets, the workflow keeps a + `changeset-release/master` PR ("Version Packages") up to date. That PR applies the + version bumps, writes the per-package `CHANGELOG.md` entries and deletes the consumed + changesets. +2. **Publish** - merging that PR is the release. The workflow then builds the workspace, + runs `changeset publish` (which publishes through `yarn npm publish`), and creates a git + tag plus a GitHub Release for every published package. + +Notes: + +- Private packages (`examples/*`, `@joint/shapes-general`, `@joint/shapes-general-tools`) + are never versioned or published. +- Packages depending on `@joint/core` with a `workspace:~` range (`@joint/decorators`, + `@joint/layout-directed-graph`, `@joint/layout-msagl`) get an automatic patch release + whenever `@joint/core` gets a minor release, because their dependency range has to move. +- Prereleases use the standard changesets pre mode: `yarn changeset pre enter beta` on + `master`, release as usual, then `yarn changeset pre exit`. +- Snapshot releases: `yarn changeset version --snapshot` + `yarn changeset publish --tag`. + ## Code Style - TypeScript strict mode is enabled diff --git a/package.json b/package.json index 886bfca87c..56d4555437 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,9 @@ "lint-fix": "yarn workspaces foreach --all -tvv run lint-fix", "pack-all": "yarn workspaces foreach --all -tvv --include \"@joint/core\" --include \"@joint/layout-directed-graph\" --include \"@joint/layout-msagl\" pack --out %s-%v.tgz" }, + "devDependencies": { + "@changesets/cli": "3.0.0" + }, "workspaces": [ "./packages/*", "./examples/*" diff --git a/packages/joint-cli/package.json b/packages/joint-cli/package.json index 64e3884788..2a5a4fcdb9 100644 --- a/packages/joint-cli/package.json +++ b/packages/joint-cli/package.json @@ -8,7 +8,8 @@ "joint": "./dist/cli.js" }, "files": [ - "dist" + "dist", + "./CHANGELOG.md" ], "scripts": { "build": "tsc", diff --git a/packages/joint-core/CHANGELOG.md b/packages/joint-core/CHANGELOG.md new file mode 100644 index 0000000000..c9823d303e --- /dev/null +++ b/packages/joint-core/CHANGELOG.md @@ -0,0 +1,278 @@ +# @joint/core + +## 4.3.1 + +### Patch Changes + +- routers.rightAngle - fix to allow zero-value margins and un-clamp `minPathMargin` + +## 4.3.0 + +### Minor Changes + +- dia.Paper - add `originX` and `originY` options to `getFitToContentArea()` +- dia.Paper - add typed `EventMap` for IDE autocomplete and type-checking on `on()` calls +- dia.Paper - `resolveViewClass` factory now receives the resolved namespace view class as a second argument +- dia.Paper - add `getCellView()` method for strict view lookup +- dia.Paper - add `setDragging()` and `isDragging()` methods for drag-state access +- dia.Paper - auto-emit `resize` event when the host container is resized via CSS +- dia.Paper - `elementView` / `linkView` factory options now receive the namespace view class as a second argument +- dia.GridLayerView - read built-in grid patterns from the paper constructor's static field +- dia.CellView - `getNodeBoundingRect()` and new `computeNodeBoundingRect()` support HTML elements +- dia.Graph - add `getCellNamespace()`, `setCellNamespace()`, `getTypeConstructor()`, `getTypeDefaults()`; deprecate `CellCollection.cellNamespace` setter +- dia.Graph - add typed `EventMap` for IDE autocomplete and type-checking on `on()` calls +- dia.Graph - add `port` and `magnet` options to `getConnectedLinks()` +- dia.Cell - support predicate function for `ignoreEmptyAttributes` option of `toJSON()` +- dia.Cell - add `Cell.JSON` and `Cell.JSONInit` types; deprecate `GenericAttributes` +- anchors.midSide - add `'top-bottom'`, `'bottom-top'`, `'left-right'`, `'right-left'` direction modes +- highlighters - add HTML element support to the mask highlighter +- routers.rightAngle - add `minPathMargin`, `sourceMargin`, and `targetMargin` options +- mvc.View - add `classNamePrefix` instance property to override the `joint-` CSS class prefix +- config - add `storeEmbeds` option to suppress the `embeds` attribute + +### Patch Changes + +- dia.Paper - fix stale cell views when cells become hidden during a batch update +- routers.rightAngle - fix anchor point excluded from clearance bounding-box union +- Vectorizer - fix `getRelativeTransformation()` when the screen CTM is non-invertible + +## 4.2.5 + +### Patch Changes + +- util - fix to guard `merge()`, `omit()`, `pick()`, `assign()` against potential prototype pollution attacks + +## 4.2.4 + +### Patch Changes + +- dia.Paper - fix to handle element removal during pointer events +- dia.Graph - fix to pass options to `batch:start` and `batch:stop` events consistently +- mvc.Model - fix to trigger the `changeId` event only if the previous ID is different from the current ID +- Vectorizer - fix `getTransformToElement()` when the target node is inside a nested SVG document + +## 4.2.3 + +### Patch Changes + +- dia.Paper - fix to wake up idle `async` paper with `initializeUnmounted: true` when a new cell is added to graph +- dia.Paper - fix to prevent an error when a view is synchronously dumped during an asynchronous visibility check +- dia.Element - fix `getPortBBox()` to return a valid bbox when port has no size defined + +## 4.2.2 + +### Patch Changes + +- dia.Graph - fix types + +## 4.2.1 + +### Patch Changes + +- fix types to allow port optional transformations and make all SVG attributes nullable + +## 4.2.0 + +### Minor Changes + +- dia.Paper - introduce layers API +- dia.Paper - rework `autoFreeze` option +- dia.Paper - add `measureNode()` callback option +- dia.Paper - add `findClosestMagnetToPoint()` method +- dia.Paper - add `viewManagement` option for advanced view lifecycle management +- dia.Paper - add `cellVisibility()` callback option +- dia.Paper - add `disposeHiddenCellViews()` method +- dia.Paper - add `prioritizeCellViewMount()` and `prioritizeCellViewUnmount()` methods +- dia.Paper - add `updateCellVisibility()` and `updateCellsVisibility()` methods +- dia.Paper - add `isCellVisible()` method +- dia.LinkView - allow link-to-link snap +- dia.CellView - make `getNodeBBox()` method work for nodes outside the render tree +- dia.CellView - optimize measurements of nodes referenced by `ref` attribute +- dia.Graph - add `syncCells()` method +- dia.Graph - add `removeCell()` method +- dia.Element - add `filter` option to `fitToChildren()` and `fitParent()` methods +- dia.Element - add `minRect` option to `fitToChildren()` and `fitParent()` methods +- dia.Element - support port position `args` inside `position` property +- dia.Element - add `getPortBBox()` and `getPortCenter()` methods +- dia.Element - support custom `portLayoutNamespace` and `portLabelLayoutNamespace` +- dia.Element - support passing custom port label layout functions to `label.position` +- dia.Element - optimize cloning in `getPort()` method +- dia.Element - optimize `hasPort()` and `hasPorts()` methods +- dia.Cell - add `getCenter()` method +- dia.Cell - add cell attributes merge strategy +- dia.Cell - support array paths in `transition()` and `stopTransition()` methods +- dia.Cell - expose `getAttributeDefinition()` method +- dia.attributes - add `useNoBreakSpace` which reinstates `V.sanitizeText()` functionality +- dia.HighlighterView - `z` option now supports highlighter positioning within SVG +- dia.HighlighterView - add static `has()` method to check if CellView has a highlighter attached +- anchors - add `useModelGeometry` option to all anchors +- anchors - add support for `calc()` expressions in `dx`, `dy` options +- anchors.midSide - add `mode` and `preferenceThreshold` options +- connectionPoints - add `useModelGeometry` option to `bbox` and `rectangle` +- mvc.View - allow providing custom `cid` in constructor +- mvc.Collection - use a Map to store references +- Vectorizer - add `safe` option to `getTransformToElement()` method +- Vectorizer - add static `getCommonAncestor()` method +- Vectorizer - add `useNoBreakSpace` option to `text()` method +- Vectorizer - deprecate static `sanitizeText()` method +- Geometry - add `moveAroundPoint()` method to `Rect` + +### Patch Changes + +- dia.Paper - fix to only trigger `'render:idle'` event after all updates are completed +- dia.Paper - fix generic view detachment when `viewport()` callback returns `false` +- dia.Paper - fix to trigger `'render:*'` events when paper model is reset with no cells +- dia.Paper - fix rendering of first batch of updates in `async` mode to be asynchronous +- dia.LinkView - fix to prevent link snap to a magnet when only the host cell is close enough +- dia.LinkView - fix missing arrowheads in WKWebView +- dia.Element - fix to parse numeric strings in port position args +- dia.Cell - fix to always create deep copy of arrays in constructor +- dia.attributes - fix `textWrap` attribute when Paper is not in render tree +- dia.HighlighterView - fix to prevent highlighting nodes outside cell view +- dia.HighlighterView - fix to prevent removing not-yet-mounted HighlighterViews on unmount +- elementTools - fix tools position when attached directly to ElementView +- linkTools.Vertices - fix to call blur when `redundancyRemoval: false` +- Vectorizer - fix to preserve camelCase in `attributeName`, `repeatCount` attribute names +- Vectorizer - fix to handle implicit line coordinates in `convertToPathData()` method +- fix to keep `'use strict'` for minified files + +## 4.1.3 + +### Patch Changes + +- mvc.Dom - use `getComputedStyle` for static position check + +## 4.1.2 + +### Patch Changes + +- mvc.Listener - fix to support running in Web Workers + +## 4.1.1 + +### Patch Changes + +- dia.ElementView - fix return types (DOM `Element` vs. `dia.Element`) +- dia.ToolsView - make sure tools are rendered before the first update + +## 4.1.0 + +### Minor Changes + +- dia.Paper - add methods to find cell/element/link views in paper +- dia.ElementView - add `getTargetParentView()` method +- dia.LinkView - update tools when labels change +- dia.CellView - expose special presentation attributes API +- dia.CellView - add `isIntersecting()` method +- dia.Graph - accept `toJSON()` options +- dia.Graph - add `transferCellEmbeds()` and `transferCellConnectedLinks()` methods +- dia.Graph - add methods to find cells/elements/links in graph +- dia.Element - add `getPortGroupNames()` method +- dia.Cell - add `ignoreDefaults` and `ignoreEmptyAttributes` options to `toJSON()` +- dia.Cell - add `reparent` option to `embed()` +- elementTools.Control - add pointer event to `setPosition()` and `resetPosition()` signature +- linkTools - add `Control` link tool +- linkTools - add `RotateLabel` link tool +- linkTools.Vertices - add `vertexAdding.interactiveLinkNode` option +- linkTools.Button - allow `distance` to be defined via callback +- dia.HighlighterView - add static `getAll()` method +- dia.ToolView - add `visibility` option callback +- util - add `objectDifference()` method +- util - expose `calc()` expression API +- util - expose `cloneCells()` method +- Geometry - add `strict` option to `containsPoint()` of `Rect` + +### Patch Changes + +- dia.ElementView - fix to prevent exception when position or size is not defined +- dia.LinkView - fix to invalidate the root node cache when labels change +- dia.Graph - fix to remove graph reference from cells after `resetCells()` +- linkTools - fix pending batch for `TargetArrowhead` and `SourceArrowhead` +- routers.RightAngle - fix various routing issues +- dia.ToolsView - fix to prevent tool `update()` from being called before previous `render()` due to visibility +- mvc.View - fix to allow setting `style` via options + +## 4.0.4 + +### Patch Changes + +- update HTML demo in alignment with v4 +- dia.LinkView - fix missing arrowheads in Safari +- dia.attributes - fix to take the inline font attributes into account in `textWrap` + +## 4.0.3 + +### Patch Changes + +- dia.Paper - fix to ensure grid pattern IDs are unique +- dia.ElementView - fix to support port IDs of number type +- linkTools.SourceArrowhead - fix to trigger `pointerdown` event when the user starts dragging an arrowhead +- linkTools.TargetArrowhead - fix to trigger `pointerdown` event when the user starts dragging an arrowhead + +## 4.0.2 + +### Patch Changes + +- dia.Paper - fix to prevent leaks of pending animation frame requests on `resetViews()` +- routers.rightAngle - fix to improve generated route +- dia.attributes - fix `text-wrap` to take external CSS into account +- Vectorizer - fix `normalizePathData()` to support zero-length arcto curves + +## 4.0.1 + +### Patch Changes + +- fix content of `dist` folder + +## 4.0.0 + +### Major Changes + +- rename package from `jointjs` to `@joint/core` +- remove `jQuery`, `backbone`, and `lodash` dependencies +- drop `CSS` (`JointJS` no longer distributed with CSS) +- dia.Paper - change the default cell sorting to `APPROX` type +- dia.Paper - remove deprecated `perpendicularLinks` option +- dia.Paper - remove deprecated `linkConnectionPoint` option +- dia.Paper - change the value of the `defaultConnectionPoint` option to `boundary` +- dia.Paper - add SVG `grid` layer +- dia.Paper - drop `drawGrid()` and `clearGrid()` methods +- dia.Paper - new `transform` event added +- dia.Paper - allow passing custom data along with transformation events +- dia.Paper - allow passing custom data along with resize events +- dia.Paper - `origin` option removed +- dia.Paper - `setOrigin` method removed +- dia.Paper - `scale()` no longer accepts scaling origin +- dia.Paper - add `scaleUniformAtPoint()` method +- dia.Paper - fix `paper:pinch` dispatched event type +- dia.LinkView - remove support for legacy +- dia.CellView - early evaluation of `calc` attributes +- dia.CellView - disable `useCSSSelectors` by default +- dia.Graph - throw exception when cell constructor not found +- dia.Link - become an abstract class (same as `dia.Element`) +- dia.Link - replace legacy attributes in the default label definition +- dia.Link - remove the deprecated `smooth` attribute +- dia.Link - remove the deprecated `manhattan` attribute +- dia.Cell - add `mergeArrays` options to constructor +- dia.Cell - remove the `parent(id)` setter +- shapes.standard - use `calc` expressions instead of legacy attributes (drop use of `refWidth`, `refHeight`, `refX`, `refY`, etc.) +- shapes.basic - remove in favor of `shapes.standard` +- shapes.devs - remove from package, define as custom shapes in demos +- shapes.pn - remove from package, define as custom shapes in demos +- shapes.uml - remove from package, define as custom shapes in demos +- shapes.logic - remove from package, define as custom shapes in demos +- shapes.org - remove from package, define as custom shapes in demos +- shapes.chess - remove from package, define as custom shapes in demos +- shapes.fsa - remove from package, define as custom shapes in demos +- highlighters.opacity - add `alphaValue` option +- highlighters.stroke - add `nonScalingStroke` option +- elementTools.Remove - change type to `remove` +- linkTools.Remove - change type to `remove` +- attributes.filter - change the coordinate system of the filters from `objectBoundingBox` to `userSpaceOnUse` +- util - remove deprecated `shapePerimeterConnectionPoint` +- Vectorizer - enable camel case attribute support by default +- Vectorizer - make the `attributeNames` property public + +### Patch Changes + +- linkTools.Vertices - fix to trigger `link:mouseleave` event when the user stops dragging a vertex diff --git a/packages/joint-core/package.json b/packages/joint-core/package.json index 5570496982..6b49249f00 100644 --- a/packages/joint-core/package.json +++ b/packages/joint-core/package.json @@ -87,7 +87,8 @@ "./index.js", "./joint.mjs", "./LICENSE", - "./README.md" + "./README.md", + "./CHANGELOG.md" ], "devDependencies": { "@babel/core": "7.26.10", diff --git a/packages/joint-decorators/package.json b/packages/joint-decorators/package.json index 80161793c7..1078cfab6a 100644 --- a/packages/joint-decorators/package.json +++ b/packages/joint-decorators/package.json @@ -1,7 +1,7 @@ { "name": "@joint/decorators", "title": "JointJS Decorators", - "version": "4.3.1", + "version": "0.4.0", "description": "Decorators module for JointJS", "main": "build/index.js", "types": "build/index.d.ts", @@ -34,7 +34,8 @@ "build/", "src/", "./LICENSE", - "./SECURITY.md" + "./SECURITY.md", + "./CHANGELOG.md" ], "dependencies": { "@joint/core": "workspace:~" diff --git a/packages/joint-eslint-config/package.json b/packages/joint-eslint-config/package.json index 23210cca4c..8a33bd1bf8 100644 --- a/packages/joint-eslint-config/package.json +++ b/packages/joint-eslint-config/package.json @@ -1,7 +1,7 @@ { "name": "@joint/eslint-config", "title": "JointJS ESLintConfig", - "version": "4.3.1", + "version": "4.3.0", "description": "ESLintConfig module for JointJS", "sideEffects": false, "type": "module", diff --git a/packages/joint-layout-directed-graph/CHANGELOG.md b/packages/joint-layout-directed-graph/CHANGELOG.md new file mode 100644 index 0000000000..67c62553fb --- /dev/null +++ b/packages/joint-layout-directed-graph/CHANGELOG.md @@ -0,0 +1,106 @@ +# @joint/layout-directed-graph + +## 4.3.0 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.3.0 + +## 4.2.5 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.2.5 + +## 4.2.3 + +### Patch Changes + +- layout.DirectedGraph - fix to accept a padding object for `clusterPadding` option of `layout()` +- Updated dependencies + - @joint/core@4.2.3 + +## 4.2.2 + +### Patch Changes + +- layout.DirectedGraph - ignore cell layers in the layout +- Updated dependencies + - @joint/core@4.2.2 + +## 4.2.0 + +### Minor Changes + +- layout.DirectedGraph - support `clusterPadding: 'default'` +- layout.DirectedGraph - expose Dagre `disableOptimalOrderHeuristic` and `customOrder` options + +### Patch Changes + +- Updated dependencies + - @joint/core@4.2.0 + +## 4.1.4 + +### Patch Changes + +- layout.DirectedGraph - fix `resizeClusters` option logic to only resize top-level clusters whose children were provided to the `layout()` function + +## 4.1.3 + +### Patch Changes + +- layout.DirectedGraph - fix to accept `0` value for `nodesep`, `edgesep`, `ranksep` options of `layout()` + +## 4.1.1 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.1.1 + +## 4.1.0 + +### Minor Changes + +- layout.DirectedGraph - add `graph` option to `fromGraphLib()` + +### Patch Changes + +- Updated dependencies + - @joint/core@4.1.0 + +## 4.0.3 + +### Patch Changes + +- fix distributed `package.json` by resolving `@joint/core` workspace dependency + +## 4.0.2 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.0.2 + +## 4.0.1 + +### Patch Changes + +- change the constraint on `@joint/core` dependency to allow patches only +- Updated dependencies + - @joint/core@4.0.1 + +## 4.0.0 + +### Major Changes + +- move the `DirectedGraph` layout into separate package + +### Patch Changes + +- upgrade `dagre` to version `1.0.4` (free from `lodash` dependency) +- Updated dependencies + - @joint/core@4.0.0 diff --git a/packages/joint-layout-directed-graph/package.json b/packages/joint-layout-directed-graph/package.json index d3b33e0a5d..47f83f347c 100644 --- a/packages/joint-layout-directed-graph/package.json +++ b/packages/joint-layout-directed-graph/package.json @@ -1,7 +1,7 @@ { "name": "@joint/layout-directed-graph", "title": "JointJS LayoutDirectedGraph", - "version": "4.3.1", + "version": "4.3.0", "description": "LayoutDirectedGraph module for JointJS", "main": "dist/DirectedGraph.js", "module": "./DirectedGraph.mjs", @@ -46,6 +46,7 @@ "./LICENSE", "./README.md", "./SECURITY.md", + "./CHANGELOG.md", "dist/" ], "dependencies": { diff --git a/packages/joint-layout-msagl/CHANGELOG.md b/packages/joint-layout-msagl/CHANGELOG.md new file mode 100644 index 0000000000..13fe4aab81 --- /dev/null +++ b/packages/joint-layout-msagl/CHANGELOG.md @@ -0,0 +1,41 @@ +# @joint/layout-msagl + +## 4.3.0 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.3.0 + +## 4.2.5 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.2.5 + +## 4.2.3 + +### Patch Changes + +- Updated dependencies + - @joint/core@4.2.3 + +## 4.2.2 + +### Patch Changes + +- layout.MSAGL - ignore cell layers in the layout +- Updated dependencies + - @joint/core@4.2.2 + +## 4.2.0 + +### Minor Changes + +- layout.MSAGL - add new layout package utilizing the Microsoft Automatic Graph Layout + +### Patch Changes + +- Updated dependencies + - @joint/core@4.2.0 diff --git a/packages/joint-layout-msagl/package.json b/packages/joint-layout-msagl/package.json index d21840c074..54cd0eab6f 100644 --- a/packages/joint-layout-msagl/package.json +++ b/packages/joint-layout-msagl/package.json @@ -1,7 +1,7 @@ { "name": "@joint/layout-msagl", "title": "JointJS LayoutMSAGL", - "version": "4.3.1", + "version": "4.3.0", "description": "LayoutMSAGL module for JointJS", "sideEffects": false, "main": "./dist/esm/index.mjs", @@ -55,7 +55,8 @@ "dist", "SECURITY.md", "README.md", - "LICENSE" + "LICENSE", + "CHANGELOG.md" ], "dependencies": { "@joint/core": "workspace:~", diff --git a/packages/joint-react/CHANGELOG.md b/packages/joint-react/CHANGELOG.md new file mode 100644 index 0000000000..a66bc8d650 --- /dev/null +++ b/packages/joint-react/CHANGELOG.md @@ -0,0 +1,27 @@ +# @joint/react + +## 4.3.2 + +### Patch Changes + +- - fix the visual grid to redraw reactively when `drawGrid`, `drawGridSize`, or `gridSize` change +- Updated dependencies + - @joint/core@4.3.1 + +## 4.3.1 + +### Patch Changes + +- useCreateFeature - fix duplicate paper feature registration under React 18 StrictMode causing interactions to fire twice +- useCells - fix ghost cells reported after `resetCells()` + +## 4.3.0 + +### Minor Changes + +- new package - idiomatic React components and hooks for JointJS, built directly on the core engine + +### Patch Changes + +- Updated dependencies + - @joint/core@4.3.0 diff --git a/packages/joint-react/package.json b/packages/joint-react/package.json index 8b4086cc45..62d2538fbe 100644 --- a/packages/joint-react/package.json +++ b/packages/joint-react/package.json @@ -71,7 +71,8 @@ "files": [ "dist/", "./LICENSE", - "./README.md" + "./README.md", + "./CHANGELOG.md" ], "dependencies": { "@joint/core": "workspace:^", diff --git a/packages/joint-shapes-general-tools/package.json b/packages/joint-shapes-general-tools/package.json index ecda29a270..28eaa95719 100644 --- a/packages/joint-shapes-general-tools/package.json +++ b/packages/joint-shapes-general-tools/package.json @@ -1,5 +1,6 @@ { "name": "@joint/shapes-general-tools", + "private": true, "title": "JointJS General Shapes Tools", "version": "4.3.1", "description": "General Shapes Tools module for JointJS", diff --git a/packages/joint-shapes-general/package.json b/packages/joint-shapes-general/package.json index f37c113126..1e75ec8355 100644 --- a/packages/joint-shapes-general/package.json +++ b/packages/joint-shapes-general/package.json @@ -1,5 +1,6 @@ { "name": "@joint/shapes-general", + "private": true, "title": "JointJS General Shapes", "version": "4.3.1", "description": "General Shapes module for JointJS", diff --git a/packages/joint-vitest-plugin-mock-svg/package.json b/packages/joint-vitest-plugin-mock-svg/package.json index 37a3db4f52..d5d18c0e56 100644 --- a/packages/joint-vitest-plugin-mock-svg/package.json +++ b/packages/joint-vitest-plugin-mock-svg/package.json @@ -42,7 +42,8 @@ "mocks/", "./LICENSE", "./README.md", - "./SECURITY.md" + "./SECURITY.md", + "./CHANGELOG.md" ], "exports": { ".": { diff --git a/yarn.lock b/yarn.lock index 3aeb50bded..8c8eb312d5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3135,6 +3135,187 @@ __metadata: languageName: node linkType: hard +"@changesets/apply-release-plan@npm:^8.0.0": + version: 8.0.0 + resolution: "@changesets/apply-release-plan@npm:8.0.0" + dependencies: + "@changesets/config": "npm:^4.0.0" + "@changesets/format": "npm:^0.1.1" + "@changesets/git": "npm:^4.0.0" + "@changesets/should-skip-package": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + import-meta-resolve: "npm:^4.2.0" + jsonc-parser: "npm:^3.3.1" + semver: "npm:^7.8.1" + checksum: 10/0d0244c712215f1a409dc37b1cd1d6fe17633aaf1510d206ac42ad625c9e72b63e1fcd91ca269e911c6605a572b78eff3f8b05bd48fd65912a7606835222dca8 + languageName: node + linkType: hard + +"@changesets/assemble-release-plan@npm:^7.0.0": + version: 7.0.0 + resolution: "@changesets/assemble-release-plan@npm:7.0.0" + dependencies: + "@changesets/errors": "npm:^1.0.0" + "@changesets/get-dependents-graph": "npm:^3.0.0" + "@changesets/should-skip-package": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + semver: "npm:^7.8.1" + checksum: 10/1d2b22d57f4db2c33075b511f7185bea63e8b17f6083b0bf607c10ba2868df5942695e29774dce695876f03512da4264edd61101492312ffc716c356f750743d + languageName: node + linkType: hard + +"@changesets/changelog-git@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/changelog-git@npm:1.0.0" + dependencies: + "@changesets/types": "npm:^7.0.0" + checksum: 10/64d4a9b44ee7fee23034f6d89cd80bb66419f59a1002424167a0282dfe252369eb7ecbad1f3eb9a02126d3bc5f9d2e5f8cdc0a51fed9158d71f9491735830d52 + languageName: node + linkType: hard + +"@changesets/cli@npm:3.0.0": + version: 3.0.0 + resolution: "@changesets/cli@npm:3.0.0" + dependencies: + "@changesets/apply-release-plan": "npm:^8.0.0" + "@changesets/assemble-release-plan": "npm:^7.0.0" + "@changesets/changelog-git": "npm:^1.0.0" + "@changesets/config": "npm:^4.0.0" + "@changesets/errors": "npm:^1.0.0" + "@changesets/get-dependents-graph": "npm:^3.0.0" + "@changesets/git": "npm:^4.0.0" + "@changesets/pre": "npm:^3.0.0" + "@changesets/read": "npm:^1.0.0" + "@changesets/should-skip-package": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + "@changesets/write": "npm:^1.0.0" + "@clack/prompts": "npm:^1.7.0" + "@manypkg/get-packages": "npm:^3.1.0" + "@pnpm/deps.graph-sequencer": "npm:^1100.0.1" + cac: "npm:^7.0.0" + import-meta-resolve: "npm:^4.2.0" + launch-editor: "npm:^2.14.1" + package-manager-detector: "npm:^1.6.0" + semver: "npm:^7.8.1" + tinyexec: "npm:^1.3.0" + bin: + changeset: bin.js + checksum: 10/11030de752427fdf551b0f83f9ecf78976129d552b1c1c0fc9d54ab8c105e8c67ca617ea841ebd0b9c5b73847f9cf39bc715abb500f045f2dffbd0f7aab73006 + languageName: node + linkType: hard + +"@changesets/config@npm:^4.0.0": + version: 4.0.0 + resolution: "@changesets/config@npm:4.0.0" + dependencies: + "@changesets/get-dependents-graph": "npm:^3.0.0" + "@changesets/should-skip-package": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + "@manypkg/get-packages": "npm:^3.1.0" + picomatch: "npm:^4.0.4" + checksum: 10/2e21cc47ed2f4f94a8d92baf5c6fd449ece769b1d19b326adcda4db954e6aed91d7e1ee291547766d45e1641d38514b8223e33603f7665316f00288969499997 + languageName: node + linkType: hard + +"@changesets/errors@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/errors@npm:1.0.0" + checksum: 10/27f8ef6c539eccb5d3173bd5beb039e3ce44e8714cb2cc0749f0ccb98f1af4ef32b6aef25520cfd08e35d6876da634743b04a50ffcd4bde520cb302c5d1dfe04 + languageName: node + linkType: hard + +"@changesets/format@npm:^0.1.1": + version: 0.1.1 + resolution: "@changesets/format@npm:0.1.1" + dependencies: + package-manager-detector: "npm:^1.6.0" + tinyexec: "npm:^1.2.4" + checksum: 10/e1c7c1808b4b1f3120607e2729739a49e2c712c4745a3f80313cc5fa5d41e0c36272692cd12ea34da7dc7ee237ccb18d677dc23c454483d34e6316dad892942c + languageName: node + linkType: hard + +"@changesets/get-dependents-graph@npm:^3.0.0": + version: 3.0.0 + resolution: "@changesets/get-dependents-graph@npm:3.0.0" + dependencies: + "@changesets/types": "npm:^7.0.0" + semver: "npm:^7.8.1" + checksum: 10/3b53b29bc316acc08f76351711b2e90f79237a8d5c1369e845c05f940b69b580d438404b7f53fce997a97f926279135b88995ce819fe6bb211a577a80b381804 + languageName: node + linkType: hard + +"@changesets/git@npm:^4.0.0": + version: 4.0.0 + resolution: "@changesets/git@npm:4.0.0" + dependencies: + "@changesets/errors": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + "@manypkg/get-packages": "npm:^3.1.0" + picomatch: "npm:^4.0.4" + tinyexec: "npm:^1.3.0" + checksum: 10/f2907b0c3a9b8c1d135f87952505c675f304dc0162fef46a2e4fc255dea2b380730813e6e355bda5e70d453a1c8bf231ef1de947cc7b7bc3aca4f6926b09980f + languageName: node + linkType: hard + +"@changesets/parse@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/parse@npm:1.0.0" + dependencies: + "@changesets/types": "npm:^7.0.0" + yaml: "npm:^2.9.0" + checksum: 10/f3e7d0cb03d9218abebb1e7bd2244befcddab7cd9299f88714fc2ac3f5b16850efc158f67155ccfe46ccd6e6a8371b8db02121b9c0b2ac1ce947f3634f248b64 + languageName: node + linkType: hard + +"@changesets/pre@npm:^3.0.0": + version: 3.0.0 + resolution: "@changesets/pre@npm:3.0.0" + dependencies: + "@changesets/errors": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + "@manypkg/get-packages": "npm:^3.1.0" + checksum: 10/c9615ad03b7efc020bc4046ddc158ce62eaa7aee4e283e9b7c0da229ddad74e86707bf54c73681fe8822305486bfd1691d3118ba3e674018a1f07a46640faa10 + languageName: node + linkType: hard + +"@changesets/read@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/read@npm:1.0.0" + dependencies: + "@changesets/git": "npm:^4.0.0" + "@changesets/parse": "npm:^1.0.0" + "@changesets/types": "npm:^7.0.0" + checksum: 10/505e723f87fd847b7264ce342a0b3f5aa849d5d6aba6806d1e7fc0490964e3716bb0fc065dd6a87e970a3684fe04d30ef789a1c0f1d49671dadc4b55c7a5c65d + languageName: node + linkType: hard + +"@changesets/should-skip-package@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/should-skip-package@npm:1.0.0" + dependencies: + "@changesets/types": "npm:^7.0.0" + checksum: 10/143f7757fa602e173ec6cd504c41c0d4a204c6b36f5bdc80fbf13e2eec22cdd371b97daaebbd8b772fde1329070fb1ac80f9925193ebc0782c178e7c5a37aaee + languageName: node + linkType: hard + +"@changesets/types@npm:^7.0.0": + version: 7.0.0 + resolution: "@changesets/types@npm:7.0.0" + checksum: 10/7de8bfc0614cf76c0d1d699b61e1f1ba11abb9dd0f5eb0525fbddcf4bcca519151078c27e3bfa1fcf63aba23e28b744c18048eec3d4fb3eec5c763915edbaae2 + languageName: node + linkType: hard + +"@changesets/write@npm:^1.0.0": + version: 1.0.0 + resolution: "@changesets/write@npm:1.0.0" + dependencies: + "@changesets/format": "npm:^0.1.1" + "@changesets/types": "npm:^7.0.0" + human-id: "npm:^4.2.0" + checksum: 10/9a67ab5eb8adf0a94f7cc03eb6b29ffccc16e491149ba00130b1cb95a0ea69bf8439041ad8f606f25cb13e7ea5a1c5f1d413f9b1e35e7e44a925195e327fcee2 + languageName: node + linkType: hard + "@clack/core@npm:0.3.5, @clack/core@npm:^0.3.5": version: 0.3.5 resolution: "@clack/core@npm:0.3.5" @@ -3145,6 +3326,16 @@ __metadata: languageName: node linkType: hard +"@clack/core@npm:1.4.3": + version: 1.4.3 + resolution: "@clack/core@npm:1.4.3" + dependencies: + fast-wrap-ansi: "npm:^0.2.0" + sisteransi: "npm:^1.0.5" + checksum: 10/9d875718cb161e0eca97c3ed3ba3063211436c4224a04556b840e045f18505c8fdb645754d9459181069b3a3b6699962d0f47e38e2502cb0acfef1649b3557b3 + languageName: node + linkType: hard + "@clack/prompts@npm:^0.8.2": version: 0.8.2 resolution: "@clack/prompts@npm:0.8.2" @@ -3156,6 +3347,18 @@ __metadata: languageName: node linkType: hard +"@clack/prompts@npm:^1.7.0": + version: 1.7.0 + resolution: "@clack/prompts@npm:1.7.0" + dependencies: + "@clack/core": "npm:1.4.3" + fast-string-width: "npm:^3.0.2" + fast-wrap-ansi: "npm:^0.2.0" + sisteransi: "npm:^1.0.5" + checksum: 10/2bfc89d6755a1e10166a3b7a6cc883a09c1d4d82c08fbe98763284d522f256a58ed20c5ee4ab36f2a6e06bc1b3f0c16b02657159f7d593dab12c55260755f0c2 + languageName: node + linkType: hard + "@colors/colors@npm:1.5.0": version: 1.5.0 resolution: "@colors/colors@npm:1.5.0" @@ -7000,6 +7203,36 @@ __metadata: languageName: node linkType: hard +"@manypkg/find-root@npm:^3.1.0": + version: 3.1.0 + resolution: "@manypkg/find-root@npm:3.1.0" + dependencies: + "@manypkg/tools": "npm:^2.1.0" + checksum: 10/49d625ce57a142066ac8bc135219fcb924715e7f54ece98d36208034beeba20133c49e4bb6b636a5e7d0c0633f157a9c3523e65397839f487d88490c42bfab62 + languageName: node + linkType: hard + +"@manypkg/get-packages@npm:^3.1.0": + version: 3.1.0 + resolution: "@manypkg/get-packages@npm:3.1.0" + dependencies: + "@manypkg/find-root": "npm:^3.1.0" + "@manypkg/tools": "npm:^2.1.0" + checksum: 10/f6c7e16fc99fc17138b0eeda2374ccd3279b9d520e87ddb25296738d83bb1345f67ff1bf6b759ec19d9df84fcb3dd20546eb2cdafb53c378fa4bcebeb693e6d3 + languageName: node + linkType: hard + +"@manypkg/tools@npm:^2.1.0": + version: 2.1.2 + resolution: "@manypkg/tools@npm:2.1.2" + dependencies: + jju: "npm:^1.4.0" + tinyglobby: "npm:^0.2.13" + yaml: "npm:^2.9.0" + checksum: 10/b5ccf5500c8103978a2d1adcfbea9c51e637e1f03efabe0f8bc3631ff43d066459f965c73bdd68e575abd9237edb73b1fc83dab6b3e91bd49d39810466ff0755 + languageName: node + linkType: hard + "@mdx-js/react@npm:^3.0.0": version: 3.1.1 resolution: "@mdx-js/react@npm:3.1.1" @@ -8214,6 +8447,13 @@ __metadata: languageName: node linkType: hard +"@pnpm/deps.graph-sequencer@npm:^1100.0.1": + version: 1100.0.1 + resolution: "@pnpm/deps.graph-sequencer@npm:1100.0.1" + checksum: 10/b1e4d2bf61458bddaa1ebfb5c50a5643b1fa8607773583676e537350293682f14af96932e0519837fc5d91a56d3332892b5199f3d95056817696c9394cf4c4ab + languageName: node + linkType: hard + "@polka/url@npm:^1.0.0-next.20": version: 1.0.0-next.29 resolution: "@polka/url@npm:1.0.0-next.29" @@ -13723,6 +13963,13 @@ __metadata: languageName: node linkType: hard +"cac@npm:^7.0.0": + version: 7.0.0 + resolution: "cac@npm:7.0.0" + checksum: 10/1ada3b090403d0051619b1519c21db1cb0b32c7772d6c8782cc55c5349caac9efbb1076ba513c5975331ff0bdb104e2be9421fd3ff6c0ef5db9d58a04a4aa6f5 + languageName: node + linkType: hard + "cacache@npm:^12.0.3": version: 12.0.4 resolution: "cacache@npm:12.0.4" @@ -17917,6 +18164,22 @@ __metadata: languageName: node linkType: hard +"fast-string-truncated-width@npm:^3.0.2": + version: 3.0.3 + resolution: "fast-string-truncated-width@npm:3.0.3" + checksum: 10/3a1631e48927cb558b612a90ee78a61a660823c39b024bfc113935760b5b64805dbf03c4e696c33005294db578417687432e9d13567f1a582c2c75015e8a7648 + languageName: node + linkType: hard + +"fast-string-width@npm:^3.0.2": + version: 3.0.2 + resolution: "fast-string-width@npm:3.0.2" + dependencies: + fast-string-truncated-width: "npm:^3.0.2" + checksum: 10/5b9019769f2b00b96d43575c202f4e035a0e55eba7669a9a32351de9fa0805d0959a2afcaec6e4db5ee9b9a4c08d8e77f95abeb04b5bae2f76635cf04ddb4b80 + languageName: node + linkType: hard + "fast-uri@npm:^3.0.1": version: 3.1.0 resolution: "fast-uri@npm:3.1.0" @@ -17924,6 +18187,15 @@ __metadata: languageName: node linkType: hard +"fast-wrap-ansi@npm:^0.2.0": + version: 0.2.2 + resolution: "fast-wrap-ansi@npm:0.2.2" + dependencies: + fast-string-width: "npm:^3.0.2" + checksum: 10/c72272e4ee9c047ec4609adea9beb779f058e0aaee37d9e99d2306c401b34ad2b158ba6969860e35f8be7a0b0ba7512b71315d403e58a45a9f0eba0dc5b4befd + languageName: node + linkType: hard + "fast-xml-parser@npm:^5.3.3": version: 5.3.4 resolution: "fast-xml-parser@npm:5.3.4" @@ -19787,6 +20059,15 @@ __metadata: languageName: node linkType: hard +"human-id@npm:^4.2.0": + version: 4.2.0 + resolution: "human-id@npm:4.2.0" + bin: + human-id: dist/cli.js + checksum: 10/879f603f199642a67995b76a41510e142140f67852fe886c7b4cd1e90f82f4fb1452a6b2a8b75b1c313073e663d0bbcbc5dbb1dd17a648991d4d1a6da709f087 + languageName: node + linkType: hard + "human-signals@npm:^1.1.1": version: 1.1.1 resolution: "human-signals@npm:1.1.1" @@ -19959,7 +20240,7 @@ __metadata: languageName: node linkType: hard -"import-meta-resolve@npm:^4.0.0": +"import-meta-resolve@npm:^4.0.0, import-meta-resolve@npm:^4.2.0": version: 4.2.0 resolution: "import-meta-resolve@npm:4.2.0" checksum: 10/3499ee8b7eddb79be77067b368bcdf39e6f144306dea4686d08071ae7e65a2e3bdca3f98f2a0f4babdcd4ba9d9e7d379ae7e27c4b9bf8b08c1e812a28c674bf3 @@ -21513,9 +21794,18 @@ __metadata: languageName: node linkType: hard +"jju@npm:^1.4.0": + version: 1.4.0 + resolution: "jju@npm:1.4.0" + checksum: 10/1067ff8ce02221faac5a842116ed0ec79a53312a111d0bf8342a80bd02c0a3fdf0b8449694a65947db0a3e8420e8b326dffb489c7dd5866efc380c0d1708a707 + languageName: node + linkType: hard + "joint@workspace:.": version: 0.0.0-use.local resolution: "joint@workspace:." + dependencies: + "@changesets/cli": "npm:3.0.0" languageName: unknown linkType: soft @@ -21755,7 +22045,7 @@ __metadata: languageName: node linkType: hard -"jsonc-parser@npm:3.3.1, jsonc-parser@npm:^3.2.0": +"jsonc-parser@npm:3.3.1, jsonc-parser@npm:^3.2.0, jsonc-parser@npm:^3.3.1": version: 3.3.1 resolution: "jsonc-parser@npm:3.3.1" checksum: 10/9b0dc391f20b47378f843ef1e877e73ec652a5bdc3c5fa1f36af0f119a55091d147a86c1ee86a232296f55c929bba174538c2bf0312610e0817a22de131cc3f4 @@ -22001,6 +22291,16 @@ __metadata: languageName: node linkType: hard +"launch-editor@npm:^2.14.1": + version: 2.14.1 + resolution: "launch-editor@npm:2.14.1" + dependencies: + picocolors: "npm:^1.1.1" + shell-quote: "npm:^1.8.4" + checksum: 10/335d12ca437280e77070657531c251b6c91c62bc653f70ab66ddd2a6e50131b1b043480411c5b93d54955a0a6eb8ec01e9a5b5cfe2d887341d878d19394a126b + languageName: node + linkType: hard + "launch-editor@npm:^2.6.0, launch-editor@npm:^2.6.1": version: 2.12.0 resolution: "launch-editor@npm:2.12.0" @@ -24833,6 +25133,13 @@ __metadata: languageName: node linkType: hard +"package-manager-detector@npm:^1.6.0": + version: 1.8.0 + resolution: "package-manager-detector@npm:1.8.0" + checksum: 10/5d79b8bf3d0d3da312ec08749c74a3b7e4d4139c259fe3561538772c65ece8ff733e002c67a4324b5c505d2ac625c121b94cf3d5135e1b4e43fed5bced148763 + languageName: node + linkType: hard + "pacote@npm:20.0.0": version: 20.0.0 resolution: "pacote@npm:20.0.0" @@ -28012,6 +28319,15 @@ __metadata: languageName: node linkType: hard +"semver@npm:^7.8.1": + version: 7.8.5 + resolution: "semver@npm:7.8.5" + bin: + semver: bin/semver.js + checksum: 10/9b01d2ff11e6e4a4539b7ca3c5f280c8704cb397a28504469f2ed4f00ad2194748d756647362a9712fff30984d15772ab7f083108c2fb508e2096ae9e708f22c + languageName: node + linkType: hard + "send@npm:0.16.2": version: 0.16.2 resolution: "send@npm:0.16.2" @@ -28287,6 +28603,13 @@ __metadata: languageName: node linkType: hard +"shell-quote@npm:^1.8.4": + version: 1.10.0 + resolution: "shell-quote@npm:1.10.0" + checksum: 10/d4a22aeefe64919290af753ac6098239d7ffee52a5db62c20edef69794bd10b5f86e298f68be26af9606ac435e890dd391994a5405a90bb8aebef1ff1dde839b + languageName: node + linkType: hard + "shelljs@npm:0.8.4": version: 0.8.4 resolution: "shelljs@npm:0.8.4" @@ -29814,6 +30137,13 @@ __metadata: languageName: node linkType: hard +"tinyexec@npm:^1.2.4, tinyexec@npm:^1.3.0": + version: 1.3.0 + resolution: "tinyexec@npm:1.3.0" + checksum: 10/749a8c5aac2ffe3f04220b8966f414636c6c324d4ae88895dfffb2319db61cf1c01c5d7e8f0fb8ab747389ea0be1f0f80d850a9cce88a9d96cc5ebcb345db018 + languageName: node + linkType: hard + "tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": version: 0.2.15 resolution: "tinyglobby@npm:0.2.15"