@itwin/editor-common 4.0.0-dev.7 → 4.0.0-dev.72
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/CHANGELOG.md +41 -1
- package/lib/cjs/EditorBuiltInIpc.d.ts +612 -612
- package/lib/cjs/EditorBuiltInIpc.js +101 -101
- package/lib/cjs/EditorIpc.d.ts +42 -42
- package/lib/cjs/EditorIpc.js +15 -15
- package/lib/cjs/editor-common.d.ts +2 -2
- package/lib/cjs/editor-common.js +22 -18
- package/lib/cjs/editor-common.js.map +1 -1
- package/lib/esm/EditorBuiltInIpc.d.ts +612 -612
- package/lib/esm/EditorBuiltInIpc.js +98 -98
- package/lib/esm/EditorIpc.d.ts +42 -42
- package/lib/esm/EditorIpc.js +12 -12
- package/lib/esm/editor-common.d.ts +2 -2
- package/lib/esm/editor-common.js +6 -6
- package/package.json +15 -15
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
|
6
|
-
/** @packageDocumentation
|
|
7
|
-
* @module Editing
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.EmbossDirectionMode = exports.ProfileClosure = exports.CutDepthMode = exports.CutDirectionMode = exports.ChamferMode = exports.BooleanMode = exports.SubEntityType = exports.BRepEntityType = exports.editorBuiltInCmdIds = void 0;
|
|
11
|
-
/** @alpha */
|
|
12
|
-
exports.editorBuiltInCmdIds = {
|
|
13
|
-
cmdBasicManipulation: "basicManipulation",
|
|
14
|
-
cmdSolidModeling: "solidModeling",
|
|
15
|
-
};
|
|
16
|
-
/** @alpha */
|
|
17
|
-
var BRepEntityType;
|
|
18
|
-
(function (BRepEntityType) {
|
|
19
|
-
/** Body consisting of at least one solid region */
|
|
20
|
-
BRepEntityType[BRepEntityType["Solid"] = 0] = "Solid";
|
|
21
|
-
/** Body consisting of connected sets of faces having edges that are shared by a maximum of two faces */
|
|
22
|
-
BRepEntityType[BRepEntityType["Sheet"] = 1] = "Sheet";
|
|
23
|
-
/** Body consisting of connected sets of edges having vertices that are shared by a maximum of two edges */
|
|
24
|
-
BRepEntityType[BRepEntityType["Wire"] = 2] = "Wire";
|
|
25
|
-
/** Body can not be used to represent this geometric entry */
|
|
26
|
-
BRepEntityType[BRepEntityType["Invalid"] = 3] = "Invalid";
|
|
27
|
-
})(BRepEntityType = exports.BRepEntityType || (exports.BRepEntityType = {}));
|
|
28
|
-
/** @alpha */
|
|
29
|
-
var SubEntityType;
|
|
30
|
-
(function (SubEntityType) {
|
|
31
|
-
/** A single bounded part of a surface */
|
|
32
|
-
SubEntityType[SubEntityType["Face"] = 0] = "Face";
|
|
33
|
-
/** A single bounded part of a curve */
|
|
34
|
-
SubEntityType[SubEntityType["Edge"] = 1] = "Edge";
|
|
35
|
-
/** A single point */
|
|
36
|
-
SubEntityType[SubEntityType["Vertex"] = 2] = "Vertex";
|
|
37
|
-
})(SubEntityType = exports.SubEntityType || (exports.SubEntityType = {}));
|
|
38
|
-
/** @alpha */
|
|
39
|
-
var BooleanMode;
|
|
40
|
-
(function (BooleanMode) {
|
|
41
|
-
/** Unite target with one or more tool entities */
|
|
42
|
-
BooleanMode[BooleanMode["Unite"] = 0] = "Unite";
|
|
43
|
-
/** Subtract one or more tool entities from target entity */
|
|
44
|
-
BooleanMode[BooleanMode["Subtract"] = 1] = "Subtract";
|
|
45
|
-
/** Intersect target with one or more tool entities */
|
|
46
|
-
BooleanMode[BooleanMode["Intersect"] = 2] = "Intersect";
|
|
47
|
-
})(BooleanMode = exports.BooleanMode || (exports.BooleanMode = {}));
|
|
48
|
-
/** @alpha */
|
|
49
|
-
var ChamferMode;
|
|
50
|
-
(function (ChamferMode) {
|
|
51
|
-
/** Chamfer ranges */
|
|
52
|
-
ChamferMode[ChamferMode["Ranges"] = 0] = "Ranges";
|
|
53
|
-
/** Chamfer length. Specify lengths using values1, values2 is unused. */
|
|
54
|
-
ChamferMode[ChamferMode["Length"] = 1] = "Length";
|
|
55
|
-
/** Right/Left distances. Equal distance if values2 is undefined. */
|
|
56
|
-
ChamferMode[ChamferMode["Distances"] = 2] = "Distances";
|
|
57
|
-
/** Right distance and angle (radians) */
|
|
58
|
-
ChamferMode[ChamferMode["DistanceAngle"] = 3] = "DistanceAngle";
|
|
59
|
-
/** Angle (radians) and left distance */
|
|
60
|
-
ChamferMode[ChamferMode["AngleDistance"] = 4] = "AngleDistance";
|
|
61
|
-
})(ChamferMode = exports.ChamferMode || (exports.ChamferMode = {}));
|
|
62
|
-
/** @alpha */
|
|
63
|
-
var CutDirectionMode;
|
|
64
|
-
(function (CutDirectionMode) {
|
|
65
|
-
/** Remove material in direction of surface normal */
|
|
66
|
-
CutDirectionMode[CutDirectionMode["Forward"] = 0] = "Forward";
|
|
67
|
-
/** Remove material in opposite direction of surface normal */
|
|
68
|
-
CutDirectionMode[CutDirectionMode["Backward"] = 1] = "Backward";
|
|
69
|
-
/** Remove material in both directions */
|
|
70
|
-
CutDirectionMode[CutDirectionMode["Both"] = 2] = "Both";
|
|
71
|
-
/** Choose forward or backward from tool and target hint points */
|
|
72
|
-
CutDirectionMode[CutDirectionMode["Auto"] = 3] = "Auto";
|
|
73
|
-
})(CutDirectionMode = exports.CutDirectionMode || (exports.CutDirectionMode = {}));
|
|
74
|
-
/** @alpha */
|
|
75
|
-
var CutDepthMode;
|
|
76
|
-
(function (CutDepthMode) {
|
|
77
|
-
/** Cut extends through entire solid */
|
|
78
|
-
CutDepthMode[CutDepthMode["All"] = 0] = "All";
|
|
79
|
-
/** Cut extends to a specified depth */
|
|
80
|
-
CutDepthMode[CutDepthMode["Blind"] = 1] = "Blind";
|
|
81
|
-
})(CutDepthMode = exports.CutDepthMode || (exports.CutDepthMode = {}));
|
|
82
|
-
/** @alpha */
|
|
83
|
-
var ProfileClosure;
|
|
84
|
-
(function (ProfileClosure) {
|
|
85
|
-
/** Close by extending end tangents to point of intersection or outside range of target */
|
|
86
|
-
ProfileClosure[ProfileClosure["Natural"] = 0] = "Natural";
|
|
87
|
-
/** Whether to reverse the natural closure direction */
|
|
88
|
-
ProfileClosure[ProfileClosure["Reverse"] = 1] = "Reverse";
|
|
89
|
-
/** Choose natural or reverse closure direction based on tool and target hint points */
|
|
90
|
-
ProfileClosure[ProfileClosure["Auto"] = 2] = "Auto";
|
|
91
|
-
})(ProfileClosure = exports.ProfileClosure || (exports.ProfileClosure = {}));
|
|
92
|
-
/** @alpha */
|
|
93
|
-
var EmbossDirectionMode;
|
|
94
|
-
(function (EmbossDirectionMode) {
|
|
95
|
-
/** Material is added in the direction of surface normal when creating a pad. */
|
|
96
|
-
EmbossDirectionMode[EmbossDirectionMode["Forward"] = 0] = "Forward";
|
|
97
|
-
/** Material is added in the opposite direction of surface normal when creating a pad. */
|
|
98
|
-
EmbossDirectionMode[EmbossDirectionMode["Backward"] = 1] = "Backward";
|
|
99
|
-
/** Choose forward or backward from target hint point */
|
|
100
|
-
EmbossDirectionMode[EmbossDirectionMode["Auto"] = 2] = "Auto";
|
|
101
|
-
})(EmbossDirectionMode = exports.EmbossDirectionMode || (exports.EmbossDirectionMode = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
|
6
|
+
/** @packageDocumentation
|
|
7
|
+
* @module Editing
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.EmbossDirectionMode = exports.ProfileClosure = exports.CutDepthMode = exports.CutDirectionMode = exports.ChamferMode = exports.BooleanMode = exports.SubEntityType = exports.BRepEntityType = exports.editorBuiltInCmdIds = void 0;
|
|
11
|
+
/** @alpha */
|
|
12
|
+
exports.editorBuiltInCmdIds = {
|
|
13
|
+
cmdBasicManipulation: "basicManipulation",
|
|
14
|
+
cmdSolidModeling: "solidModeling",
|
|
15
|
+
};
|
|
16
|
+
/** @alpha */
|
|
17
|
+
var BRepEntityType;
|
|
18
|
+
(function (BRepEntityType) {
|
|
19
|
+
/** Body consisting of at least one solid region */
|
|
20
|
+
BRepEntityType[BRepEntityType["Solid"] = 0] = "Solid";
|
|
21
|
+
/** Body consisting of connected sets of faces having edges that are shared by a maximum of two faces */
|
|
22
|
+
BRepEntityType[BRepEntityType["Sheet"] = 1] = "Sheet";
|
|
23
|
+
/** Body consisting of connected sets of edges having vertices that are shared by a maximum of two edges */
|
|
24
|
+
BRepEntityType[BRepEntityType["Wire"] = 2] = "Wire";
|
|
25
|
+
/** Body can not be used to represent this geometric entry */
|
|
26
|
+
BRepEntityType[BRepEntityType["Invalid"] = 3] = "Invalid";
|
|
27
|
+
})(BRepEntityType = exports.BRepEntityType || (exports.BRepEntityType = {}));
|
|
28
|
+
/** @alpha */
|
|
29
|
+
var SubEntityType;
|
|
30
|
+
(function (SubEntityType) {
|
|
31
|
+
/** A single bounded part of a surface */
|
|
32
|
+
SubEntityType[SubEntityType["Face"] = 0] = "Face";
|
|
33
|
+
/** A single bounded part of a curve */
|
|
34
|
+
SubEntityType[SubEntityType["Edge"] = 1] = "Edge";
|
|
35
|
+
/** A single point */
|
|
36
|
+
SubEntityType[SubEntityType["Vertex"] = 2] = "Vertex";
|
|
37
|
+
})(SubEntityType = exports.SubEntityType || (exports.SubEntityType = {}));
|
|
38
|
+
/** @alpha */
|
|
39
|
+
var BooleanMode;
|
|
40
|
+
(function (BooleanMode) {
|
|
41
|
+
/** Unite target with one or more tool entities */
|
|
42
|
+
BooleanMode[BooleanMode["Unite"] = 0] = "Unite";
|
|
43
|
+
/** Subtract one or more tool entities from target entity */
|
|
44
|
+
BooleanMode[BooleanMode["Subtract"] = 1] = "Subtract";
|
|
45
|
+
/** Intersect target with one or more tool entities */
|
|
46
|
+
BooleanMode[BooleanMode["Intersect"] = 2] = "Intersect";
|
|
47
|
+
})(BooleanMode = exports.BooleanMode || (exports.BooleanMode = {}));
|
|
48
|
+
/** @alpha */
|
|
49
|
+
var ChamferMode;
|
|
50
|
+
(function (ChamferMode) {
|
|
51
|
+
/** Chamfer ranges */
|
|
52
|
+
ChamferMode[ChamferMode["Ranges"] = 0] = "Ranges";
|
|
53
|
+
/** Chamfer length. Specify lengths using values1, values2 is unused. */
|
|
54
|
+
ChamferMode[ChamferMode["Length"] = 1] = "Length";
|
|
55
|
+
/** Right/Left distances. Equal distance if values2 is undefined. */
|
|
56
|
+
ChamferMode[ChamferMode["Distances"] = 2] = "Distances";
|
|
57
|
+
/** Right distance and angle (radians) */
|
|
58
|
+
ChamferMode[ChamferMode["DistanceAngle"] = 3] = "DistanceAngle";
|
|
59
|
+
/** Angle (radians) and left distance */
|
|
60
|
+
ChamferMode[ChamferMode["AngleDistance"] = 4] = "AngleDistance";
|
|
61
|
+
})(ChamferMode = exports.ChamferMode || (exports.ChamferMode = {}));
|
|
62
|
+
/** @alpha */
|
|
63
|
+
var CutDirectionMode;
|
|
64
|
+
(function (CutDirectionMode) {
|
|
65
|
+
/** Remove material in direction of surface normal */
|
|
66
|
+
CutDirectionMode[CutDirectionMode["Forward"] = 0] = "Forward";
|
|
67
|
+
/** Remove material in opposite direction of surface normal */
|
|
68
|
+
CutDirectionMode[CutDirectionMode["Backward"] = 1] = "Backward";
|
|
69
|
+
/** Remove material in both directions */
|
|
70
|
+
CutDirectionMode[CutDirectionMode["Both"] = 2] = "Both";
|
|
71
|
+
/** Choose forward or backward from tool and target hint points */
|
|
72
|
+
CutDirectionMode[CutDirectionMode["Auto"] = 3] = "Auto";
|
|
73
|
+
})(CutDirectionMode = exports.CutDirectionMode || (exports.CutDirectionMode = {}));
|
|
74
|
+
/** @alpha */
|
|
75
|
+
var CutDepthMode;
|
|
76
|
+
(function (CutDepthMode) {
|
|
77
|
+
/** Cut extends through entire solid */
|
|
78
|
+
CutDepthMode[CutDepthMode["All"] = 0] = "All";
|
|
79
|
+
/** Cut extends to a specified depth */
|
|
80
|
+
CutDepthMode[CutDepthMode["Blind"] = 1] = "Blind";
|
|
81
|
+
})(CutDepthMode = exports.CutDepthMode || (exports.CutDepthMode = {}));
|
|
82
|
+
/** @alpha */
|
|
83
|
+
var ProfileClosure;
|
|
84
|
+
(function (ProfileClosure) {
|
|
85
|
+
/** Close by extending end tangents to point of intersection or outside range of target */
|
|
86
|
+
ProfileClosure[ProfileClosure["Natural"] = 0] = "Natural";
|
|
87
|
+
/** Whether to reverse the natural closure direction */
|
|
88
|
+
ProfileClosure[ProfileClosure["Reverse"] = 1] = "Reverse";
|
|
89
|
+
/** Choose natural or reverse closure direction based on tool and target hint points */
|
|
90
|
+
ProfileClosure[ProfileClosure["Auto"] = 2] = "Auto";
|
|
91
|
+
})(ProfileClosure = exports.ProfileClosure || (exports.ProfileClosure = {}));
|
|
92
|
+
/** @alpha */
|
|
93
|
+
var EmbossDirectionMode;
|
|
94
|
+
(function (EmbossDirectionMode) {
|
|
95
|
+
/** Material is added in the direction of surface normal when creating a pad. */
|
|
96
|
+
EmbossDirectionMode[EmbossDirectionMode["Forward"] = 0] = "Forward";
|
|
97
|
+
/** Material is added in the opposite direction of surface normal when creating a pad. */
|
|
98
|
+
EmbossDirectionMode[EmbossDirectionMode["Backward"] = 1] = "Backward";
|
|
99
|
+
/** Choose forward or backward from target hint point */
|
|
100
|
+
EmbossDirectionMode[EmbossDirectionMode["Auto"] = 2] = "Auto";
|
|
101
|
+
})(EmbossDirectionMode = exports.EmbossDirectionMode || (exports.EmbossDirectionMode = {}));
|
|
102
102
|
//# sourceMappingURL=EditorBuiltInIpc.js.map
|
package/lib/cjs/EditorIpc.d.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/** @packageDocumentation
|
|
2
|
-
* @module Editing
|
|
3
|
-
*/
|
|
4
|
-
/** @internal */
|
|
5
|
-
export declare const editorIpcStrings: {
|
|
6
|
-
readonly channel: "editor";
|
|
7
|
-
readonly commandBusy: "EditCommandBusy";
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* Interface called from frontend `EditTool`s to start and drive the active `EditCommand` on the backend.
|
|
11
|
-
* @beta
|
|
12
|
-
*/
|
|
13
|
-
export interface EditorIpc {
|
|
14
|
-
/** Start a new instance of an `EditCommand` on the backend, and then call its `onStart` method.
|
|
15
|
-
* @param commandId the Id of a registered `EditCommand` on the backend. If commandId === "", the current command is
|
|
16
|
-
* requested to finish but no new EditCommand is started.
|
|
17
|
-
* @param iModelKey the key that identifies the iModel that the EditCommand modifies.
|
|
18
|
-
* @param args arguments passed to the constructor of the new `EditCommand`
|
|
19
|
-
* @return the value returned by the new `EditCommand`'s `onStart` method.
|
|
20
|
-
* @note The current `EditCommand` (if one is active) is asked to finish and clean up its operation via `EditCommand.requestFinish`
|
|
21
|
-
* before the new `EditCommand` is constructed. If it cannot finish immediately, it may return a string that identifies
|
|
22
|
-
* the work it is performing for `EditTools.busyHandler` to retry and/or display.
|
|
23
|
-
*/
|
|
24
|
-
startCommand: (commandId: string, iModelKey: string, ...args: any[]) => Promise<any>;
|
|
25
|
-
/** Call a method on the currently active `EditCommand` and return its value.
|
|
26
|
-
* @param name the name of the method to invoke.
|
|
27
|
-
* @param args arguments passed to the method.
|
|
28
|
-
* @note throws an exception if there is no active `EditCommand`, or if the active EditCommand does not implement the supplied method. */
|
|
29
|
-
callMethod: (name: string, ...args: any[]) => Promise<any>;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Interface implemented by all backend `EditCommands`.
|
|
33
|
-
* @beta
|
|
34
|
-
*/
|
|
35
|
-
export interface EditCommandIpc {
|
|
36
|
-
/** Identify the current `EditCommand`'s name and version, optionally returning additional properties that describe its state. */
|
|
37
|
-
ping: () => Promise<{
|
|
38
|
-
commandId: string;
|
|
39
|
-
version: string;
|
|
40
|
-
[propName: string]: any;
|
|
41
|
-
}>;
|
|
42
|
-
}
|
|
1
|
+
/** @packageDocumentation
|
|
2
|
+
* @module Editing
|
|
3
|
+
*/
|
|
4
|
+
/** @internal */
|
|
5
|
+
export declare const editorIpcStrings: {
|
|
6
|
+
readonly channel: "editor";
|
|
7
|
+
readonly commandBusy: "EditCommandBusy";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Interface called from frontend `EditTool`s to start and drive the active `EditCommand` on the backend.
|
|
11
|
+
* @beta
|
|
12
|
+
*/
|
|
13
|
+
export interface EditorIpc {
|
|
14
|
+
/** Start a new instance of an `EditCommand` on the backend, and then call its `onStart` method.
|
|
15
|
+
* @param commandId the Id of a registered `EditCommand` on the backend. If commandId === "", the current command is
|
|
16
|
+
* requested to finish but no new EditCommand is started.
|
|
17
|
+
* @param iModelKey the key that identifies the iModel that the EditCommand modifies.
|
|
18
|
+
* @param args arguments passed to the constructor of the new `EditCommand`
|
|
19
|
+
* @return the value returned by the new `EditCommand`'s `onStart` method.
|
|
20
|
+
* @note The current `EditCommand` (if one is active) is asked to finish and clean up its operation via `EditCommand.requestFinish`
|
|
21
|
+
* before the new `EditCommand` is constructed. If it cannot finish immediately, it may return a string that identifies
|
|
22
|
+
* the work it is performing for `EditTools.busyHandler` to retry and/or display.
|
|
23
|
+
*/
|
|
24
|
+
startCommand: (commandId: string, iModelKey: string, ...args: any[]) => Promise<any>;
|
|
25
|
+
/** Call a method on the currently active `EditCommand` and return its value.
|
|
26
|
+
* @param name the name of the method to invoke.
|
|
27
|
+
* @param args arguments passed to the method.
|
|
28
|
+
* @note throws an exception if there is no active `EditCommand`, or if the active EditCommand does not implement the supplied method. */
|
|
29
|
+
callMethod: (name: string, ...args: any[]) => Promise<any>;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Interface implemented by all backend `EditCommands`.
|
|
33
|
+
* @beta
|
|
34
|
+
*/
|
|
35
|
+
export interface EditCommandIpc {
|
|
36
|
+
/** Identify the current `EditCommand`'s name and version, optionally returning additional properties that describe its state. */
|
|
37
|
+
ping: () => Promise<{
|
|
38
|
+
commandId: string;
|
|
39
|
+
version: string;
|
|
40
|
+
[propName: string]: any;
|
|
41
|
+
}>;
|
|
42
|
+
}
|
|
43
43
|
//# sourceMappingURL=EditorIpc.d.ts.map
|
package/lib/cjs/EditorIpc.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
|
6
|
-
/** @packageDocumentation
|
|
7
|
-
* @module Editing
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.editorIpcStrings = void 0;
|
|
11
|
-
/** @internal */
|
|
12
|
-
exports.editorIpcStrings = {
|
|
13
|
-
channel: "editor",
|
|
14
|
-
commandBusy: "EditCommandBusy",
|
|
15
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
|
6
|
+
/** @packageDocumentation
|
|
7
|
+
* @module Editing
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.editorIpcStrings = void 0;
|
|
11
|
+
/** @internal */
|
|
12
|
+
exports.editorIpcStrings = {
|
|
13
|
+
channel: "editor",
|
|
14
|
+
commandBusy: "EditCommandBusy",
|
|
15
|
+
};
|
|
16
16
|
//# sourceMappingURL=EditorIpc.js.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./EditorIpc";
|
|
2
|
-
export * from "./EditorBuiltInIpc";
|
|
1
|
+
export * from "./EditorIpc";
|
|
2
|
+
export * from "./EditorBuiltInIpc";
|
|
3
3
|
//# sourceMappingURL=editor-common.d.ts.map
|
package/lib/cjs/editor-common.js
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/*---------------------------------------------------------------------------------------------
|
|
18
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
19
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
20
|
+
*--------------------------------------------------------------------------------------------*/
|
|
21
|
+
__exportStar(require("./EditorIpc"), exports);
|
|
22
|
+
__exportStar(require("./EditorBuiltInIpc"), exports);
|
|
19
23
|
//# sourceMappingURL=editor-common.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor-common.js","sourceRoot":"","sources":["../../src/editor-common.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"editor-common.js","sourceRoot":"","sources":["../../src/editor-common.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;+FAG+F;AAC/F,8CAA4B;AAC5B,qDAAmC","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\nexport * from \"./EditorIpc\";\r\nexport * from \"./EditorBuiltInIpc\";\r\n"]}
|