@joint/core 4.1.0-beta.1 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /*! JointJS v4.1.0-beta.1 (2024-10-30) - JavaScript diagramming library
1
+ /*! JointJS v4.1.0 (2024-11-27) - JavaScript diagramming library
2
2
 
3
3
 
4
4
  This Source Code Form is subject to the terms of the Mozilla Public
@@ -1,4 +1,4 @@
1
- /*! JointJS v4.1.0-beta.1 (2024-10-30) - JavaScript diagramming library
1
+ /*! JointJS v4.1.0 (2024-11-27) - JavaScript diagramming library
2
2
 
3
3
 
4
4
  This Source Code Form is subject to the terms of the Mozilla Public
package/dist/version.mjs CHANGED
@@ -1,3 +1,3 @@
1
- var version = "4.1.0-beta.1";
1
+ var version = "4.1.0";
2
2
 
3
3
  export { version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@joint/core",
3
3
  "title": "JointJS",
4
- "version": "4.1.0-beta.1",
4
+ "version": "4.1.0",
5
5
  "description": "JavaScript diagramming library",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/joint.min.js",
package/types/joint.d.ts CHANGED
@@ -2584,6 +2584,8 @@ export namespace shapes {
2584
2584
 
2585
2585
  export namespace util {
2586
2586
 
2587
+ export function cloneCells(cells: dia.Cell[]): { [id: string]: dia.Cell };
2588
+
2587
2589
  export function isCalcExpression(value: any): boolean;
2588
2590
 
2589
2591
  export function evalCalcFormula(formula: string, rect: g.PlainRect): number;