@syncfusion/ej2-react-diagrams 31.2.2 → 31.2.5

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.
package/diConfig.json CHANGED
@@ -3416,6 +3416,7 @@
3416
3416
  "templateProperties": [
3417
3417
  "annotationTemplate",
3418
3418
  "nodeTemplate",
3419
+ "fixedUserHandleTemplate",
3419
3420
  "userHandleTemplate"
3420
3421
  ],
3421
3422
  "blazorTemplates": [
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-diagrams.min.js
3
- * version : 31.2.2
3
+ * version : 31.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-diagrams.umd.min.js
3
- * version : 31.2.2
3
+ * version : 31.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-react-diagrams",
3
- "version": "31.2.2",
3
+ "version": "31.2.5",
4
4
  "description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for React",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -18,9 +18,9 @@
18
18
  "es2015": "dist/es6/ej2-react-diagrams.es2015.js",
19
19
  "readme": "ReadMe.md",
20
20
  "dependencies": {
21
- "@syncfusion/ej2-base": "~31.2.2",
21
+ "@syncfusion/ej2-base": "~31.2.5",
22
22
  "@syncfusion/ej2-react-base": "~31.2.2",
23
- "@syncfusion/ej2-diagrams": "31.2.2"
23
+ "@syncfusion/ej2-diagrams": "31.2.5"
24
24
  },
25
25
  "devDependencies": {},
26
26
  "sideEffects": true,
@@ -4,6 +4,7 @@ import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
4
4
  export interface DiagramTypecast {
5
5
  annotationTemplate?: string | Function | any;
6
6
  nodeTemplate?: string | Function | any;
7
+ fixedUserHandleTemplate?: string | Function | any;
7
8
  userHandleTemplate?: string | Function | any;
8
9
  }
9
10
  /**