@vertigis/viewer-spec 47.4.0 → 47.6.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/AnalyticsModelProperties.d.ts +10 -0
- package/app-config/common/AnalyticsModelProperties.js +1 -0
- 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/messaging/common.d.ts +1 -1
- package/messaging/registry/results.d.ts +10 -6
- package/messaging/schema/common-action.schema.json +51 -4
- package/messaging/schema/common-event.schema.json +47 -3
- package/messaging/schema/mobile-action.schema.json +51 -4
- package/messaging/schema/mobile-event.schema.json +47 -3
- package/messaging/schema/web-action.schema.json +53 -6
- package/messaging/schema/web-event.schema.json +48 -4
- package/package.json +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1084,6 +1084,9 @@
|
|
|
1084
1084
|
},
|
|
1085
1085
|
"symbol": {
|
|
1086
1086
|
"anyOf": [
|
|
1087
|
+
{
|
|
1088
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1089
|
+
},
|
|
1087
1090
|
{
|
|
1088
1091
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1089
1092
|
},
|
|
@@ -4290,7 +4293,7 @@
|
|
|
4290
4293
|
"description": "The result component to update, referenced by results model or its ID."
|
|
4291
4294
|
},
|
|
4292
4295
|
"selector": {
|
|
4293
|
-
"description": "Sets the
|
|
4296
|
+
"description": "Sets the selector, using CSS selector syntax, which queries for results components in the app layout XML, such as the Results List or Results Table components. The selector is used to determine which components will be activated when displaying results using `results.display`.",
|
|
4294
4297
|
"type": "string"
|
|
4295
4298
|
}
|
|
4296
4299
|
},
|
|
@@ -6122,7 +6125,7 @@
|
|
|
6122
6125
|
"$ref": "esri/geometry/Extent"
|
|
6123
6126
|
},
|
|
6124
6127
|
"esri.FeatureSet": {
|
|
6125
|
-
"$ref": "esri/
|
|
6128
|
+
"$ref": "esri/rest/support/FeatureSet"
|
|
6126
6129
|
},
|
|
6127
6130
|
"esri.FeatureType": {
|
|
6128
6131
|
"$ref": "esri/layers/support/FeatureType"
|
|
@@ -6487,6 +6490,23 @@
|
|
|
6487
6490
|
},
|
|
6488
6491
|
"type": "object"
|
|
6489
6492
|
},
|
|
6493
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
6494
|
+
"additionalProperties": false,
|
|
6495
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
6496
|
+
"properties": {
|
|
6497
|
+
"type": {
|
|
6498
|
+
"description": "Specifies the type of symbol used.",
|
|
6499
|
+
"enum": [
|
|
6500
|
+
"CIMSymbolReference"
|
|
6501
|
+
],
|
|
6502
|
+
"type": "string"
|
|
6503
|
+
}
|
|
6504
|
+
},
|
|
6505
|
+
"required": [
|
|
6506
|
+
"type"
|
|
6507
|
+
],
|
|
6508
|
+
"type": "object"
|
|
6509
|
+
},
|
|
6490
6510
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
6491
6511
|
"additionalProperties": false,
|
|
6492
6512
|
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.{@linkhttps://developers.arcgis.com/web-map-specification/objects/csvLayer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
@@ -6687,6 +6707,9 @@
|
|
|
6687
6707
|
},
|
|
6688
6708
|
"symbol": {
|
|
6689
6709
|
"anyOf": [
|
|
6710
|
+
{
|
|
6711
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6712
|
+
},
|
|
6690
6713
|
{
|
|
6691
6714
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6692
6715
|
},
|
|
@@ -6769,6 +6792,9 @@
|
|
|
6769
6792
|
},
|
|
6770
6793
|
"defaultSymbol": {
|
|
6771
6794
|
"anyOf": [
|
|
6795
|
+
{
|
|
6796
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6797
|
+
},
|
|
6772
6798
|
{
|
|
6773
6799
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6774
6800
|
},
|
|
@@ -7472,8 +7498,15 @@
|
|
|
7472
7498
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
7473
7499
|
"description": "The feature geometry."
|
|
7474
7500
|
},
|
|
7501
|
+
"popupInfo": {
|
|
7502
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
7503
|
+
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
7504
|
+
},
|
|
7475
7505
|
"symbol": {
|
|
7476
7506
|
"anyOf": [
|
|
7507
|
+
{
|
|
7508
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7509
|
+
},
|
|
7477
7510
|
{
|
|
7478
7511
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7479
7512
|
},
|
|
@@ -8765,7 +8798,9 @@
|
|
|
8765
8798
|
"properties": {
|
|
8766
8799
|
"bandIds": {
|
|
8767
8800
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
8768
|
-
"items": {
|
|
8801
|
+
"items": {
|
|
8802
|
+
"type": "number"
|
|
8803
|
+
},
|
|
8769
8804
|
"type": "array"
|
|
8770
8805
|
},
|
|
8771
8806
|
"blendMode": {
|
|
@@ -9850,7 +9885,7 @@
|
|
|
9850
9885
|
"type": "string"
|
|
9851
9886
|
},
|
|
9852
9887
|
"orderBy": {
|
|
9853
|
-
"description": "Determines the display order of features on the map
|
|
9888
|
+
"description": "Determines the display order of features on the map.",
|
|
9854
9889
|
"items": {
|
|
9855
9890
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
9856
9891
|
},
|
|
@@ -10016,7 +10051,7 @@
|
|
|
10016
10051
|
"type": "string"
|
|
10017
10052
|
},
|
|
10018
10053
|
"valueExpression": {
|
|
10019
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
10054
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec). [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
10020
10055
|
"type": "string"
|
|
10021
10056
|
}
|
|
10022
10057
|
},
|
|
@@ -12253,6 +12288,9 @@
|
|
|
12253
12288
|
},
|
|
12254
12289
|
"symbol": {
|
|
12255
12290
|
"anyOf": [
|
|
12291
|
+
{
|
|
12292
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12293
|
+
},
|
|
12256
12294
|
{
|
|
12257
12295
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12258
12296
|
},
|
|
@@ -12567,6 +12605,9 @@
|
|
|
12567
12605
|
},
|
|
12568
12606
|
"esri.rest-api.Symbol.Symbol": {
|
|
12569
12607
|
"anyOf": [
|
|
12608
|
+
{
|
|
12609
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12610
|
+
},
|
|
12570
12611
|
{
|
|
12571
12612
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12572
12613
|
},
|
|
@@ -13290,6 +13331,9 @@
|
|
|
13290
13331
|
},
|
|
13291
13332
|
"symbol": {
|
|
13292
13333
|
"anyOf": [
|
|
13334
|
+
{
|
|
13335
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13336
|
+
},
|
|
13293
13337
|
{
|
|
13294
13338
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13295
13339
|
},
|
|
@@ -13358,6 +13402,9 @@
|
|
|
13358
13402
|
},
|
|
13359
13403
|
"defaultSymbol": {
|
|
13360
13404
|
"anyOf": [
|
|
13405
|
+
{
|
|
13406
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13407
|
+
},
|
|
13361
13408
|
{
|
|
13362
13409
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13363
13410
|
},
|
|
@@ -16742,7 +16789,7 @@
|
|
|
16742
16789
|
"$ref": "#/definitions/ShowResultsArgs"
|
|
16743
16790
|
},
|
|
16744
16791
|
"results.set-display-components": {
|
|
16745
|
-
"description": "Sets the
|
|
16792
|
+
"description": "Sets the selector, using CSS selector syntax, which queries for results components in the app layout XML, such as the Results List or Results Table components. The selector is used to determine which components will be activated when displaying results using `results.display`. All other components that do not match the selector are deactivated after running this command.",
|
|
16746
16793
|
"enum": [
|
|
16747
16794
|
"results.set-display-components"
|
|
16748
16795
|
]
|
|
@@ -1177,7 +1177,7 @@
|
|
|
1177
1177
|
"$ref": "esri/Color"
|
|
1178
1178
|
},
|
|
1179
1179
|
"esri.FeatureSet": {
|
|
1180
|
-
"$ref": "esri/
|
|
1180
|
+
"$ref": "esri/rest/support/FeatureSet"
|
|
1181
1181
|
},
|
|
1182
1182
|
"esri.FeatureType": {
|
|
1183
1183
|
"$ref": "esri/layers/support/FeatureType"
|
|
@@ -1506,6 +1506,23 @@
|
|
|
1506
1506
|
},
|
|
1507
1507
|
"type": "object"
|
|
1508
1508
|
},
|
|
1509
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
1510
|
+
"additionalProperties": false,
|
|
1511
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
1512
|
+
"properties": {
|
|
1513
|
+
"type": {
|
|
1514
|
+
"description": "Specifies the type of symbol used.",
|
|
1515
|
+
"enum": [
|
|
1516
|
+
"CIMSymbolReference"
|
|
1517
|
+
],
|
|
1518
|
+
"type": "string"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"required": [
|
|
1522
|
+
"type"
|
|
1523
|
+
],
|
|
1524
|
+
"type": "object"
|
|
1525
|
+
},
|
|
1509
1526
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
1510
1527
|
"additionalProperties": false,
|
|
1511
1528
|
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.{@linkhttps://developers.arcgis.com/web-map-specification/objects/csvLayer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
@@ -1684,6 +1701,9 @@
|
|
|
1684
1701
|
},
|
|
1685
1702
|
"symbol": {
|
|
1686
1703
|
"anyOf": [
|
|
1704
|
+
{
|
|
1705
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1706
|
+
},
|
|
1687
1707
|
{
|
|
1688
1708
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1689
1709
|
},
|
|
@@ -1766,6 +1786,9 @@
|
|
|
1766
1786
|
},
|
|
1767
1787
|
"defaultSymbol": {
|
|
1768
1788
|
"anyOf": [
|
|
1789
|
+
{
|
|
1790
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1791
|
+
},
|
|
1769
1792
|
{
|
|
1770
1793
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1771
1794
|
},
|
|
@@ -2469,8 +2492,15 @@
|
|
|
2469
2492
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
2470
2493
|
"description": "The feature geometry."
|
|
2471
2494
|
},
|
|
2495
|
+
"popupInfo": {
|
|
2496
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
2497
|
+
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
2498
|
+
},
|
|
2472
2499
|
"symbol": {
|
|
2473
2500
|
"anyOf": [
|
|
2501
|
+
{
|
|
2502
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
2503
|
+
},
|
|
2474
2504
|
{
|
|
2475
2505
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
2476
2506
|
},
|
|
@@ -3762,7 +3792,9 @@
|
|
|
3762
3792
|
"properties": {
|
|
3763
3793
|
"bandIds": {
|
|
3764
3794
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
3765
|
-
"items": {
|
|
3795
|
+
"items": {
|
|
3796
|
+
"type": "number"
|
|
3797
|
+
},
|
|
3766
3798
|
"type": "array"
|
|
3767
3799
|
},
|
|
3768
3800
|
"blendMode": {
|
|
@@ -4618,7 +4650,7 @@
|
|
|
4618
4650
|
"type": "string"
|
|
4619
4651
|
},
|
|
4620
4652
|
"orderBy": {
|
|
4621
|
-
"description": "Determines the display order of features on the map
|
|
4653
|
+
"description": "Determines the display order of features on the map.",
|
|
4622
4654
|
"items": {
|
|
4623
4655
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
4624
4656
|
},
|
|
@@ -4784,7 +4816,7 @@
|
|
|
4784
4816
|
"type": "string"
|
|
4785
4817
|
},
|
|
4786
4818
|
"valueExpression": {
|
|
4787
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
4819
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec). [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
4788
4820
|
"type": "string"
|
|
4789
4821
|
}
|
|
4790
4822
|
},
|
|
@@ -6959,6 +6991,9 @@
|
|
|
6959
6991
|
},
|
|
6960
6992
|
"symbol": {
|
|
6961
6993
|
"anyOf": [
|
|
6994
|
+
{
|
|
6995
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6996
|
+
},
|
|
6962
6997
|
{
|
|
6963
6998
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6964
6999
|
},
|
|
@@ -7273,6 +7308,9 @@
|
|
|
7273
7308
|
},
|
|
7274
7309
|
"esri.rest-api.Symbol.Symbol": {
|
|
7275
7310
|
"anyOf": [
|
|
7311
|
+
{
|
|
7312
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7313
|
+
},
|
|
7276
7314
|
{
|
|
7277
7315
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7278
7316
|
},
|
|
@@ -7992,6 +8030,9 @@
|
|
|
7992
8030
|
},
|
|
7993
8031
|
"symbol": {
|
|
7994
8032
|
"anyOf": [
|
|
8033
|
+
{
|
|
8034
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
8035
|
+
},
|
|
7995
8036
|
{
|
|
7996
8037
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7997
8038
|
},
|
|
@@ -8060,6 +8101,9 @@
|
|
|
8060
8101
|
},
|
|
8061
8102
|
"defaultSymbol": {
|
|
8062
8103
|
"anyOf": [
|
|
8104
|
+
{
|
|
8105
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
8106
|
+
},
|
|
8063
8107
|
{
|
|
8064
8108
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
8065
8109
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.6.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": ">=
|
|
37
|
+
"@vertigis/arcgis-extensions": ">= 35.0.0 < 36.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@arcgis/core": "4.
|
|
41
|
-
"@vertigis/arcgis-extensions": "
|
|
40
|
+
"@arcgis/core": "4.23.3",
|
|
41
|
+
"@vertigis/arcgis-extensions": "35.0.0",
|
|
42
42
|
"@types/glob": "7.2.0",
|
|
43
43
|
"@types/node": "14.14.41",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": " 5.18.0",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED