@vertigis/viewer-spec 58.22.0 → 58.23.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/common/HighlightModelProperties.d.ts +3 -3
- 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 +4 -4
- package/messaging/registry/drawing.d.ts +2 -2
- package/messaging/registry/geocode.d.ts +2 -2
- package/messaging/registry/geolocation.d.ts +2 -2
- package/messaging/registry/geometry.d.ts +7 -7
- package/messaging/registry/location-marker.d.ts +2 -2
- package/messaging/registry/map.d.ts +7 -7
- package/messaging/registry/offline.d.ts +2 -2
- package/messaging/registry/results.d.ts +6 -6
- package/messaging/registry/sketching.d.ts +15 -16
- package/messaging/registry/tasks.d.ts +3 -3
- package/messaging/schema/common-action.schema.json +926 -587
- package/messaging/schema/common-event.schema.json +551 -507
- package/messaging/schema/mobile-action.schema.json +936 -606
- package/messaging/schema/mobile-event.schema.json +618 -520
- package/messaging/schema/web-action.schema.json +1347 -787
- package/messaging/schema/web-event.schema.json +651 -523
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type Color from "@arcgis/core/Color";
|
|
2
|
-
import type
|
|
2
|
+
import type { SymbolUnion } from "@arcgis/core/unionTypes.js";
|
|
3
3
|
import type { ColorJson, SymbolJson, TextSymbolJson } from "@vertigis/arcgis-extensions/json/SymbolJson.js";
|
|
4
4
|
import type { ServiceModelProperties } from "./ServiceModelProperties.js";
|
|
5
5
|
/**
|
|
@@ -26,7 +26,7 @@ export interface HighlightModelProperties extends ServiceModelProperties {
|
|
|
26
26
|
* If this property is undefined, no markers will be rendered for in-scale
|
|
27
27
|
* highlighting.
|
|
28
28
|
*/
|
|
29
|
-
highlightMarkerSymbol?:
|
|
29
|
+
highlightMarkerSymbol?: SymbolUnion | SymbolJson;
|
|
30
30
|
/**
|
|
31
31
|
* The symbol properties used for rendering highlight text on the map.
|
|
32
32
|
*/
|
|
@@ -42,7 +42,7 @@ export interface HighlightModelProperties extends ServiceModelProperties {
|
|
|
42
42
|
* this property is undefined, no markers will be rendered for in-scale
|
|
43
43
|
* focusing.
|
|
44
44
|
*/
|
|
45
|
-
focusMarkerSymbol?:
|
|
45
|
+
focusMarkerSymbol?: SymbolUnion | SymbolJson;
|
|
46
46
|
/**
|
|
47
47
|
* The symbol properties used for rendering focus text on the map.
|
|
48
48
|
*/
|