@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "58.0.0",
3
+ "version": "58.2.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "58.0.0";
4
+ export declare const version = "58.2.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "58.0.0";
4
+ export const version = "58.2.0";