@vertigis/viewer-spec 47.2.0 → 47.4.1
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 +2 -0
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/FeatureInfoModelProperties.d.ts +15 -0
- package/messaging/registry/edit.d.ts +87 -23
- package/messaging/registry/edit.js +1 -1
- package/messaging/registry/results.d.ts +10 -6
- package/messaging/registry/ui.d.ts +0 -2
- package/messaging/schema/common-action.schema.json +118 -26
- package/messaging/schema/common-event.schema.json +3 -3
- package/messaging/schema/mobile-action.schema.json +109 -26
- package/messaging/schema/mobile-event.schema.json +3 -3
- package/messaging/schema/web-action.schema.json +213 -30
- package/messaging/schema/web-event.schema.json +551 -11
- package/package.json +13 -13
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1193,7 +1193,7 @@
|
|
|
1193
1193
|
},
|
|
1194
1194
|
"CreateFeatureArgs": {
|
|
1195
1195
|
"additionalProperties": false,
|
|
1196
|
-
"description": "Arguments for the \"edit.create-feature\" operation.
|
|
1196
|
+
"description": "Arguments for the \"edit.create-feature\" operation. A valid feature layer is required. The geometry is required for non-tabular features. Web only.",
|
|
1197
1197
|
"properties": {
|
|
1198
1198
|
"featureAttributes": {
|
|
1199
1199
|
"description": "A collection of attributes to apply to the new feature."
|
|
@@ -1229,6 +1229,10 @@
|
|
|
1229
1229
|
"templateName": {
|
|
1230
1230
|
"description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
|
|
1231
1231
|
"type": "string"
|
|
1232
|
+
},
|
|
1233
|
+
"typeId": {
|
|
1234
|
+
"description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
|
|
1235
|
+
"type": "string"
|
|
1232
1236
|
}
|
|
1233
1237
|
},
|
|
1234
1238
|
"type": "object"
|
|
@@ -1371,13 +1375,6 @@
|
|
|
1371
1375
|
"additionalProperties": false,
|
|
1372
1376
|
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
1373
1377
|
"properties": {
|
|
1374
|
-
"attributes": {
|
|
1375
|
-
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1376
|
-
},
|
|
1377
|
-
"editAttachments": {
|
|
1378
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
1379
|
-
"type": "boolean"
|
|
1380
|
-
},
|
|
1381
1378
|
"editAttributes": {
|
|
1382
1379
|
"description": "Whether to allow editing of feature attributes.",
|
|
1383
1380
|
"type": "boolean"
|
|
@@ -1393,14 +1390,14 @@
|
|
|
1393
1390
|
"featureAttributes": {
|
|
1394
1391
|
"description": "A collection of attributes to apply to the new feature."
|
|
1395
1392
|
},
|
|
1393
|
+
"formUITarget": {
|
|
1394
|
+
"$ref": "#/definitions/HasUITarget",
|
|
1395
|
+
"description": "Arguments for the display of the attribute editing form."
|
|
1396
|
+
},
|
|
1396
1397
|
"geometry": {
|
|
1397
1398
|
"$ref": "#/definitions/GeometryLike",
|
|
1398
1399
|
"description": "The geometry to use for the command/operation."
|
|
1399
1400
|
},
|
|
1400
|
-
"icon": {
|
|
1401
|
-
"description": "Optional icon that may be used by the transient UI container.",
|
|
1402
|
-
"type": "string"
|
|
1403
|
-
},
|
|
1404
1401
|
"layers": {
|
|
1405
1402
|
"$ref": "#/definitions/LayersLike",
|
|
1406
1403
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -1417,10 +1414,6 @@
|
|
|
1417
1414
|
],
|
|
1418
1415
|
"type": "string"
|
|
1419
1416
|
},
|
|
1420
|
-
"parent": {
|
|
1421
|
-
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1422
|
-
"type": "string"
|
|
1423
|
-
},
|
|
1424
1417
|
"showNotifications": {
|
|
1425
1418
|
"description": "Whether to show UI notifications.",
|
|
1426
1419
|
"type": "boolean"
|
|
@@ -1432,6 +1425,14 @@
|
|
|
1432
1425
|
"templateName": {
|
|
1433
1426
|
"description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
|
|
1434
1427
|
"type": "string"
|
|
1428
|
+
},
|
|
1429
|
+
"templateUITarget": {
|
|
1430
|
+
"$ref": "#/definitions/HasUITarget",
|
|
1431
|
+
"description": "Arguments for the display of the template picker."
|
|
1432
|
+
},
|
|
1433
|
+
"typeId": {
|
|
1434
|
+
"description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
|
|
1435
|
+
"type": "string"
|
|
1435
1436
|
}
|
|
1436
1437
|
},
|
|
1437
1438
|
"type": "object"
|
|
@@ -1478,8 +1479,11 @@
|
|
|
1478
1479
|
"additionalProperties": false,
|
|
1479
1480
|
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
1480
1481
|
"properties": {
|
|
1482
|
+
"attributes": {
|
|
1483
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1484
|
+
},
|
|
1481
1485
|
"editAttachments": {
|
|
1482
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
1486
|
+
"description": "Whether to allow editing of feature attachments. Web only.",
|
|
1483
1487
|
"type": "boolean"
|
|
1484
1488
|
},
|
|
1485
1489
|
"editAttributes": {
|
|
@@ -1505,10 +1509,18 @@
|
|
|
1505
1509
|
"$ref": "#/definitions/GeometryLike",
|
|
1506
1510
|
"description": "The geometry to use for the command/operation."
|
|
1507
1511
|
},
|
|
1512
|
+
"icon": {
|
|
1513
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1514
|
+
"type": "string"
|
|
1515
|
+
},
|
|
1508
1516
|
"maps": {
|
|
1509
1517
|
"$ref": "MapsLike",
|
|
1510
1518
|
"description": "Map(s) to use for the command/operation."
|
|
1511
1519
|
},
|
|
1520
|
+
"parent": {
|
|
1521
|
+
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1512
1524
|
"showNotifications": {
|
|
1513
1525
|
"description": "Whether to show UI notifications.",
|
|
1514
1526
|
"type": "boolean"
|
|
@@ -4278,7 +4290,7 @@
|
|
|
4278
4290
|
"description": "The result component to update, referenced by results model or its ID."
|
|
4279
4291
|
},
|
|
4280
4292
|
"selector": {
|
|
4281
|
-
"description": "Sets the
|
|
4293
|
+
"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`.",
|
|
4282
4294
|
"type": "string"
|
|
4283
4295
|
}
|
|
4284
4296
|
},
|
|
@@ -5104,6 +5116,27 @@
|
|
|
5104
5116
|
],
|
|
5105
5117
|
"type": "object"
|
|
5106
5118
|
},
|
|
5119
|
+
"UpdateSessionArgs": {
|
|
5120
|
+
"additionalProperties": false,
|
|
5121
|
+
"description": "Used to update an in-progress interactive feature editing session with new attributes, attachments or geometry. Web only.",
|
|
5122
|
+
"properties": {
|
|
5123
|
+
"attachments": {
|
|
5124
|
+
"description": "A collection of attachments that apply or are to be applied to the currently edited feature.",
|
|
5125
|
+
"items": {
|
|
5126
|
+
"$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
|
|
5127
|
+
},
|
|
5128
|
+
"type": "array"
|
|
5129
|
+
},
|
|
5130
|
+
"attributes": {
|
|
5131
|
+
"description": "A collection of attributes that apply or are to be applied to the currently edited feature."
|
|
5132
|
+
},
|
|
5133
|
+
"geometry": {
|
|
5134
|
+
"$ref": "#/definitions/GeometryLike",
|
|
5135
|
+
"description": "The geometry to use for the command/operation."
|
|
5136
|
+
}
|
|
5137
|
+
},
|
|
5138
|
+
"type": "object"
|
|
5139
|
+
},
|
|
5107
5140
|
"Vector2D": {
|
|
5108
5141
|
"additionalProperties": false,
|
|
5109
5142
|
"description": "A representation of a 2D vector or point.",
|
|
@@ -5883,29 +5916,66 @@
|
|
|
5883
5916
|
]
|
|
5884
5917
|
},
|
|
5885
5918
|
"edit.add-feature": {
|
|
5886
|
-
"description": "Adds a feature to a particular layer. `
|
|
5919
|
+
"description": "Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
5887
5920
|
"enum": [
|
|
5888
5921
|
"edit.add-feature"
|
|
5889
5922
|
]
|
|
5890
5923
|
},
|
|
5891
5924
|
"edit.add-feature:input": {
|
|
5892
5925
|
"anyOf": [
|
|
5926
|
+
{
|
|
5927
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5928
|
+
},
|
|
5893
5929
|
{
|
|
5894
5930
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5895
5931
|
},
|
|
5896
5932
|
{
|
|
5897
|
-
"$ref": "
|
|
5933
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5934
|
+
},
|
|
5935
|
+
{
|
|
5936
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5898
5937
|
},
|
|
5899
5938
|
{
|
|
5900
5939
|
"items": {
|
|
5901
|
-
"
|
|
5940
|
+
"anyOf": [
|
|
5941
|
+
{
|
|
5942
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5943
|
+
},
|
|
5944
|
+
{
|
|
5945
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5946
|
+
}
|
|
5947
|
+
]
|
|
5902
5948
|
},
|
|
5903
5949
|
"type": "array"
|
|
5950
|
+
},
|
|
5951
|
+
{
|
|
5952
|
+
"$ref": "#/definitions/Results"
|
|
5953
|
+
},
|
|
5954
|
+
{
|
|
5955
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5904
5956
|
}
|
|
5905
5957
|
]
|
|
5906
5958
|
},
|
|
5959
|
+
"edit.cancel": {
|
|
5960
|
+
"description": "Cancels active editing sessions and discards any changes. If a feature is supplied only the sessions using that feature will be cancelled.",
|
|
5961
|
+
"enum": [
|
|
5962
|
+
"edit.cancel"
|
|
5963
|
+
]
|
|
5964
|
+
},
|
|
5965
|
+
"edit.cancel:input": {
|
|
5966
|
+
"$ref": "#/definitions/Features"
|
|
5967
|
+
},
|
|
5968
|
+
"edit.complete": {
|
|
5969
|
+
"description": "Completes active editing sessions and submits any changes made to the attributes, attachments or geometry to the feature source. If a feature is supplied, only sessions using that feature will close.",
|
|
5970
|
+
"enum": [
|
|
5971
|
+
"edit.complete"
|
|
5972
|
+
]
|
|
5973
|
+
},
|
|
5974
|
+
"edit.complete:input": {
|
|
5975
|
+
"$ref": "#/definitions/Features"
|
|
5976
|
+
},
|
|
5907
5977
|
"edit.create-feature": {
|
|
5908
|
-
"description": "Creates a new
|
|
5978
|
+
"description": "Creates a new feature for the supplied feature source from the supplied configuration. This operation does not add the feature to the source, but returns the feature for further processing.",
|
|
5909
5979
|
"enum": [
|
|
5910
5980
|
"edit.create-feature"
|
|
5911
5981
|
]
|
|
@@ -5933,22 +6003,41 @@
|
|
|
5933
6003
|
},
|
|
5934
6004
|
"edit.delete-features:input": {
|
|
5935
6005
|
"anyOf": [
|
|
6006
|
+
{
|
|
6007
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6008
|
+
},
|
|
5936
6009
|
{
|
|
5937
6010
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5938
6011
|
},
|
|
5939
6012
|
{
|
|
5940
|
-
"$ref": "
|
|
6013
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6014
|
+
},
|
|
6015
|
+
{
|
|
6016
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5941
6017
|
},
|
|
5942
6018
|
{
|
|
5943
6019
|
"items": {
|
|
5944
|
-
"
|
|
6020
|
+
"anyOf": [
|
|
6021
|
+
{
|
|
6022
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6023
|
+
},
|
|
6024
|
+
{
|
|
6025
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6026
|
+
}
|
|
6027
|
+
]
|
|
5945
6028
|
},
|
|
5946
6029
|
"type": "array"
|
|
6030
|
+
},
|
|
6031
|
+
{
|
|
6032
|
+
"$ref": "#/definitions/Results"
|
|
6033
|
+
},
|
|
6034
|
+
{
|
|
6035
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5947
6036
|
}
|
|
5948
6037
|
]
|
|
5949
6038
|
},
|
|
5950
6039
|
"edit.display-add-feature": {
|
|
5951
|
-
"description": "
|
|
6040
|
+
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
5952
6041
|
"enum": [
|
|
5953
6042
|
"edit.display-add-feature"
|
|
5954
6043
|
]
|
|
@@ -5964,7 +6053,7 @@
|
|
|
5964
6053
|
]
|
|
5965
6054
|
},
|
|
5966
6055
|
"edit.display-update-feature": {
|
|
5967
|
-
"description": "
|
|
6056
|
+
"description": "Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
5968
6057
|
"enum": [
|
|
5969
6058
|
"edit.display-update-feature"
|
|
5970
6059
|
]
|
|
@@ -5980,27 +6069,55 @@
|
|
|
5980
6069
|
]
|
|
5981
6070
|
},
|
|
5982
6071
|
"edit.update-feature": {
|
|
5983
|
-
"description": "Updates a feature. `
|
|
6072
|
+
"description": "Updates a layer feature or features. Edits to the geometry and attributes of the supplied features will be committed to their respective feature sources. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
5984
6073
|
"enum": [
|
|
5985
6074
|
"edit.update-feature"
|
|
5986
6075
|
]
|
|
5987
6076
|
},
|
|
5988
6077
|
"edit.update-feature:input": {
|
|
5989
6078
|
"anyOf": [
|
|
6079
|
+
{
|
|
6080
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6081
|
+
},
|
|
5990
6082
|
{
|
|
5991
6083
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5992
6084
|
},
|
|
5993
6085
|
{
|
|
5994
|
-
"$ref": "
|
|
6086
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6087
|
+
},
|
|
6088
|
+
{
|
|
6089
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5995
6090
|
},
|
|
5996
6091
|
{
|
|
5997
6092
|
"items": {
|
|
5998
|
-
"
|
|
6093
|
+
"anyOf": [
|
|
6094
|
+
{
|
|
6095
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6096
|
+
},
|
|
6097
|
+
{
|
|
6098
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6099
|
+
}
|
|
6100
|
+
]
|
|
5999
6101
|
},
|
|
6000
6102
|
"type": "array"
|
|
6103
|
+
},
|
|
6104
|
+
{
|
|
6105
|
+
"$ref": "#/definitions/Results"
|
|
6106
|
+
},
|
|
6107
|
+
{
|
|
6108
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
6001
6109
|
}
|
|
6002
6110
|
]
|
|
6003
6111
|
},
|
|
6112
|
+
"edit.update-session": {
|
|
6113
|
+
"description": "Updates an in-progress interactive feature editing session with new attributes, attachments, or geometry. These will be immediately applied to the current session, if one is active.",
|
|
6114
|
+
"enum": [
|
|
6115
|
+
"edit.update-session"
|
|
6116
|
+
]
|
|
6117
|
+
},
|
|
6118
|
+
"edit.update-session:input": {
|
|
6119
|
+
"$ref": "#/definitions/UpdateSessionArgs"
|
|
6120
|
+
},
|
|
6004
6121
|
"esri.Extent": {
|
|
6005
6122
|
"$ref": "esri/geometry/Extent"
|
|
6006
6123
|
},
|
|
@@ -16625,7 +16742,7 @@
|
|
|
16625
16742
|
"$ref": "#/definitions/ShowResultsArgs"
|
|
16626
16743
|
},
|
|
16627
16744
|
"results.set-display-components": {
|
|
16628
|
-
"description": "Sets the
|
|
16745
|
+
"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.",
|
|
16629
16746
|
"enum": [
|
|
16630
16747
|
"results.set-display-components"
|
|
16631
16748
|
]
|
|
@@ -17216,6 +17333,12 @@
|
|
|
17216
17333
|
"ui.get-visual-state:output": {
|
|
17217
17334
|
"type": "string"
|
|
17218
17335
|
},
|
|
17336
|
+
"ui.hide-notification": {
|
|
17337
|
+
"description": "Hides a notification previously shown to the user.",
|
|
17338
|
+
"enum": [
|
|
17339
|
+
"ui.hide-notification"
|
|
17340
|
+
]
|
|
17341
|
+
},
|
|
17219
17342
|
"ui.narrate": {
|
|
17220
17343
|
"description": "Forces assistive technology (screen readers) to narrate a translatable message to the end user.",
|
|
17221
17344
|
"enum": [
|
|
@@ -17543,6 +17666,38 @@
|
|
|
17543
17666
|
],
|
|
17544
17667
|
"type": "object"
|
|
17545
17668
|
},
|
|
17669
|
+
{
|
|
17670
|
+
"additionalProperties": false,
|
|
17671
|
+
"properties": {
|
|
17672
|
+
"arguments": {
|
|
17673
|
+
"$ref": "#/definitions/edit.cancel:input"
|
|
17674
|
+
},
|
|
17675
|
+
"name": {
|
|
17676
|
+
"$ref": "#/definitions/edit.cancel"
|
|
17677
|
+
}
|
|
17678
|
+
},
|
|
17679
|
+
"required": [
|
|
17680
|
+
"name",
|
|
17681
|
+
"arguments"
|
|
17682
|
+
],
|
|
17683
|
+
"type": "object"
|
|
17684
|
+
},
|
|
17685
|
+
{
|
|
17686
|
+
"additionalProperties": false,
|
|
17687
|
+
"properties": {
|
|
17688
|
+
"arguments": {
|
|
17689
|
+
"$ref": "#/definitions/edit.complete:input"
|
|
17690
|
+
},
|
|
17691
|
+
"name": {
|
|
17692
|
+
"$ref": "#/definitions/edit.complete"
|
|
17693
|
+
}
|
|
17694
|
+
},
|
|
17695
|
+
"required": [
|
|
17696
|
+
"name",
|
|
17697
|
+
"arguments"
|
|
17698
|
+
],
|
|
17699
|
+
"type": "object"
|
|
17700
|
+
},
|
|
17546
17701
|
{
|
|
17547
17702
|
"additionalProperties": false,
|
|
17548
17703
|
"properties": {
|
|
@@ -17623,6 +17778,22 @@
|
|
|
17623
17778
|
],
|
|
17624
17779
|
"type": "object"
|
|
17625
17780
|
},
|
|
17781
|
+
{
|
|
17782
|
+
"additionalProperties": false,
|
|
17783
|
+
"properties": {
|
|
17784
|
+
"arguments": {
|
|
17785
|
+
"$ref": "#/definitions/edit.update-session:input"
|
|
17786
|
+
},
|
|
17787
|
+
"name": {
|
|
17788
|
+
"$ref": "#/definitions/edit.update-session"
|
|
17789
|
+
}
|
|
17790
|
+
},
|
|
17791
|
+
"required": [
|
|
17792
|
+
"name",
|
|
17793
|
+
"arguments"
|
|
17794
|
+
],
|
|
17795
|
+
"type": "object"
|
|
17796
|
+
},
|
|
17626
17797
|
{
|
|
17627
17798
|
"additionalProperties": false,
|
|
17628
17799
|
"properties": {
|
|
@@ -19396,6 +19567,12 @@
|
|
|
19396
19567
|
{
|
|
19397
19568
|
"$ref": "#/definitions/edit.add-feature"
|
|
19398
19569
|
},
|
|
19570
|
+
{
|
|
19571
|
+
"$ref": "#/definitions/edit.cancel"
|
|
19572
|
+
},
|
|
19573
|
+
{
|
|
19574
|
+
"$ref": "#/definitions/edit.complete"
|
|
19575
|
+
},
|
|
19399
19576
|
{
|
|
19400
19577
|
"$ref": "#/definitions/edit.delete-attachment"
|
|
19401
19578
|
},
|
|
@@ -19411,6 +19588,9 @@
|
|
|
19411
19588
|
{
|
|
19412
19589
|
"$ref": "#/definitions/edit.update-feature"
|
|
19413
19590
|
},
|
|
19591
|
+
{
|
|
19592
|
+
"$ref": "#/definitions/edit.update-session"
|
|
19593
|
+
},
|
|
19414
19594
|
{
|
|
19415
19595
|
"$ref": "#/definitions/geocode.batch-geocode"
|
|
19416
19596
|
},
|
|
@@ -19735,6 +19915,9 @@
|
|
|
19735
19915
|
{
|
|
19736
19916
|
"$ref": "#/definitions/ui.focus"
|
|
19737
19917
|
},
|
|
19918
|
+
{
|
|
19919
|
+
"$ref": "#/definitions/ui.hide-notification"
|
|
19920
|
+
},
|
|
19738
19921
|
{
|
|
19739
19922
|
"$ref": "#/definitions/ui.narrate"
|
|
19740
19923
|
},
|