@vertigis/viewer-spec 49.6.0 → 49.7.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/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/DataLinkSourceProperties.d.ts +15 -0
- package/app-config/web/DataLinkSourceProperties.js +1 -0
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { EntityProperties } from "@vertigis/arcgis-extensions/Entity";
|
|
2
|
+
import type { FeatureSourceProperties } from "@vertigis/arcgis-extensions/data/FeatureSource";
|
|
3
|
+
/**
|
|
4
|
+
* Configuration for a Data Link source.
|
|
5
|
+
*/
|
|
6
|
+
export interface DataLinkSourceProperties extends FeatureSourceProperties, EntityProperties {
|
|
7
|
+
/**
|
|
8
|
+
* The title of the data link source.
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* URL to an icon that represents this layer.
|
|
13
|
+
*/
|
|
14
|
+
iconUrl?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "49.
|
|
3
|
+
"version": "49.7.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
},
|
|
35
35
|
"author": "VertiGIS Ltd.",
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@vertigis/arcgis-extensions": ">= 35.
|
|
37
|
+
"@vertigis/arcgis-extensions": ">= 35.9.0 < 36.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arcgis/core": "4.23.3",
|
|
41
|
-
"@vertigis/arcgis-extensions": "35.
|
|
41
|
+
"@vertigis/arcgis-extensions": "35.9.0",
|
|
42
42
|
"@prettier/plugin-xml": "2.2.0",
|
|
43
43
|
"@types/glob": "7.2.0",
|
|
44
44
|
"@types/node": "14.14.41",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED