@vertigis/viewer-spec 58.0.0 → 58.2.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/BrandingColors.d.ts +1 -0
- package/app-config/common/ResultsModelProperties.d.ts +0 -6
- 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/BrandingModelProperties.d.ts +5 -0
- package/app-config/web/ResultsModelProperties.d.ts +6 -0
- package/app-config/web/SplashScreenModelProperties.d.ts +18 -0
- package/app-config/web/SplashScreenModelProperties.js +1 -0
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { BrandingModelProperties as CommonBrandingModelProperties } from "../common/BrandingModelProperties.js";
|
|
2
|
+
import type { SplashScreenModelProperties } from "./SplashScreenModelProperties.js";
|
|
2
3
|
/**
|
|
3
4
|
* Properties for the branding service.
|
|
4
5
|
*/
|
|
@@ -11,4 +12,8 @@ export interface BrandingModelProperties extends CommonBrandingModelProperties {
|
|
|
11
12
|
* The name to be used as the application name.
|
|
12
13
|
*/
|
|
13
14
|
applicationName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The splash screen configuration options.
|
|
17
|
+
*/
|
|
18
|
+
splashScreenSettings?: SplashScreenModelProperties;
|
|
14
19
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
|
+
import type { ItemRef } from "app-config/common/ItemRef.js";
|
|
2
3
|
import type { ResultsModelProperties as CommonResultsModelProperties } from "../common/ResultsModelProperties.js";
|
|
3
4
|
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
4
5
|
import type { FeatureListProperties } from "./FeatureListProperties.js";
|
|
@@ -6,6 +7,11 @@ import type { FeatureListProperties } from "./FeatureListProperties.js";
|
|
|
6
7
|
* @inheritdoc
|
|
7
8
|
*/
|
|
8
9
|
export interface ResultsModelProperties extends CommonResultsModelProperties, ComponentModelProperties {
|
|
10
|
+
/**
|
|
11
|
+
* A menu used to run commands on specific features or groups of features.
|
|
12
|
+
* (MenuModel).
|
|
13
|
+
*/
|
|
14
|
+
featureActions?: ItemRef;
|
|
9
15
|
/**
|
|
10
16
|
* A command or set of commands to execute when a feature or group of
|
|
11
17
|
* features is deselected. Web only.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { ModelProperties } from "./ModelProperties";
|
|
2
|
+
/**
|
|
3
|
+
* Properties for the splash screen.
|
|
4
|
+
*/
|
|
5
|
+
export interface SplashScreenModelProperties extends ModelProperties {
|
|
6
|
+
/**
|
|
7
|
+
* Whether to show the splash screen.
|
|
8
|
+
*/
|
|
9
|
+
showSplashScreen?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* The splash icon source.
|
|
12
|
+
*/
|
|
13
|
+
splashScreenIcon?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Whether to use application name on the splash screen.
|
|
16
|
+
*/
|
|
17
|
+
useApplicationName?: boolean;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED