@vertigis/viewer-spec 59.4.0 → 59.6.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.
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/messaging/common.d.ts +3 -2
- package/messaging/registry/printing.d.ts +744 -7
- package/messaging/registry/printing.js +1 -1
- package/messaging/schema/common-action.schema.json +38 -28
- package/messaging/schema/common-event.schema.json +4 -0
- package/messaging/schema/mobile-action.schema.json +38 -28
- package/messaging/schema/mobile-event.schema.json +4 -0
- package/messaging/schema/web-action.schema.json +80 -28
- package/messaging/schema/web-event.schema.json +1200 -2
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/messaging/common.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import type Viewpoint from "@arcgis/core/Viewpoint";
|
|
|
3
3
|
import type Layer from "@arcgis/core/layers/Layer";
|
|
4
4
|
import type LabelClass from "@arcgis/core/layers/support/LabelClass";
|
|
5
5
|
import type EsriFeatureSet from "@arcgis/core/rest/support/FeatureSet";
|
|
6
|
+
import type CIMSymbol from "@arcgis/core/symbols/CIMSymbol";
|
|
6
7
|
import type LineSymbol3D from "@arcgis/core/symbols/LineSymbol3D";
|
|
7
8
|
import type PictureFillSymbol from "@arcgis/core/symbols/PictureFillSymbol";
|
|
8
9
|
import type PictureMarkerSymbol from "@arcgis/core/symbols/PictureMarkerSymbol";
|
|
@@ -30,7 +31,7 @@ import type { Bookmark, BookmarkProperties } from "@vertigis/arcgis-extensions/m
|
|
|
30
31
|
import type { LayerExtension, LayerReference as LayerReferenceObject } from "@vertigis/arcgis-extensions/mapping/LayerExtension";
|
|
31
32
|
import type { MapExtension } from "@vertigis/arcgis-extensions/mapping/MapExtension";
|
|
32
33
|
import type { SublayerExtension } from "@vertigis/arcgis-extensions/mapping/SublayerExtension";
|
|
33
|
-
import type { SublayerLike } from "@vertigis/arcgis-extensions/support/esri";
|
|
34
|
+
import type { CIMSymbolReference as CIMSymbolReferenceJson, SublayerLike } from "@vertigis/arcgis-extensions/support/esri";
|
|
34
35
|
import type { ItemRef } from "../app-config/common/ItemRef";
|
|
35
36
|
import type { TimeSpan } from "./DotNetTypes";
|
|
36
37
|
/**
|
|
@@ -270,7 +271,7 @@ export interface HasViewPoint {
|
|
|
270
271
|
/**
|
|
271
272
|
* Symbols supported for drawing.
|
|
272
273
|
*/
|
|
273
|
-
export type SymbolLike = SimpleMarkerSymbol | SimpleMarkerSymbolJson | PictureMarkerSymbol | PictureMarkerSymbolJson | SimpleLineSymbol | SimpleLineSymbolJson | SimpleFillSymbol | SimpleFillSymbolJson | PictureFillSymbol | PictureFillSymbolJson | PointSymbol3D | PointSymbol3DJson | LineSymbol3D | LineSymbol3DJson | PolygonSymbol3D | PolygonSymbol3DJson | TextSymbol | TextSymbolJson;
|
|
274
|
+
export type SymbolLike = SimpleMarkerSymbol | SimpleMarkerSymbolJson | PictureMarkerSymbol | PictureMarkerSymbolJson | SimpleLineSymbol | SimpleLineSymbolJson | SimpleFillSymbol | SimpleFillSymbolJson | PictureFillSymbol | PictureFillSymbolJson | PointSymbol3D | PointSymbol3DJson | LineSymbol3D | LineSymbol3DJson | PolygonSymbol3D | PolygonSymbol3DJson | TextSymbol | TextSymbolJson | CIMSymbol | CIMSymbolReferenceJson;
|
|
274
275
|
/**
|
|
275
276
|
* An object that has a `symbol` property.
|
|
276
277
|
*/
|