@vertigis/viewer-spec 42.15.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/VertigisMobileModelProperties.d.ts +2 -2
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/web/VertigisWebModelProperties.d.ts +2 -11
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { EntityProperties } from "@vertigis/arcgis-extensions/Entity";
|
|
2
|
-
import type {
|
|
2
|
+
import type { ApplicationModelProperties } from "../common/ApplicationModelProperties.js";
|
|
3
3
|
import type { ItemRef } from "../common/ItemRef.js";
|
|
4
|
-
import type { ServiceModelProperties } from "../common/ServiceModelProperties.js";
|
|
5
4
|
/**
|
|
6
5
|
* The privacy policy link location options.
|
|
7
6
|
*/
|
|
@@ -26,15 +25,7 @@ export interface PrivacyPolicyInfo extends EntityProperties {
|
|
|
26
25
|
/**
|
|
27
26
|
* Global configuration for a VertiGIS Web application.
|
|
28
27
|
*/
|
|
29
|
-
export interface VertigisWebModelProperties extends
|
|
30
|
-
/**
|
|
31
|
-
* Action to be triggered when viewer initialization is complete.
|
|
32
|
-
*/
|
|
33
|
-
onInitialized?: Action;
|
|
34
|
-
/**
|
|
35
|
-
* Action to be triggered on viewer initialization before layout selection.
|
|
36
|
-
*/
|
|
37
|
-
onInitializing?: Action;
|
|
28
|
+
export interface VertigisWebModelProperties extends ApplicationModelProperties {
|
|
38
29
|
/**
|
|
39
30
|
* Allowed origin for sending and receiving PostMessages.
|
|
40
31
|
*/
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED