@itwin/core-extension 4.0.0-dev.61 → 4.0.0-dev.66
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/index.d.ts +7 -0
- package/index.js +6 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export {
|
|
|
53
53
|
CoordSource,
|
|
54
54
|
CoordSystem,
|
|
55
55
|
CoordinateLockOverrides,
|
|
56
|
+
DecorateContext,
|
|
56
57
|
Decorations,
|
|
57
58
|
DisclosedTileTreeSet,
|
|
58
59
|
DisplayStyle2dState,
|
|
@@ -111,6 +112,7 @@ export {
|
|
|
111
112
|
NotificationHandler,
|
|
112
113
|
NotificationManager,
|
|
113
114
|
NotifyMessageDetails,
|
|
115
|
+
OffScreenViewport,
|
|
114
116
|
OrthographicViewState,
|
|
115
117
|
OutputMessageAlert,
|
|
116
118
|
OutputMessagePriority,
|
|
@@ -121,10 +123,12 @@ export {
|
|
|
121
123
|
Pixel,
|
|
122
124
|
PrimitiveTool,
|
|
123
125
|
RenderClipVolume,
|
|
126
|
+
RenderContext,
|
|
124
127
|
RenderGraphic,
|
|
125
128
|
RenderGraphicOwner,
|
|
126
129
|
RenderSystem,
|
|
127
130
|
Scene,
|
|
131
|
+
ScreenViewport,
|
|
128
132
|
SectionDrawingModelState,
|
|
129
133
|
SelectionMethod,
|
|
130
134
|
SelectionMode,
|
|
@@ -190,6 +194,7 @@ export {
|
|
|
190
194
|
ViewStatus,
|
|
191
195
|
ViewTool,
|
|
192
196
|
ViewingSpace,
|
|
197
|
+
Viewport,
|
|
193
198
|
canvasToImageBuffer,
|
|
194
199
|
canvasToResizedCanvasWithBars,
|
|
195
200
|
connectViewportFrusta,
|
|
@@ -206,6 +211,7 @@ export {
|
|
|
206
211
|
imageElementFromUrl,
|
|
207
212
|
queryTerrainElevationOffset,
|
|
208
213
|
readElementGraphics,
|
|
214
|
+
readGltfGraphics,
|
|
209
215
|
synchronizeViewportFrusta,
|
|
210
216
|
synchronizeViewportViews
|
|
211
217
|
} from "@itwin/core-frontend";
|
|
@@ -267,6 +273,7 @@ export type {
|
|
|
267
273
|
ParticleCollectionBuilderParams,
|
|
268
274
|
ParticleProps,
|
|
269
275
|
PickableGraphicOptions,
|
|
276
|
+
ReadGltfGraphicsArgs,
|
|
270
277
|
ScreenSpaceEffectBuilder,
|
|
271
278
|
ScreenSpaceEffectBuilderParams,
|
|
272
279
|
ScreenSpaceEffectContext,
|
package/index.js
CHANGED
|
@@ -42,6 +42,7 @@ export const {
|
|
|
42
42
|
CoordSource,
|
|
43
43
|
CoordSystem,
|
|
44
44
|
CoordinateLockOverrides,
|
|
45
|
+
DecorateContext,
|
|
45
46
|
Decorations,
|
|
46
47
|
DisclosedTileTreeSet,
|
|
47
48
|
DisplayStyle2dState,
|
|
@@ -100,6 +101,7 @@ export const {
|
|
|
100
101
|
NotificationHandler,
|
|
101
102
|
NotificationManager,
|
|
102
103
|
NotifyMessageDetails,
|
|
104
|
+
OffScreenViewport,
|
|
103
105
|
OrthographicViewState,
|
|
104
106
|
OutputMessageAlert,
|
|
105
107
|
OutputMessagePriority,
|
|
@@ -110,10 +112,12 @@ export const {
|
|
|
110
112
|
Pixel,
|
|
111
113
|
PrimitiveTool,
|
|
112
114
|
RenderClipVolume,
|
|
115
|
+
RenderContext,
|
|
113
116
|
RenderGraphic,
|
|
114
117
|
RenderGraphicOwner,
|
|
115
118
|
RenderSystem,
|
|
116
119
|
Scene,
|
|
120
|
+
ScreenViewport,
|
|
117
121
|
SectionDrawingModelState,
|
|
118
122
|
SelectionMethod,
|
|
119
123
|
SelectionMode,
|
|
@@ -179,6 +183,7 @@ export const {
|
|
|
179
183
|
ViewStatus,
|
|
180
184
|
ViewTool,
|
|
181
185
|
ViewingSpace,
|
|
186
|
+
Viewport,
|
|
182
187
|
canvasToImageBuffer,
|
|
183
188
|
canvasToResizedCanvasWithBars,
|
|
184
189
|
connectViewportFrusta,
|
|
@@ -195,6 +200,7 @@ export const {
|
|
|
195
200
|
imageElementFromUrl,
|
|
196
201
|
queryTerrainElevationOffset,
|
|
197
202
|
readElementGraphics,
|
|
203
|
+
readGltfGraphics,
|
|
198
204
|
synchronizeViewportFrusta,
|
|
199
205
|
synchronizeViewportViews,
|
|
200
206
|
// @itwin/core-common:
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/core-extension",
|
|
3
|
-
"version": "4.0.0-dev.
|
|
3
|
+
"version": "4.0.0-dev.66",
|
|
4
4
|
"description": "iTwin.js Extension API",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/iTwin/itwinjs-core
|
|
9
|
+
"url": "https://github.com/iTwin/itwinjs-core.git",
|
|
10
|
+
"directory": "core/extension"
|
|
10
11
|
},
|
|
11
12
|
"keywords": [
|
|
12
13
|
"Bentley",
|
|
@@ -20,11 +21,11 @@
|
|
|
20
21
|
"url": "http://www.bentley.com"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@itwin/core-frontend": "4.0.0-dev.
|
|
24
|
-
"@itwin/core-common": "4.0.0-dev.
|
|
24
|
+
"@itwin/core-frontend": "4.0.0-dev.66",
|
|
25
|
+
"@itwin/core-common": "4.0.0-dev.66"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
|
-
"@itwin/build-tools": "4.0.0-dev.
|
|
28
|
+
"@itwin/build-tools": "4.0.0-dev.66",
|
|
28
29
|
"@itwin/eslint-plugin": "^4.0.0-dev.32",
|
|
29
30
|
"eslint": "^7.11.0",
|
|
30
31
|
"rimraf": "^3.0.2"
|
|
@@ -38,7 +39,6 @@
|
|
|
38
39
|
"scripts": {
|
|
39
40
|
"compile": "",
|
|
40
41
|
"build": "",
|
|
41
|
-
"build:ci": "",
|
|
42
42
|
"clean": "rimraf .rush/temp/package-deps*.json",
|
|
43
43
|
"cover": "",
|
|
44
44
|
"docs": "",
|