@vertigis/viewer-spec 42.12.0 → 42.16.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/ApplicationModelProperties.d.ts +15 -0
- package/app-config/common/ApplicationModelProperties.js +1 -0
- package/app-config/mobile/SearchModelProperties.d.ts +12 -0
- package/app-config/mobile/SearchModelProperties.js +1 -0
- package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -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/VertigisWebModelProperties.d.ts +2 -11
- package/messaging/registry/map.d.ts +82 -0
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/sketching.d.ts +1 -1
- package/messaging/schema/common-action.schema.json +1032 -65
- package/messaging/schema/common-event.schema.json +1002 -61
- package/messaging/schema/mobile-action.schema.json +1032 -65
- package/messaging/schema/mobile-event.schema.json +1002 -61
- package/messaging/schema/web-action.schema.json +1294 -158
- package/messaging/schema/web-event.schema.json +1002 -61
- package/package.json +19 -19
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
|
+
import type { ServiceModelProperties } from "../common/ServiceModelProperties.js";
|
|
3
|
+
/**
|
|
4
|
+
* Global configuration for an application.
|
|
5
|
+
*/
|
|
6
|
+
export interface ApplicationModelProperties extends ServiceModelProperties {
|
|
7
|
+
/**
|
|
8
|
+
* Action to be triggered when viewer initialization is complete.
|
|
9
|
+
*/
|
|
10
|
+
onInitialized?: Action;
|
|
11
|
+
/**
|
|
12
|
+
* Action to be triggered on viewer initialization before layout selection.
|
|
13
|
+
*/
|
|
14
|
+
onInitializing?: Action;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { SearchModelProperties as CommonSearchModelProperties } from "../common/SearchModelProperties.js";
|
|
2
|
+
/** The type of search results. */
|
|
3
|
+
export declare type SearchForType = "features" | "addresses" | "features-and-addresses" | "addresses-and-features";
|
|
4
|
+
/**
|
|
5
|
+
* @inheritdoc
|
|
6
|
+
*/
|
|
7
|
+
export interface SearchModelProperties extends CommonSearchModelProperties {
|
|
8
|
+
/**
|
|
9
|
+
* Determines what the search component should search for.
|
|
10
|
+
*/
|
|
11
|
+
searchFor?: SearchForType;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ApplicationModelProperties } from "../common/ApplicationModelProperties.js";
|
|
2
2
|
/**
|
|
3
3
|
* The application build settings for a specific platform.
|
|
4
4
|
*/
|
|
@@ -23,7 +23,7 @@ export interface VertigisMobileBuildProperties {
|
|
|
23
23
|
/**
|
|
24
24
|
* Global configuration for the Vertigis Mobile application.
|
|
25
25
|
*/
|
|
26
|
-
export interface VertigisMobileModelProperties extends
|
|
26
|
+
export interface VertigisMobileModelProperties extends ApplicationModelProperties {
|
|
27
27
|
/**
|
|
28
28
|
* The ArcGIS runtime license key.
|
|
29
29
|
*/
|