Skip to content

Commit a946010

Browse files
author
Plamen Peshev
committed
auto
1 parent acd576d commit a946010

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

OrgChart.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

orgchart.d.mts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ declare class OrgChart {
9999
* @category Event Listeners
100100
* @param listener
101101
*/
102-
onRemoveNode(listener: (this: OrgChart, args: OrgChart.removeNodeEvemtArgs) => void): OrgChart;
102+
onRemoveNode(listener: (this: OrgChart, args: OrgChart.removeNodeEventArgs) => void): OrgChart;
103103

104104
/**
105105
* Occurs when a node has been added by addNode method.
@@ -112,7 +112,7 @@ declare class OrgChart {
112112
* @category Event Listeners
113113
* @param listener
114114
*/
115-
onAddNode(listener: (this: OrgChart, args: OrgChart.addNodeEvemtArgs) => void): OrgChart;
115+
onAddNode(listener: (this: OrgChart, args: OrgChart.addNodeEventArgs) => void): OrgChart;
116116
/**
117117
* The onDrag event occurs when a node is dragged. *enableDragDrop* option has to be turned on.
118118
* ```typescript
@@ -2133,7 +2133,6 @@ declare class OrgChart {
21332133

21342134

21352135
declare namespace OrgChart {
2136-
21372136
interface updateNodeEventArgs{
21382137
/**
21392138
* old node data
@@ -2145,7 +2144,7 @@ declare namespace OrgChart {
21452144
newData: OrgChart.nodeData
21462145
}
21472146

2148-
interface removeNodeEvemtArgs{
2147+
interface removeNodeEventArgs{
21492148
/**
21502149
* node id
21512150
*/
@@ -2159,7 +2158,7 @@ declare namespace OrgChart {
21592158
}
21602159
}
21612160

2162-
interface addNodeEvemtArgs{
2161+
interface addNodeEventArgs{
21632162
/**
21642163
* new added data node
21652164
*/

orgchart.d.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ declare class OrgChart {
9999
* @category Event Listeners
100100
* @param listener
101101
*/
102-
onRemoveNode(listener: (this: OrgChart, args: OrgChart.removeNodeEvemtArgs) => void): OrgChart;
102+
onRemoveNode(listener: (this: OrgChart, args: OrgChart.removeNodeEventArgs) => void): OrgChart;
103103

104104
/**
105105
* Occurs when a node has been added by addNode method.
@@ -112,7 +112,7 @@ declare class OrgChart {
112112
* @category Event Listeners
113113
* @param listener
114114
*/
115-
onAddNode(listener: (this: OrgChart, args: OrgChart.addNodeEvemtArgs) => void): OrgChart;
115+
onAddNode(listener: (this: OrgChart, args: OrgChart.addNodeEventArgs) => void): OrgChart;
116116
/**
117117
* The onDrag event occurs when a node is dragged. *enableDragDrop* option has to be turned on.
118118
* ```typescript
@@ -2133,7 +2133,6 @@ declare class OrgChart {
21332133

21342134

21352135
declare namespace OrgChart {
2136-
21372136
interface updateNodeEventArgs{
21382137
/**
21392138
* old node data
@@ -2145,7 +2144,7 @@ declare namespace OrgChart {
21452144
newData: OrgChart.nodeData
21462145
}
21472146

2148-
interface removeNodeEvemtArgs{
2147+
interface removeNodeEventArgs{
21492148
/**
21502149
* node id
21512150
*/
@@ -2159,7 +2158,7 @@ declare namespace OrgChart {
21592158
}
21602159
}
21612160

2162-
interface addNodeEvemtArgs{
2161+
interface addNodeEventArgs{
21632162
/**
21642163
* new added data node
21652164
*/

orgchart.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ e.prototype.init = function(t, n) {
847847
n._menuClickHandler.apply(n, [this, e]);
848848
});
849849
}
850-
}, e === void 0 && (e = {}), e.VERSION = "9.1.79", e.orientation = {}, e.orientation.top = 0, e.orientation.bottom = 1, e.orientation.right = 2, e.orientation.left = 3, e.orientation.top_left = 4, e.orientation.bottom_left = 5, e.orientation.right_top = 6, e.orientation.left_top = 7, e.anchor = {
850+
}, e === void 0 && (e = {}), e.VERSION = "9.1.80", e.orientation = {}, e.orientation.top = 0, e.orientation.bottom = 1, e.orientation.right = 2, e.orientation.left = 3, e.orientation.top_left = 4, e.orientation.bottom_left = 5, e.orientation.right_top = 6, e.orientation.left_top = 7, e.anchor = {
851851
top_right: "top_right",
852852
right_top: "right_top",
853853
bottom_right: "bottom_right",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
"url": "git+https://github.com/BALKANGraph/OrgChartJS.git"
5959
},
6060
"dependencies": {},
61-
"version": "9.1.79"
61+
"version": "9.1.80"
6262
}

0 commit comments

Comments
 (0)