@vertigis/viewer-spec 47.6.0 → 47.6.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/app-config/AppConfig.d.ts +3 -6
- package/app-config/common/BrandingThemeProperties.d.ts +2 -4
- package/app-config/common/HighlightModelProperties.d.ts +2 -4
- package/app-config/common/LayerPresetsModelProperties.d.ts +1 -2
- package/app-config/common/LayoutProperties.d.ts +3 -3
- package/app-config/common/RegionModelProperties.d.ts +1 -2
- package/app-config/common/SearchModelProperties.d.ts +2 -2
- package/app-config/common/WorkflowModelProperties.d.ts +2 -4
- package/app-config/mobile/FeatureDetailsModelProperties.d.ts +2 -1
- package/app-config/mobile/SearchModelProperties.d.ts +3 -1
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +1 -2
- 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/DrawModelProperties.d.ts +1 -2
- package/app-config/web/FeatureDetailsModelProperties.d.ts +2 -2
- package/app-config/web/HasVisibilityFilters.d.ts +4 -4
- package/app-config/web/KpiCardModelProperties.d.ts +10 -10
- package/app-config/web/MapCoordinatesModelProperties.d.ts +1 -2
- package/app-config/web/MapModelProperties.d.ts +2 -4
- package/app-config/web/MeasurementModelProperties.d.ts +1 -2
- package/app-config/web/ResultsModelProperties.d.ts +2 -2
- package/app-config/web/SearchModelProperties.d.ts +1 -2
- package/app-config/web/VertigisWebModelProperties.d.ts +4 -6
- package/layout/schema/layout-common.xsd +843 -830
- package/layout/schema/layout-mobile.xsd +241 -234
- package/layout/schema/layout-web.xsd +281 -277
- package/layout/schema/schema-reference-example.xml +11 -10
- package/messaging/Command.d.ts +1 -2
- package/messaging/Event.d.ts +2 -4
- package/messaging/MessageBus.d.ts +2 -2
- package/messaging/Operation.d.ts +1 -2
- package/messaging/common.d.ts +9 -14
- package/messaging/registry/app.d.ts +6 -10
- package/messaging/registry/arcade.d.ts +3 -7
- package/messaging/registry/auth.d.ts +6 -10
- package/messaging/registry/basemap.d.ts +8 -8
- package/messaging/registry/charts.d.ts +2 -2
- package/messaging/registry/debugConsole.d.ts +3 -4
- package/messaging/registry/drawing.d.ts +3 -6
- package/messaging/registry/edit.d.ts +9 -14
- package/messaging/registry/geolocation.d.ts +13 -20
- package/messaging/registry/geometry.d.ts +26 -31
- package/messaging/registry/kpi.d.ts +2 -4
- package/messaging/registry/layer-comparison.d.ts +2 -2
- package/messaging/registry/layout.d.ts +1 -2
- package/messaging/registry/location-marker.d.ts +5 -10
- package/messaging/registry/map.d.ts +21 -22
- package/messaging/registry/measurement.d.ts +6 -8
- package/messaging/registry/messaging.d.ts +3 -3
- package/messaging/registry/offline.d.ts +19 -24
- package/messaging/registry/panel.d.ts +1 -2
- package/messaging/registry/portal.d.ts +1 -2
- package/messaging/registry/printing.d.ts +3 -4
- package/messaging/registry/results.d.ts +8 -16
- package/messaging/registry/sketching.d.ts +27 -40
- package/messaging/registry/system.d.ts +6 -6
- package/messaging/registry/tasks.d.ts +4 -6
- package/messaging/registry/ui.d.ts +12 -18
- package/messaging/registry/viewer.d.ts +1 -2
- package/messaging/registry/workflow.d.ts +2 -4
- package/messaging/schema/web-action.schema.json +1 -1
- package/package.json +17 -17
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -56,8 +56,7 @@ export interface DrawModelBaseProperties extends ModelProperties {
|
|
|
56
56
|
symbolPresets?: SymbolPresetProperties[];
|
|
57
57
|
/**
|
|
58
58
|
* Shows only symbol presets and no fine-grain controls when a symbol is
|
|
59
|
-
* being edited. If no symbol presets are configured, this property is
|
|
60
|
-
* ignored.
|
|
59
|
+
* being edited. If no symbol presets are configured, this property is ignored.
|
|
61
60
|
*/
|
|
62
61
|
showOnlySymbolPresets?: boolean;
|
|
63
62
|
}
|
|
@@ -5,8 +5,8 @@ import type { FeatureListProperties } from "./FeatureListProperties.js";
|
|
|
5
5
|
*/
|
|
6
6
|
export interface FeatureDetailsModelProperties extends FeatureInfoModelProperties {
|
|
7
7
|
/**
|
|
8
|
-
* The set of features contained by the feature-details model. This property
|
|
9
|
-
* serialized into saved projects. Web only.
|
|
8
|
+
* The set of features contained by the feature-details model. This property
|
|
9
|
+
* is only serialized into saved projects. Web only.
|
|
10
10
|
*/
|
|
11
11
|
results?: FeatureListProperties;
|
|
12
12
|
}
|
|
@@ -22,14 +22,14 @@ export declare type VisibilityFilter = VertigisUserType | PortalGroupId | Portal
|
|
|
22
22
|
export interface HasVisibilityFilters {
|
|
23
23
|
/**
|
|
24
24
|
* Filters that determine whether the UI element is visible to a given
|
|
25
|
-
* end-user. If both visibleTo and hiddenFrom are undefined/empty, the
|
|
26
|
-
* will be visible to all users.
|
|
25
|
+
* end-user. If both visibleTo and hiddenFrom are undefined/empty, the
|
|
26
|
+
* component will be visible to all users.
|
|
27
27
|
*/
|
|
28
28
|
visibleTo?: VisibilityFilter[];
|
|
29
29
|
/**
|
|
30
30
|
* Filters that determine whether the UI element is hidden from a given
|
|
31
|
-
* end-user. If both visibleTo and hiddenFrom are undefined/empty, the
|
|
32
|
-
* will be visible to all users.
|
|
31
|
+
* end-user. If both visibleTo and hiddenFrom are undefined/empty, the
|
|
32
|
+
* component will be visible to all users.
|
|
33
33
|
*/
|
|
34
34
|
hiddenFrom?: VisibilityFilter[];
|
|
35
35
|
}
|
|
@@ -63,8 +63,8 @@ export interface KpiCardModelProperties extends ComponentModelProperties {
|
|
|
63
63
|
*/
|
|
64
64
|
valueExpression?: string;
|
|
65
65
|
/**
|
|
66
|
-
* The set of features contained by the kpi-card model. This property is
|
|
67
|
-
* serialized into saved projects. Web only.
|
|
66
|
+
* The set of features contained by the kpi-card model. This property is
|
|
67
|
+
* only serialized into saved projects. Web only.
|
|
68
68
|
*/
|
|
69
69
|
results?: FeatureSetProperties;
|
|
70
70
|
}
|
|
@@ -78,8 +78,7 @@ export interface KpiCardSectionModelProperties {
|
|
|
78
78
|
*/
|
|
79
79
|
text?: string;
|
|
80
80
|
/**
|
|
81
|
-
* The ID of the icon to display in this section, or undefined to show no
|
|
82
|
-
* icon.
|
|
81
|
+
* The ID of the icon to display in this section, or undefined to show no icon.
|
|
83
82
|
*/
|
|
84
83
|
icon?: string;
|
|
85
84
|
/**
|
|
@@ -127,12 +126,13 @@ export interface KpiCardConditionModelProperties extends EntityProperties {
|
|
|
127
126
|
/**
|
|
128
127
|
* Determines how the reference value for a KPI card is calculated. A reference
|
|
129
128
|
* is a number to compare against.
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
129
|
+
*
|
|
130
|
+
* - "none": No reference value is used for this card.
|
|
131
|
+
* - "previous": The reference value will reflect the previous KPI value whenever
|
|
132
|
+
* it changes. Initially it will be undefined.
|
|
133
|
+
* - "fixed": A constant value.
|
|
134
|
+
* - "statistic": A calculated value determined via an Arcade expression (see
|
|
135
|
+
* `referenceExpression`).
|
|
136
136
|
*/
|
|
137
137
|
export declare type ReferenceType = "none" | "previous" | "fixed" | "statistic";
|
|
138
138
|
/**
|
|
@@ -14,8 +14,7 @@ export interface MapCoordinatesModelProperties extends CommonMapCoordinatesModel
|
|
|
14
14
|
coordinateFormat?: CoordinateFormat;
|
|
15
15
|
/**
|
|
16
16
|
* The number of decimal places displayed for LAT_LONG coordinate formats.
|
|
17
|
-
* The value must be an integer between 0 and 8 (inclusive). The default is
|
|
18
|
-
* 4.
|
|
17
|
+
* The value must be an integer between 0 and 8 (inclusive). The default is 4.
|
|
19
18
|
*/
|
|
20
19
|
decimalPlacesLatLong?: number;
|
|
21
20
|
/**
|
|
@@ -59,8 +59,7 @@ export interface MapModelProperties extends CommonMapModelProperties, ComponentM
|
|
|
59
59
|
*/
|
|
60
60
|
layerComparisonDirection?: LayerComparisonDirection;
|
|
61
61
|
/**
|
|
62
|
-
* The position of the label relative to the slider bar. The default is
|
|
63
|
-
* "start".
|
|
62
|
+
* The position of the label relative to the slider bar. The default is "start".
|
|
64
63
|
*/
|
|
65
64
|
layerComparisonLabelPosition?: LayerComparisonLabelPosition;
|
|
66
65
|
/**
|
|
@@ -69,8 +68,7 @@ export interface MapModelProperties extends CommonMapModelProperties, ComponentM
|
|
|
69
68
|
*/
|
|
70
69
|
layerComparisonIsConfigurable?: boolean;
|
|
71
70
|
/**
|
|
72
|
-
* The viewpoint of the map. This property is only serialized to saved
|
|
73
|
-
* projects.
|
|
71
|
+
* The viewpoint of the map. This property is only serialized to saved projects.
|
|
74
72
|
*/
|
|
75
73
|
viewpoint?: ViewpointJson;
|
|
76
74
|
/**
|
|
@@ -4,8 +4,7 @@ import type { DrawModelBaseProperties } from "./DrawModelProperties.js";
|
|
|
4
4
|
*/
|
|
5
5
|
export interface MeasurementModelProperties extends DrawModelBaseProperties {
|
|
6
6
|
/**
|
|
7
|
-
* The number of decimal places to use in measurement labels. The default is
|
|
8
|
-
* 2.
|
|
7
|
+
* The number of decimal places to use in measurement labels. The default is 2.
|
|
9
8
|
*/
|
|
10
9
|
decimalPlaces?: number;
|
|
11
10
|
/**
|
|
@@ -42,8 +42,8 @@ export interface ResultsModelProperties extends CommonResultsModelProperties, Co
|
|
|
42
42
|
*/
|
|
43
43
|
onHover?: Action;
|
|
44
44
|
/**
|
|
45
|
-
* A command or set of commands to execute when a feature or group is
|
|
46
|
-
*
|
|
45
|
+
* A command or set of commands to execute when a feature or group is has
|
|
46
|
+
* finished the moused-over event. Web only.
|
|
47
47
|
*/
|
|
48
48
|
onHoverEnd?: Action;
|
|
49
49
|
/**
|
|
@@ -10,8 +10,7 @@ export interface SearchModelProperties extends CommonSearchModelProperties, Comp
|
|
|
10
10
|
*/
|
|
11
11
|
disableSearchAreaExpansion?: boolean;
|
|
12
12
|
/**
|
|
13
|
-
* This setting is used to indicate if the geocoder should be used by the
|
|
14
|
-
* search.
|
|
13
|
+
* This setting is used to indicate if the geocoder should be used by the search.
|
|
15
14
|
*/
|
|
16
15
|
geocoderEnabled?: boolean;
|
|
17
16
|
/**
|
|
@@ -11,8 +11,8 @@ export declare type PrivacyPolicyLocation = "app-top-beginning" | "app-top-end"
|
|
|
11
11
|
export interface PrivacyPolicyInfo extends EntityProperties {
|
|
12
12
|
/**
|
|
13
13
|
* The location in which the privacy policy information should be shown.
|
|
14
|
-
* Defaults to user-component and falls back to the app-footer
|
|
15
|
-
*
|
|
14
|
+
* Defaults to user-component and falls back to the app-footer if the
|
|
15
|
+
* specified location is not available.
|
|
16
16
|
*/
|
|
17
17
|
location?: PrivacyPolicyLocation;
|
|
18
18
|
/**
|
|
@@ -35,8 +35,7 @@ export interface VertigisWebModelProperties extends ApplicationModelProperties {
|
|
|
35
35
|
*/
|
|
36
36
|
privacyPolicyInfo?: PrivacyPolicyInfo;
|
|
37
37
|
/**
|
|
38
|
-
* The collection of rules specifying the proxy URL to use for a given URL
|
|
39
|
-
* prefix.
|
|
38
|
+
* The collection of rules specifying the proxy URL to use for a given URL prefix.
|
|
40
39
|
*/
|
|
41
40
|
proxyRules?: ProxyRule[];
|
|
42
41
|
/**
|
|
@@ -68,8 +67,7 @@ export interface ProxyRule {
|
|
|
68
67
|
*/
|
|
69
68
|
proxyUrl: string;
|
|
70
69
|
/**
|
|
71
|
-
* The URL prefix of the resources that should be accessed through the given
|
|
72
|
-
* proxy.
|
|
70
|
+
* The URL prefix of the resources that should be accessed through the given proxy.
|
|
73
71
|
*/
|
|
74
72
|
urlPrefix: string;
|
|
75
73
|
}
|