@vertigis/viewer-spec 53.10.0 → 54.0.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/{mobile → common}/EventListenerModelProperties.d.ts +8 -3
- package/app-config/common/TranslatableText.d.ts +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/messaging/Event.d.ts +3 -2
- package/messaging/registry/app-config.d.ts +1 -1
- package/messaging/registry/app.d.ts +27 -21
- package/messaging/registry/arcade.d.ts +3 -3
- package/messaging/registry/auth.d.ts +4 -3
- package/messaging/registry/basemap.d.ts +2 -2
- package/messaging/registry/bookmark.d.ts +4 -4
- package/messaging/registry/charts.d.ts +8 -7
- package/messaging/registry/debugConsole.d.ts +2 -0
- package/messaging/registry/device.d.ts +3 -3
- package/messaging/registry/display.d.ts +1 -1
- package/messaging/registry/drawing.d.ts +8 -6
- package/messaging/registry/edit.d.ts +9 -8
- package/messaging/registry/file.d.ts +8 -8
- package/messaging/registry/filter-builder.d.ts +4 -3
- package/messaging/registry/geocode.d.ts +1 -1
- package/messaging/registry/geolocation.d.ts +27 -24
- package/messaging/registry/geometry-toolbar.d.ts +2 -2
- package/messaging/registry/geometry.d.ts +12 -12
- package/messaging/registry/highlights.d.ts +8 -6
- package/messaging/registry/input.d.ts +2 -2
- package/messaging/registry/iwtm.d.ts +1 -1
- package/messaging/registry/kpi.d.ts +8 -7
- package/messaging/registry/layer-comparison.d.ts +9 -8
- package/messaging/registry/layer-presets.d.ts +2 -2
- package/messaging/registry/layers.d.ts +16 -14
- package/messaging/registry/layout.d.ts +4 -4
- package/messaging/registry/licensing.d.ts +2 -2
- package/messaging/registry/location-marker.d.ts +7 -7
- package/messaging/registry/logViewer.d.ts +2 -2
- package/messaging/registry/map.d.ts +68 -61
- package/messaging/registry/measurement.d.ts +16 -16
- package/messaging/registry/messaging.d.ts +1 -1
- package/messaging/registry/network.d.ts +4 -4
- package/messaging/registry/offline.d.ts +34 -29
- package/messaging/registry/panel.d.ts +9 -5
- package/messaging/registry/photos.d.ts +3 -3
- package/messaging/registry/portal.d.ts +3 -3
- package/messaging/registry/project.d.ts +13 -13
- package/messaging/registry/query-builder.d.ts +3 -3
- package/messaging/registry/region.d.ts +2 -2
- package/messaging/registry/reports.d.ts +6 -5
- package/messaging/registry/results.d.ts +39 -31
- package/messaging/registry/search.d.ts +6 -6
- package/messaging/registry/settings.d.ts +1 -1
- package/messaging/registry/shortcut.d.ts +2 -2
- package/messaging/registry/sketching.d.ts +34 -29
- package/messaging/registry/system.d.ts +14 -13
- package/messaging/registry/tasks.d.ts +8 -5
- package/messaging/registry/ui.d.ts +32 -26
- package/messaging/registry/viewer.d.ts +13 -11
- package/messaging/registry/workflow.d.ts +7 -7
- package/messaging/schema/common-action.schema.json +15 -15
- package/messaging/schema/common-event.schema.json +5 -5
- package/messaging/schema/mobile-action.schema.json +131 -131
- package/messaging/schema/mobile-event.schema.json +99 -99
- package/messaging/schema/web-action.schema.json +215 -215
- package/messaging/schema/web-event.schema.json +37 -37
- package/package.json +9 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- /package/app-config/{mobile → common}/EventListenerModelProperties.js +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import type { EntityBaseProperties } from "@vertigis/arcgis-extensions/Entity.js";
|
|
1
2
|
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
|
-
import type { ComponentModelProperties } from "
|
|
3
|
-
import type { ItemRef } from "
|
|
3
|
+
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
4
|
+
import type { ItemRef } from "./ItemRef.js";
|
|
4
5
|
/**
|
|
5
6
|
* Configuration for a generic event listener.
|
|
6
7
|
*/
|
|
@@ -17,7 +18,7 @@ export interface EventListenerModelProperties extends ComponentModelProperties {
|
|
|
17
18
|
* assigned, the action will only be executed if the event is published with the
|
|
18
19
|
* specified sender.
|
|
19
20
|
*/
|
|
20
|
-
export interface EventListenerDefinitionProperties {
|
|
21
|
+
export interface EventListenerDefinitionProperties extends EntityBaseProperties {
|
|
21
22
|
/**
|
|
22
23
|
* The name of the event to listen to. This value has to match the events
|
|
23
24
|
* name that gets published (including its namespace prefix, e.g.
|
|
@@ -36,4 +37,8 @@ export interface EventListenerDefinitionProperties {
|
|
|
36
37
|
* The action to perform, when the specified events gets published.
|
|
37
38
|
*/
|
|
38
39
|
action: Action;
|
|
40
|
+
/**
|
|
41
|
+
* A human-readable title for the event listener instance.
|
|
42
|
+
*/
|
|
43
|
+
title?: string;
|
|
39
44
|
}
|
|
@@ -10,7 +10,7 @@ export type TranslatableText = string | TranslateOptions;
|
|
|
10
10
|
export interface TranslateOptions extends FormatSettings {
|
|
11
11
|
/**
|
|
12
12
|
* An optional default value to fallback to when a language resource key
|
|
13
|
-
* does not exist.
|
|
13
|
+
* does not exist. Web only.
|
|
14
14
|
*
|
|
15
15
|
* @webOnly
|
|
16
16
|
*/
|