@vertigis/viewer-spec 51.15.0 → 51.17.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/TranslatableText.d.ts +7 -0
- package/messaging/registry/tasks.d.ts +3 -3
- package/messaging/schema/common-action.schema.json +7 -3
- package/messaging/schema/mobile-action.schema.json +7 -3
- package/messaging/schema/mobile-event.schema.json +3 -3
- package/messaging/schema/web-action.schema.json +11 -3
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -8,6 +8,13 @@ export type TranslatableText = string | TranslateOptions;
|
|
|
8
8
|
* The available options for the Locale Service translate function.
|
|
9
9
|
*/
|
|
10
10
|
export interface TranslateOptions extends FormatSettings {
|
|
11
|
+
/**
|
|
12
|
+
* An optional default value to fallback to when a language resource key
|
|
13
|
+
* does not exist.
|
|
14
|
+
*
|
|
15
|
+
* @webOnly
|
|
16
|
+
*/
|
|
17
|
+
defaultValue?: string;
|
|
11
18
|
/**
|
|
12
19
|
* The string to translate. If the text is a language resource key, then a
|
|
13
20
|
* localized version of that resource will be used if one exists, otherwise
|
|
@@ -30,6 +30,7 @@ export interface SearchArgs {
|
|
|
30
30
|
sources?: FeatureSource[];
|
|
31
31
|
/**
|
|
32
32
|
* The map(s) to search. Can be used instead of or in addition to "sources".
|
|
33
|
+
* This property is required in VertiGIS Studio Mobile.
|
|
33
34
|
*/
|
|
34
35
|
maps?: MapsLike;
|
|
35
36
|
/**
|
|
@@ -47,7 +48,7 @@ export interface SearchArgs {
|
|
|
47
48
|
maxQueryResults?: number;
|
|
48
49
|
/**
|
|
49
50
|
* If specified, results are limited to features that intersect the
|
|
50
|
-
* geometry.
|
|
51
|
+
* geometry. This property is required in VertiGIS Studio Mobile.
|
|
51
52
|
*/
|
|
52
53
|
searchArea?: Geometry;
|
|
53
54
|
/**
|
|
@@ -59,8 +60,7 @@ export interface SearchArgs {
|
|
|
59
60
|
*/
|
|
60
61
|
near?: Point;
|
|
61
62
|
/**
|
|
62
|
-
* The map Viewpoint at the time of the search. Mobile only.
|
|
63
|
-
* is required in VertiGIS Studio Mobile.
|
|
63
|
+
* The map Viewpoint at the time of the search. Mobile only.
|
|
64
64
|
*/
|
|
65
65
|
mapViewpoint?: Viewpoint;
|
|
66
66
|
/**
|
|
@@ -2366,11 +2366,11 @@
|
|
|
2366
2366
|
},
|
|
2367
2367
|
"mapViewpoint": {
|
|
2368
2368
|
"$ref": "#/definitions/esri.Viewpoint",
|
|
2369
|
-
"description": "The map Viewpoint at the time of the search. Mobile only.
|
|
2369
|
+
"description": "The map Viewpoint at the time of the search. Mobile only."
|
|
2370
2370
|
},
|
|
2371
2371
|
"maps": {
|
|
2372
2372
|
"$ref": "MapsLike",
|
|
2373
|
-
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
|
|
2373
|
+
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\". This property is required in VertiGIS Studio Mobile."
|
|
2374
2374
|
},
|
|
2375
2375
|
"maxQueryResults": {
|
|
2376
2376
|
"description": "The maximum number of results to query per source, the results per source will still be limited by maxResults.",
|
|
@@ -2390,7 +2390,7 @@
|
|
|
2390
2390
|
},
|
|
2391
2391
|
"searchArea": {
|
|
2392
2392
|
"$ref": "#/definitions/esri.Geometry",
|
|
2393
|
-
"description": "If specified, results are limited to features that intersect the geometry."
|
|
2393
|
+
"description": "If specified, results are limited to features that intersect the geometry. This property is required in VertiGIS Studio Mobile."
|
|
2394
2394
|
},
|
|
2395
2395
|
"searchText": {
|
|
2396
2396
|
"description": "The text to search for. Required.",
|
|
@@ -2882,6 +2882,10 @@
|
|
|
2882
2882
|
"description": "The default format to use when formatting dates. See{@linkutilities /date!DateFormatter.format}.",
|
|
2883
2883
|
"type": "string"
|
|
2884
2884
|
},
|
|
2885
|
+
"defaultValue": {
|
|
2886
|
+
"description": "An optional default value to fallback to when a language resource key does not exist.",
|
|
2887
|
+
"type": "string"
|
|
2888
|
+
},
|
|
2885
2889
|
"fractionalDigits": {
|
|
2886
2890
|
"description": "The default number of digits to show after the decimal point when formatting numbers. See{@linkutilities /number!NumberSettings.fractionalDigits}.",
|
|
2887
2891
|
"type": "number"
|
|
@@ -3186,11 +3186,11 @@
|
|
|
3186
3186
|
},
|
|
3187
3187
|
"mapViewpoint": {
|
|
3188
3188
|
"$ref": "#/definitions/esri.Viewpoint",
|
|
3189
|
-
"description": "The map Viewpoint at the time of the search. Mobile only.
|
|
3189
|
+
"description": "The map Viewpoint at the time of the search. Mobile only."
|
|
3190
3190
|
},
|
|
3191
3191
|
"maps": {
|
|
3192
3192
|
"$ref": "MapsLike",
|
|
3193
|
-
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
|
|
3193
|
+
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\". This property is required in VertiGIS Studio Mobile."
|
|
3194
3194
|
},
|
|
3195
3195
|
"maxQueryResults": {
|
|
3196
3196
|
"description": "The maximum number of results to query per source, the results per source will still be limited by maxResults.",
|
|
@@ -3210,7 +3210,7 @@
|
|
|
3210
3210
|
},
|
|
3211
3211
|
"searchArea": {
|
|
3212
3212
|
"$ref": "#/definitions/esri.Geometry",
|
|
3213
|
-
"description": "If specified, results are limited to features that intersect the geometry."
|
|
3213
|
+
"description": "If specified, results are limited to features that intersect the geometry. This property is required in VertiGIS Studio Mobile."
|
|
3214
3214
|
},
|
|
3215
3215
|
"searchText": {
|
|
3216
3216
|
"description": "The text to search for. Required.",
|
|
@@ -3889,6 +3889,10 @@
|
|
|
3889
3889
|
"description": "The default format to use when formatting dates. See{@linkutilities /date!DateFormatter.format}.",
|
|
3890
3890
|
"type": "string"
|
|
3891
3891
|
},
|
|
3892
|
+
"defaultValue": {
|
|
3893
|
+
"description": "An optional default value to fallback to when a language resource key does not exist.",
|
|
3894
|
+
"type": "string"
|
|
3895
|
+
},
|
|
3892
3896
|
"fractionalDigits": {
|
|
3893
3897
|
"description": "The default number of digits to show after the decimal point when formatting numbers. See{@linkutilities /number!NumberSettings.fractionalDigits}.",
|
|
3894
3898
|
"type": "number"
|
|
@@ -1459,11 +1459,11 @@
|
|
|
1459
1459
|
},
|
|
1460
1460
|
"mapViewpoint": {
|
|
1461
1461
|
"$ref": "#/definitions/esri.Viewpoint",
|
|
1462
|
-
"description": "The map Viewpoint at the time of the search. Mobile only.
|
|
1462
|
+
"description": "The map Viewpoint at the time of the search. Mobile only."
|
|
1463
1463
|
},
|
|
1464
1464
|
"maps": {
|
|
1465
1465
|
"$ref": "MapsLike",
|
|
1466
|
-
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
|
|
1466
|
+
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\". This property is required in VertiGIS Studio Mobile."
|
|
1467
1467
|
},
|
|
1468
1468
|
"maxQueryResults": {
|
|
1469
1469
|
"description": "The maximum number of results to query per source, the results per source will still be limited by maxResults.",
|
|
@@ -1483,7 +1483,7 @@
|
|
|
1483
1483
|
},
|
|
1484
1484
|
"searchArea": {
|
|
1485
1485
|
"$ref": "#/definitions/esri.Geometry",
|
|
1486
|
-
"description": "If specified, results are limited to features that intersect the geometry."
|
|
1486
|
+
"description": "If specified, results are limited to features that intersect the geometry. This property is required in VertiGIS Studio Mobile."
|
|
1487
1487
|
},
|
|
1488
1488
|
"searchText": {
|
|
1489
1489
|
"description": "The text to search for. Required.",
|
|
@@ -4055,6 +4055,10 @@
|
|
|
4055
4055
|
"description": "The default format to use when formatting dates. See{@linkutilities /date!DateFormatter.format}.",
|
|
4056
4056
|
"type": "string"
|
|
4057
4057
|
},
|
|
4058
|
+
"defaultValue": {
|
|
4059
|
+
"description": "An optional default value to fallback to when a language resource key does not exist.",
|
|
4060
|
+
"type": "string"
|
|
4061
|
+
},
|
|
4058
4062
|
"fractionalDigits": {
|
|
4059
4063
|
"description": "The default number of digits to show after the decimal point when formatting numbers. See{@linkutilities /number!NumberSettings.fractionalDigits}.",
|
|
4060
4064
|
"type": "number"
|
|
@@ -4705,11 +4709,11 @@
|
|
|
4705
4709
|
},
|
|
4706
4710
|
"mapViewpoint": {
|
|
4707
4711
|
"$ref": "#/definitions/esri.Viewpoint",
|
|
4708
|
-
"description": "The map Viewpoint at the time of the search. Mobile only.
|
|
4712
|
+
"description": "The map Viewpoint at the time of the search. Mobile only."
|
|
4709
4713
|
},
|
|
4710
4714
|
"maps": {
|
|
4711
4715
|
"$ref": "MapsLike",
|
|
4712
|
-
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
|
|
4716
|
+
"description": "The map(s) to search. Can be used instead of or in addition to \"sources\". This property is required in VertiGIS Studio Mobile."
|
|
4713
4717
|
},
|
|
4714
4718
|
"maxQueryResults": {
|
|
4715
4719
|
"description": "The maximum number of results to query per source, the results per source will still be limited by maxResults.",
|
|
@@ -4729,7 +4733,7 @@
|
|
|
4729
4733
|
},
|
|
4730
4734
|
"searchArea": {
|
|
4731
4735
|
"$ref": "#/definitions/esri.Geometry",
|
|
4732
|
-
"description": "If specified, results are limited to features that intersect the geometry."
|
|
4736
|
+
"description": "If specified, results are limited to features that intersect the geometry. This property is required in VertiGIS Studio Mobile."
|
|
4733
4737
|
},
|
|
4734
4738
|
"searchText": {
|
|
4735
4739
|
"description": "The text to search for. Required.",
|
|
@@ -5783,6 +5787,10 @@
|
|
|
5783
5787
|
"description": "The default format to use when formatting dates. See{@linkutilities /date!DateFormatter.format}.",
|
|
5784
5788
|
"type": "string"
|
|
5785
5789
|
},
|
|
5790
|
+
"defaultValue": {
|
|
5791
|
+
"description": "An optional default value to fallback to when a language resource key does not exist.",
|
|
5792
|
+
"type": "string"
|
|
5793
|
+
},
|
|
5786
5794
|
"fractionalDigits": {
|
|
5787
5795
|
"description": "The default number of digits to show after the decimal point when formatting numbers. See{@linkutilities /number!NumberSettings.fractionalDigits}.",
|
|
5788
5796
|
"type": "number"
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED