@vertigis/viewer-spec 51.10.0 → 51.11.1
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/analytics/CommonAction.d.ts +1 -1
- package/analytics/MobileAction.d.ts +1 -1
- package/analytics/WebAction.d.ts +1 -1
- package/app-config/common/BrandingModelProperties.d.ts +1 -1
- package/app-config/common/BrandingThemeProperties.d.ts +1 -1
- package/app-config/common/CoordinateFormat.d.ts +1 -1
- package/app-config/common/ItemRef.d.ts +1 -1
- package/app-config/common/RegionModelProperties.d.ts +1 -1
- package/app-config/common/TranslatableText.d.ts +1 -1
- package/app-config/common/colors.d.ts +1 -1
- package/app-config/mobile/EventListenerModelProperties.d.ts +10 -10
- package/app-config/mobile/SearchModelProperties.d.ts +1 -1
- 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/app-config/web/ChartModelProperties.d.ts +1 -1
- package/app-config/web/DrawModelProperties.d.ts +1 -1
- package/app-config/web/HasVisibilityFilters.d.ts +4 -4
- package/app-config/web/KpiCardModelProperties.d.ts +3 -3
- package/app-config/web/MapModelProperties.d.ts +2 -2
- package/app-config/web/MeasurementModelProperties.d.ts +2 -2
- package/app-config/web/ResultsModelProperties.d.ts +2 -2
- package/app-config/web/ResultsServiceModelProperties.d.ts +5 -3
- package/app-config/web/VertigisWebModelProperties.d.ts +1 -1
- package/messaging/Event.d.ts +1 -1
- package/messaging/common.d.ts +19 -19
- package/messaging/registry/Commands.js +1 -1
- package/messaging/registry/Events.js +1 -1
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/app-config.js +1 -1
- package/messaging/registry/app.js +1 -1
- package/messaging/registry/arcade.js +1 -1
- package/messaging/registry/auth.js +1 -1
- package/messaging/registry/basemap.d.ts +2 -2
- package/messaging/registry/basemap.js +1 -1
- package/messaging/registry/bookmark.js +1 -1
- package/messaging/registry/charts.js +1 -1
- package/messaging/registry/debugConsole.js +1 -1
- package/messaging/registry/device.js +1 -1
- package/messaging/registry/display.js +1 -1
- package/messaging/registry/drawing.d.ts +1 -1
- package/messaging/registry/drawing.js +1 -1
- package/messaging/registry/edit.js +1 -1
- package/messaging/registry/file.d.ts +2 -2
- package/messaging/registry/file.js +1 -1
- package/messaging/registry/geocode.js +1 -1
- package/messaging/registry/geolocation.js +1 -1
- package/messaging/registry/geometry-toolbar.js +1 -1
- package/messaging/registry/geometry.d.ts +3 -3
- package/messaging/registry/geometry.js +1 -1
- package/messaging/registry/highlights.js +1 -1
- package/messaging/registry/input.js +1 -1
- package/messaging/registry/iwtm.js +1 -1
- package/messaging/registry/kpi.js +1 -1
- package/messaging/registry/layer-comparison.js +1 -1
- package/messaging/registry/layer-presets.js +1 -1
- package/messaging/registry/layers.d.ts +1 -1
- package/messaging/registry/layers.js +1 -1
- package/messaging/registry/layout.js +1 -1
- package/messaging/registry/location-marker.d.ts +4 -4
- package/messaging/registry/location-marker.js +1 -1
- package/messaging/registry/logViewer.js +1 -1
- package/messaging/registry/map.d.ts +9 -4
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/measurement.js +1 -1
- package/messaging/registry/messaging.js +1 -1
- package/messaging/registry/network.js +1 -1
- package/messaging/registry/offline.js +1 -1
- package/messaging/registry/panel.js +1 -1
- package/messaging/registry/photos.js +1 -1
- package/messaging/registry/portal.js +1 -1
- package/messaging/registry/printing.d.ts +1 -1
- package/messaging/registry/printing.js +1 -1
- package/messaging/registry/region.js +1 -1
- package/messaging/registry/reports.js +1 -1
- package/messaging/registry/results.d.ts +1 -1
- package/messaging/registry/results.js +1 -1
- package/messaging/registry/search.js +1 -1
- package/messaging/registry/settings.js +1 -1
- package/messaging/registry/shortcut.js +1 -1
- package/messaging/registry/sketching.d.ts +4 -4
- package/messaging/registry/sketching.js +1 -1
- package/messaging/registry/studioAnalytics.js +1 -1
- package/messaging/registry/system.d.ts +4 -4
- package/messaging/registry/system.js +1 -1
- package/messaging/registry/tasks.js +1 -1
- package/messaging/registry/ui.d.ts +3 -3
- package/messaging/registry/ui.js +1 -1
- package/messaging/registry/viewer.d.ts +4 -4
- package/messaging/registry/viewer.js +1 -1
- package/messaging/registry/workflow.js +1 -1
- package/messaging/schema/common-action.schema.json +197 -198
- package/messaging/schema/common-event.schema.json +193 -194
- package/messaging/schema/mobile-action.schema.json +199 -200
- package/messaging/schema/mobile-event.schema.json +193 -194
- package/messaging/schema/web-action.schema.json +203 -204
- package/messaging/schema/web-event.schema.json +194 -195
- package/package.json +24 -20
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -3,7 +3,7 @@ import type { CommonAction } from "./CommonAction";
|
|
|
3
3
|
* Names of `action-*` events generated for VertiGIS Studio Analytics in
|
|
4
4
|
* VertiGIS Studio Mobile.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type MobileAction = CommonAction
|
|
7
7
|
/**
|
|
8
8
|
* Generic action. No payload.
|
|
9
9
|
*/
|
package/analytics/WebAction.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { CommonAction } from "./CommonAction";
|
|
|
3
3
|
* Names of `action-*` events generated for VertiGIS Studio Analytics in
|
|
4
4
|
* VertiGIS Studio Web.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type WebAction = CommonAction
|
|
7
7
|
/**
|
|
8
8
|
* Layer action.
|
|
9
9
|
*/
|
|
@@ -3,7 +3,7 @@ import type { ServiceModelProperties } from "./ServiceModelProperties.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* Specifies the visual density of components in the application.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type UIDensity = "standard" | "compact";
|
|
7
7
|
/**
|
|
8
8
|
* Configuration.
|
|
9
9
|
*/
|
|
@@ -5,7 +5,7 @@ import type { BrandingColors } from "./BrandingColors.js";
|
|
|
5
5
|
* The App Designer template that was used to generate a branding theme, if it
|
|
6
6
|
* was generated.
|
|
7
7
|
*/
|
|
8
|
-
export
|
|
8
|
+
export type BrandingThemeTemplate = "light" | "dark";
|
|
9
9
|
/**
|
|
10
10
|
* A branding theme specifies the look and feel of the viewer.
|
|
11
11
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The format in which a map coordinate could be displayed.
|
|
3
3
|
*/
|
|
4
|
-
export
|
|
4
|
+
export type CoordinateFormat = "xy" | "lat-long-dd" | "lat-long-ddm" | "lat-long-dms" | "mgrs" | "usng" | "utm";
|
|
@@ -3,7 +3,7 @@ import type { ModelProperties } from "./ModelProperties.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* A system used to determine what units should be used for measurement values.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type MeasurementSystem = "metric" | "imperial";
|
|
7
7
|
/**
|
|
8
8
|
* Properties that can be passed into the constructor for {@link RegionSettings}.
|
|
9
9
|
*/
|
|
@@ -3,7 +3,7 @@ import type { FormatSettings } from "@vertigis/arcgis-extensions/utilities/Forma
|
|
|
3
3
|
* A translatable string, either a language string or a language string with
|
|
4
4
|
* arguments to pass into it.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type TranslatableText = string | TranslateOptions;
|
|
7
7
|
/**
|
|
8
8
|
* The available options for the Locale Service translate function.
|
|
9
9
|
*/
|
|
@@ -13,23 +13,23 @@ export interface EventListenerModelProperties extends ComponentModelProperties {
|
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* Properties for a generic event listener definition. Specifies an action to
|
|
16
|
-
* execute whenever the target event is published.
|
|
17
|
-
*
|
|
18
|
-
*
|
|
16
|
+
* execute whenever the target event is published. If the sender property is
|
|
17
|
+
* assigned, the action will only be executed if the event is published with the
|
|
18
|
+
* specified sender.
|
|
19
19
|
*/
|
|
20
20
|
export interface EventListenerDefinitionProperties {
|
|
21
21
|
/**
|
|
22
22
|
* The name of the event to listen to. This value has to match the events
|
|
23
|
-
* name that gets published (including its namespace prefix,
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
23
|
+
* name that gets published (including its namespace prefix, e.g.
|
|
24
|
+
* map.navigation-completed). All events are supported, both built in events
|
|
25
|
+
* as well as custom events published through "viewer.publish-event" or the
|
|
26
|
+
* Publish Event workflow activity.
|
|
27
27
|
*/
|
|
28
28
|
event: string;
|
|
29
29
|
/**
|
|
30
|
-
* An optional reference to an item, that is to be used as a filter.
|
|
31
|
-
*
|
|
32
|
-
*
|
|
30
|
+
* An optional reference to an item, that is to be used as a filter. If set,
|
|
31
|
+
* only events published by the specified sender object, will cause the
|
|
32
|
+
* action to be executed.
|
|
33
33
|
*/
|
|
34
34
|
sender?: ItemRef;
|
|
35
35
|
/**
|
|
@@ -2,7 +2,7 @@ import type { SearchModelProperties as CommonSearchModelProperties } from "../co
|
|
|
2
2
|
/**
|
|
3
3
|
* The type of search results.
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
5
|
+
export type SearchForType = "features" | "addresses" | "features-and-addresses" | "addresses-and-features";
|
|
6
6
|
/**
|
|
7
7
|
* @inheritdoc
|
|
8
8
|
*/
|