@ui5/manifest 1.59.0 → 1.60.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/CHANGELOG.md CHANGED
@@ -2,7 +2,10 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.59.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.60.0...HEAD).
6
+
7
+ <a name="v1.60.0"></a>
8
+ ## [v1.60.0] - 2023-09-22
6
9
 
7
10
  <a name="v1.59.0"></a>
8
11
  ## [v1.59.0] - 2023-08-28
@@ -46,6 +49,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
46
49
  <a name="v1.48.1"></a>
47
50
  ## v1.48.1 - 2022-11-10
48
51
 
52
+ [v1.60.0]: https://github.com/SAP/ui5-manifest/compare/v1.59.0...v1.60.0
49
53
  [v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
50
54
  [v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
51
55
  [v1.56.0]: https://github.com/SAP/ui5-manifest/compare/v1.55.0...v1.56.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.58.0",
2
+ "latest": "1.59.0",
3
+ "1.119": "1.59.0",
3
4
  "1.118": "1.58.0",
4
5
  "1.117": "1.57.0",
5
6
  "1.116": "1.56.0",
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@ui5/manifest","version":"1.59.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","postversion":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
1
+ {"name":"@ui5/manifest","version":"1.60.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","postversion":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
package/schema.json CHANGED
@@ -75,7 +75,8 @@
75
75
  "1.55.0",
76
76
  "1.56.0",
77
77
  "1.57.0",
78
- "1.58.0"
78
+ "1.58.0",
79
+ "1.59.0"
79
80
  ]
80
81
  },
81
82
  "start_url": {
@@ -1969,7 +1970,8 @@
1969
1970
  "1.38.0",
1970
1971
  "1.39.0",
1971
1972
  "1.40.0",
1972
- "1.41.0"
1973
+ "1.41.0",
1974
+ "1.42.0"
1973
1975
  ]
1974
1976
  },
1975
1977
  "designtime": {
@@ -2147,15 +2149,7 @@
2147
2149
  },
2148
2150
  "visible": {
2149
2151
  "description": "[Experimental] Visibility of the footer",
2150
- "oneOf": [
2151
- {
2152
- "type": "boolean",
2153
- "default": true
2154
- },
2155
- {
2156
- "$ref": "#/definitions/simpleBinding"
2157
- }
2158
- ]
2152
+ "$ref": "#/definitions/visibility"
2159
2153
  }
2160
2154
  }
2161
2155
  },
@@ -3039,33 +3033,111 @@
3039
3033
  "semanticObject",
3040
3034
  "action"
3041
3035
  ],
3042
- "semanticObject": {
3043
- "type": "string"
3044
- },
3045
- "action": {
3046
- "type": "string"
3036
+ "properties": {
3037
+ "semanticObject": {
3038
+ "type": "string"
3039
+ },
3040
+ "action": {
3041
+ "type": "string"
3042
+ }
3047
3043
  }
3048
3044
  },
3049
- "ibnActionParameters": {
3050
- "description": "Parameters for an intent based navigation",
3045
+ "hideCardActionParameters": {
3046
+ "description": "Parameters for HideCard action",
3047
+ "type": "object",
3048
+ "additionalProperties": false
3049
+ },
3050
+ "showCardActionParameters": {
3051
+ "description": "Parameters for ShowCard action",
3052
+ "type": "object",
3053
+ "additionalProperties": false,
3054
+ "required": [
3055
+ "manifest"
3056
+ ],
3057
+ "properties": {
3058
+ "manifest": {
3059
+ "description": "An application identifier consisting of semanticObject and action",
3060
+ "oneOf": [
3061
+ {
3062
+ "type": "string"
3063
+ },
3064
+ {
3065
+ "type": "object"
3066
+ }
3067
+ ]
3068
+ },
3069
+ "parameters": {
3070
+ "type": "object"
3071
+ },
3072
+ "data": {
3073
+ "type": "object"
3074
+ },
3075
+ "width": {
3076
+ "type": "string"
3077
+ },
3078
+ "baseUrl": {
3079
+ "type": "string"
3080
+ },
3081
+ "resizable": {
3082
+ "oneOf": [
3083
+ {
3084
+ "type": "boolean"
3085
+ },
3086
+ {
3087
+ "$ref": "#/definitions/simpleBinding"
3088
+ }
3089
+ ]
3090
+ }
3091
+ }
3092
+ },
3093
+ "submitActionParameters": {
3094
+ "description": "Parameters for Submit action",
3095
+ "type": "object",
3096
+ "additionalProperties": false
3097
+ },
3098
+ "navigationActionIBParameters": {
3099
+ "description": "Parameters for Intent-Based Navigation action",
3051
3100
  "type": "object",
3052
3101
  "additionalProperties": false,
3053
3102
  "required": [
3054
3103
  "ibnTarget"
3055
3104
  ],
3056
- "ibnTarget": {
3057
- "description": "An application identifier consisting of semanticObject and action",
3058
- "$ref": "#/definitions/ibnTarget"
3059
- },
3060
- "ibnParam": {
3061
- "description": "Key/value pairs for parameters of the target application",
3062
- "$ref": "#/definitions/parameters"
3063
- },
3064
- "ibnAppSpecificRoute": {
3065
- "description": "An application specific route that is passed to the target application",
3066
- "type": "string"
3105
+ "properties": {
3106
+ "ibnTarget": {
3107
+ "description": "An application identifier consisting of semanticObject and action",
3108
+ "$ref": "#/definitions/ibnTarget"
3109
+ },
3110
+ "ibnParams": {
3111
+ "description": "Key/value pairs for parameters of the target application",
3112
+ "type": "object"
3113
+ },
3114
+ "ibnAppSpecificRoute": {
3115
+ "description": "An application specific route that is passed to the target application",
3116
+ "type": "string"
3117
+ }
3067
3118
  }
3068
3119
  },
3120
+ "navigationActionParameters": {
3121
+ "description": "Parameters for Navigation action",
3122
+ "type": "object",
3123
+ "additionalProperties": false,
3124
+ "required": [
3125
+ "url"
3126
+ ],
3127
+ "properties": {
3128
+ "url": {
3129
+ "type": "string"
3130
+ },
3131
+ "target": {
3132
+ "type": "string"
3133
+ }
3134
+ }
3135
+ },
3136
+ "customActionParameters": {
3137
+ "description": "Parameters for Custom action",
3138
+ "type": "object",
3139
+ "additionalProperties": true
3140
+ },
3069
3141
  "cache": {
3070
3142
  "description": "Cache control settings",
3071
3143
  "type": "object",
@@ -3128,11 +3200,6 @@
3128
3200
  }
3129
3201
  }
3130
3202
  },
3131
- "parameters": {
3132
- "description": "Represents parameters that are passed in the actions",
3133
- "type": "object",
3134
- "additionalProperties": true
3135
- },
3136
3203
  "extension": {
3137
3204
  "description": "[Experimental] Represents attributes, needed to get data via extension",
3138
3205
  "type": "object",
@@ -3167,7 +3234,7 @@
3167
3234
  "type": "string"
3168
3235
  },
3169
3236
  "parameters": {
3170
- "$ref": "#/definitions/parameters"
3237
+ "type": "object"
3171
3238
  }
3172
3239
  }
3173
3240
  }
@@ -3225,7 +3292,7 @@
3225
3292
  },
3226
3293
  "parameters": {
3227
3294
  "description": "Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request",
3228
- "$ref": "#/definitions/parameters"
3295
+ "type": "object"
3229
3296
  },
3230
3297
  "headers": {
3231
3298
  "description": "Represents HTTP headers",
@@ -4601,14 +4668,7 @@
4601
4668
  },
4602
4669
  "visible": {
4603
4670
  "description": "Visibility of the item",
4604
- "oneOf": [
4605
- {
4606
- "type": "boolean"
4607
- },
4608
- {
4609
- "$ref": "#/definitions/simpleBinding"
4610
- }
4611
- ]
4671
+ "$ref": "#/definitions/visibility"
4612
4672
  },
4613
4673
  "title": {
4614
4674
  "description": "Title of the data point. This is just a placeholder to store the title, title will not be rendered on the screen. This is needed to prevent the loss of columnn names while transforming table card to list card.",
@@ -4808,15 +4868,7 @@
4808
4868
  },
4809
4869
  "visible": {
4810
4870
  "description": "Visibility of the side indicator",
4811
- "oneOf": [
4812
- {
4813
- "type": "boolean",
4814
- "default": true
4815
- },
4816
- {
4817
- "$ref": "#/definitions/simpleBinding"
4818
- }
4819
- ]
4871
+ "$ref": "#/definitions/visibility"
4820
4872
  }
4821
4873
  }
4822
4874
  },
@@ -4865,15 +4917,18 @@
4865
4917
  },
4866
4918
  "visible": {
4867
4919
  "description": "Visibility of the main indicator",
4868
- "oneOf": [
4869
- {
4870
- "type": "boolean",
4871
- "default": true
4872
- },
4873
- {
4874
- "$ref": "#/definitions/simpleBinding"
4875
- }
4876
- ]
4920
+ "$ref": "#/definitions/visibility"
4921
+ }
4922
+ }
4923
+ },
4924
+ "closeButton": {
4925
+ "description": "[Experimental] Represents attributes of the Close button",
4926
+ "type": "object",
4927
+ "additionalProperties": false,
4928
+ "properties": {
4929
+ "visible": {
4930
+ "description": "[Experimental] Represents the visibility of the Close button",
4931
+ "$ref": "#/definitions/visibility"
4877
4932
  }
4878
4933
  }
4879
4934
  },
@@ -4941,14 +4996,7 @@
4941
4996
  },
4942
4997
  "visible": {
4943
4998
  "description": "Visibility of the icon",
4944
- "oneOf": [
4945
- {
4946
- "type": "boolean"
4947
- },
4948
- {
4949
- "$ref": "#/definitions/simpleBinding"
4950
- }
4951
- ]
4999
+ "$ref": "#/definitions/visibility"
4952
5000
  }
4953
5001
  }
4954
5002
  },
@@ -4993,22 +5041,14 @@
4993
5041
  "$ref": "#/definitions/service"
4994
5042
  },
4995
5043
  "url": {
4996
- "description": "Represents the URL that will be used as navigation target if no service is provided",
5044
+ "description": "[Deprecated] Represents the URL that will be used as navigation target if no service is provided",
4997
5045
  "type": "string"
4998
5046
  },
4999
5047
  "parameters": {
5000
- "description": "Parameters passed to the navigation action handler",
5001
- "oneOf": [
5002
- {
5003
- "$ref": "#/definitions/parameters"
5004
- },
5005
- {
5006
- "$ref": "#/definitions/ibnActionParameters"
5007
- }
5008
- ]
5048
+ "description": "Parameters passed to the navigation action handler"
5009
5049
  },
5010
5050
  "target": {
5011
- "description": "Specifies where to open the 'url', if it is provided",
5051
+ "description": "[Deprecated] Specifies where to open the 'url', if it is provided",
5012
5052
  "type": "string",
5013
5053
  "oneOf": [
5014
5054
  {
@@ -5019,7 +5059,96 @@
5019
5059
  }
5020
5060
  ]
5021
5061
  }
5022
- }
5062
+ },
5063
+ "allOf": [
5064
+ {
5065
+ "if": {
5066
+ "properties": {
5067
+ "type": {
5068
+ "const": "Custom"
5069
+ }
5070
+ }
5071
+ },
5072
+ "then": {
5073
+ "properties": {
5074
+ "parameters": {
5075
+ "$ref": "#/definitions/customActionParameters"
5076
+ }
5077
+ }
5078
+ }
5079
+ },
5080
+ {
5081
+ "if": {
5082
+ "properties": {
5083
+ "type": {
5084
+ "const": "Navigation"
5085
+ }
5086
+ }
5087
+ },
5088
+ "then": {
5089
+ "properties": {
5090
+ "parameters": {
5091
+ "oneOf": [
5092
+ {
5093
+ "$ref": "#/definitions/navigationActionParameters"
5094
+ },
5095
+ {
5096
+ "$ref": "#/definitions/navigationActionIBParameters"
5097
+ }
5098
+ ]
5099
+ }
5100
+ }
5101
+ }
5102
+ },
5103
+ {
5104
+ "if": {
5105
+ "properties": {
5106
+ "type": {
5107
+ "const": "Submit"
5108
+ }
5109
+ }
5110
+ },
5111
+ "then": {
5112
+ "properties": {
5113
+ "parameters": {
5114
+ "$ref": "#/definitions/submitActionParameters"
5115
+ }
5116
+ }
5117
+ }
5118
+ },
5119
+ {
5120
+ "if": {
5121
+ "properties": {
5122
+ "type": {
5123
+ "const": "ShowCard"
5124
+ }
5125
+ }
5126
+ },
5127
+ "then": {
5128
+ "properties": {
5129
+ "parameters": {
5130
+ "$ref": "#/definitions/showCardActionParameters"
5131
+ }
5132
+ }
5133
+ }
5134
+ },
5135
+ {
5136
+ "if": {
5137
+ "properties": {
5138
+ "type": {
5139
+ "const": "HideCard"
5140
+ }
5141
+ }
5142
+ },
5143
+ "then": {
5144
+ "properties": {
5145
+ "parameters": {
5146
+ "$ref": "#/definitions/hideCardActionParameters"
5147
+ }
5148
+ }
5149
+ }
5150
+ }
5151
+ ]
5023
5152
  },
5024
5153
  "HeaderType.Numeric": {
5025
5154
  "additionalProperties": false,
@@ -5137,17 +5266,13 @@
5137
5266
  "description": "Represents the status of the card",
5138
5267
  "$ref": "#/definitions/status"
5139
5268
  },
5269
+ "closeButton": {
5270
+ "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5271
+ "$ref": "#/definitions/closeButton"
5272
+ },
5140
5273
  "visible": {
5141
5274
  "description": "[Experimental] Visibility of the header",
5142
- "oneOf": [
5143
- {
5144
- "type": "boolean",
5145
- "default": true
5146
- },
5147
- {
5148
- "$ref": "#/definitions/simpleBinding"
5149
- }
5150
- ]
5275
+ "$ref": "#/definitions/visibility"
5151
5276
  }
5152
5277
  }
5153
5278
  },
@@ -5221,17 +5346,13 @@
5221
5346
  "description": "Represents the status of the card",
5222
5347
  "$ref": "#/definitions/status"
5223
5348
  },
5349
+ "closeButton": {
5350
+ "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5351
+ "$ref": "#/definitions/closeButton"
5352
+ },
5224
5353
  "visible": {
5225
5354
  "description": "[Experimental] Visibility of the header",
5226
- "oneOf": [
5227
- {
5228
- "type": "boolean",
5229
- "default": true
5230
- },
5231
- {
5232
- "$ref": "#/definitions/simpleBinding"
5233
- }
5234
- ]
5355
+ "$ref": "#/definitions/visibility"
5235
5356
  }
5236
5357
  }
5237
5358
  },
@@ -5587,15 +5708,7 @@
5587
5708
  "properties": {
5588
5709
  "visible": {
5589
5710
  "description": "Represents the visibility state of the title",
5590
- "oneOf": [
5591
- {
5592
- "type": "boolean",
5593
- "default": true
5594
- },
5595
- {
5596
- "$ref": "#/definitions/simpleBinding"
5597
- }
5598
- ]
5711
+ "$ref": "#/definitions/visibility"
5599
5712
  },
5600
5713
  "text": {
5601
5714
  "description": "Represents a title text",
@@ -5843,14 +5956,7 @@
5843
5956
  },
5844
5957
  "visible": {
5845
5958
  "description": "Determines whether the item is visible",
5846
- "oneOf": [
5847
- {
5848
- "type": "boolean"
5849
- },
5850
- {
5851
- "$ref": "#/definitions/simpleBinding"
5852
- }
5853
- ]
5959
+ "$ref": "#/definitions/visibility"
5854
5960
  }
5855
5961
  }
5856
5962
  },
@@ -6019,14 +6125,7 @@
6019
6125
  },
6020
6126
  "visible": {
6021
6127
  "description": "Determines whether the filter is visible",
6022
- "oneOf": [
6023
- {
6024
- "type": "boolean"
6025
- },
6026
- {
6027
- "$ref": "#/definitions/simpleBinding"
6028
- }
6029
- ]
6128
+ "$ref": "#/definitions/visibility"
6030
6129
  }
6031
6130
  }
6032
6131
  },
@@ -6117,14 +6216,7 @@
6117
6216
  },
6118
6217
  "visible": {
6119
6218
  "description": "Determines whether the filter is visible",
6120
- "oneOf": [
6121
- {
6122
- "type": "boolean"
6123
- },
6124
- {
6125
- "$ref": "#/definitions/simpleBinding"
6126
- }
6127
- ]
6219
+ "$ref": "#/definitions/visibility"
6128
6220
  }
6129
6221
  }
6130
6222
  },
@@ -6179,14 +6271,7 @@
6179
6271
  },
6180
6272
  "visible": {
6181
6273
  "description": "Determines whether the filter is visible",
6182
- "oneOf": [
6183
- {
6184
- "type": "boolean"
6185
- },
6186
- {
6187
- "$ref": "#/definitions/simpleBinding"
6188
- }
6189
- ]
6274
+ "$ref": "#/definitions/visibility"
6190
6275
  }
6191
6276
  }
6192
6277
  },
@@ -701,7 +701,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
701
701
  | "1.55.0"
702
702
  | "1.56.0"
703
703
  | "1.57.0"
704
- | "1.58.0";
704
+ | "1.58.0"
705
+ | "1.59.0";
705
706
  /**
706
707
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
707
708
  */