@ui5/manifest 1.83.1 → 1.84.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
@@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
4
4
 
5
5
  <a name="Unreleased"></a>
6
6
 
7
+ <a name="v1.84.0"></a>
8
+ ## [v1.84.0] - 2026-03-11 (UI5 1.146)
9
+
10
+ ### Added
11
+ - sap.card: New RadioButtonGroup field in Object cards
12
+
7
13
  <a name="v1.83.1"></a>
8
14
  ## [v1.83.1] - 2026-03-03 (UI5 1.145)
9
15
 
@@ -221,7 +227,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
221
227
  <a name="v1.48.1"></a>
222
228
  ## v1.48.1 - 2022-11-10
223
229
 
224
- [Unreleased]: https://github.com/UI5/manifest/compare/v1.83.0...HEAD
230
+ [Unreleased]: https://github.com/UI5/manifest/compare/v1.84.0...HEAD
231
+ [v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
232
+ [v1.83.1]: https://github.com/UI5/manifest/compare/v1.83.0...v1.83.1
225
233
  [v1.83.0]: https://github.com/UI5/manifest/compare/v1.82.0...v1.83.0
226
234
  [v1.82.0]: https://github.com/UI5/manifest/compare/v1.81.1...v1.82.0
227
235
  [v1.81.1]: https://github.com/UI5/manifest/compare/v1.81.0...v1.81.1
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.83.1",
2
+ "latest": "1.84.0",
3
+ "1.146": "1.84.0",
3
4
  "1.145": "1.83.1",
4
5
  "1.144": "1.82.0",
5
6
  "1.143": "1.81.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.83.1",
3
+ "version": "1.84.0",
4
4
  "description": "This project contains a JSON schema for the UI5 manifest",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -102,7 +102,8 @@
102
102
  "1.81.1",
103
103
  "1.82.0",
104
104
  "1.83.0",
105
- "1.83.1"
105
+ "1.83.1",
106
+ "1.84.0"
106
107
  ]
107
108
  },
108
109
  "start_url": {
@@ -2070,7 +2071,8 @@
2070
2071
  "1.57.0",
2071
2072
  "1.58.0",
2072
2073
  "1.59.0",
2073
- "1.60.0"
2074
+ "1.60.0",
2075
+ "1.61.0"
2074
2076
  ]
2075
2077
  },
2076
2078
  "designtime": {
@@ -4186,6 +4188,36 @@
4186
4188
  }
4187
4189
  }
4188
4190
  },
4191
+ "ContentType.Object.Item.RadioButtonItemTemplate": {
4192
+ "description": "Template for radio button group items",
4193
+ "type": "object",
4194
+ "additionalProperties": false,
4195
+ "required": [
4196
+ "enabled"
4197
+ ],
4198
+ "properties": {
4199
+ "title": {
4200
+ "description": "The title of the radio button option",
4201
+ "type": "string"
4202
+ },
4203
+ "key": {
4204
+ "description": "The unique key of the radio button option",
4205
+ "type": "string"
4206
+ },
4207
+ "enabled": {
4208
+ "description": "Whether the radio button option is enabled",
4209
+ "oneOf": [
4210
+ {
4211
+ "type": "boolean",
4212
+ "default": true
4213
+ },
4214
+ {
4215
+ "$ref": "#/$defs/simpleBinding"
4216
+ }
4217
+ ]
4218
+ }
4219
+ }
4220
+ },
4189
4221
  "ContentType.Object.Item.ComboBoxItemTemplate": {
4190
4222
  "description": "Template for combo box items",
4191
4223
  "type": "object",
@@ -4357,6 +4389,7 @@
4357
4389
  "Duration",
4358
4390
  "DateRange",
4359
4391
  "RatingIndicator",
4392
+ "RadioButtonGroup",
4360
4393
  "phone",
4361
4394
  "email",
4362
4395
  "link",
@@ -4505,9 +4538,20 @@
4505
4538
  "type": "string"
4506
4539
  },
4507
4540
  "selectedKey": {
4508
- "description": "Defines the initially selected key from the given options for combo box",
4541
+ "description": "Defines the initially selected key from the given options for combo box or radio button group",
4509
4542
  "type": "string"
4510
4543
  },
4544
+ "selectedIndex": {
4545
+ "description": "Defines the initially selected index for radio button group",
4546
+ "oneOf": [
4547
+ {
4548
+ "type": "number"
4549
+ },
4550
+ {
4551
+ "$ref": "#/$defs/simpleBinding"
4552
+ }
4553
+ ]
4554
+ },
4511
4555
  "placeholder": {
4512
4556
  "description": "Placeholder for items of type 'Input', 'TextArea', 'ComboBox', 'Duration' and 'DateRange'",
4513
4557
  "type": "string"
@@ -4518,14 +4562,21 @@
4518
4562
  },
4519
4563
  "item": {
4520
4564
  "type": "object",
4521
- "description": "Binding info for combo box items",
4565
+ "description": "Binding info for combo box or radio button group items",
4522
4566
  "required": [
4523
4567
  "template"
4524
4568
  ],
4525
4569
  "additionalProperties": false,
4526
4570
  "properties": {
4527
4571
  "template": {
4528
- "$ref": "#/$defs/ContentType.Object.Item.ComboBoxItemTemplate"
4572
+ "oneOf": [
4573
+ {
4574
+ "$ref": "#/$defs/ContentType.Object.Item.ComboBoxItemTemplate"
4575
+ },
4576
+ {
4577
+ "$ref": "#/$defs/ContentType.Object.Item.RadioButtonItemTemplate"
4578
+ }
4579
+ ]
4529
4580
  },
4530
4581
  "path": {
4531
4582
  "description": "Defines the path to the structure holding the data about the items",
@@ -760,7 +760,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
760
760
  | "1.81.1"
761
761
  | "1.82.0"
762
762
  | "1.83.0"
763
- | "1.83.1";
763
+ | "1.83.1"
764
+ | "1.84.0";
764
765
  /**
765
766
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
766
767
  */