@ui5/manifest 1.76.0 → 1.77.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
@@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
5
5
  <a name="Unreleased"></a>
6
6
  ## [Unreleased]
7
7
 
8
+ <a name="v1.77.0"></a>
9
+ ## [v1.77.0] - 2025-08-04 (UI5 1.139)
10
+
11
+ ### Added
12
+ - sap.card: Added new property "header/subtitle"
13
+ - sap.card: Added new property "overflow/subtitle" in an object content item of type "Image"
14
+
15
+ ### Changed
16
+ - sap.card: Deprecated property "header/subTitle" (with capital T)
17
+ - sap.card: Deprecated property "overflow/subTitle" (with capital T) in an object content item of type "Image"
18
+
8
19
  <a name="v1.76.0"></a>
9
20
  ## [v1.76.0] - 2025-07-02 (UI5 1.138)
10
21
 
@@ -149,7 +160,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
149
160
  <a name="v1.48.1"></a>
150
161
  ## v1.48.1 - 2022-11-10
151
162
 
152
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...HEAD
163
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...HEAD
164
+ [v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
153
165
  [v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
154
166
  [v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
155
167
  [v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.76.0",
2
+ "latest": "1.77.0",
3
+ "1.139": "1.77.0",
3
4
  "1.138": "1.76.0",
4
5
  "1.137": "1.75.1",
5
6
  "1.136": "1.73.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.76.0",
3
+ "version": "1.77.0",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -92,7 +92,8 @@
92
92
  "1.72.0",
93
93
  "1.73.1",
94
94
  "1.75.1",
95
- "1.76.0"
95
+ "1.76.0",
96
+ "1.77.0"
96
97
  ]
97
98
  },
98
99
  "start_url": {
@@ -2041,7 +2042,8 @@
2041
2042
  "1.52.0",
2042
2043
  "1.53.0",
2043
2044
  "1.54.0",
2044
- "1.55.0"
2045
+ "1.55.0",
2046
+ "1.56.0"
2045
2047
  ]
2046
2048
  },
2047
2049
  "designtime": {
@@ -4561,10 +4563,15 @@
4561
4563
  "description": "The title",
4562
4564
  "type": "string"
4563
4565
  },
4564
- "subTitle": {
4565
- "description": "The subTitle",
4566
+ "subtitle": {
4567
+ "description": "The subtitle",
4566
4568
  "type": "string"
4567
4569
  },
4570
+ "subTitle": {
4571
+ "description": "The subtitle",
4572
+ "type": "string",
4573
+ "deprecated": true
4574
+ },
4568
4575
  "verticalPosition": {
4569
4576
  "description": "The vertical alignment of the texts",
4570
4577
  "type": "string"
@@ -5675,7 +5682,7 @@
5675
5682
  ],
5676
5683
  "default": 3
5677
5684
  },
5678
- "subTitle": {
5685
+ "subtitle": {
5679
5686
  "description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
5680
5687
  "$ref": "#/$defs/i18n_key_string",
5681
5688
  "i18n": {
@@ -5683,7 +5690,16 @@
5683
5690
  "comment": "Header subtitle"
5684
5691
  }
5685
5692
  },
5686
- "subTitleMaxLines": {
5693
+ "subTitle": {
5694
+ "description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
5695
+ "$ref": "#/$defs/i18n_key_string",
5696
+ "i18n": {
5697
+ "type": "XTIT",
5698
+ "comment": "Header subtitle"
5699
+ },
5700
+ "deprecated": true
5701
+ },
5702
+ "subtitleMaxLines": {
5687
5703
  "description": "[Experimental] Limit the number of lines for the sub title",
5688
5704
  "oneOf": [
5689
5705
  {
@@ -5695,6 +5711,19 @@
5695
5711
  ],
5696
5712
  "default": 2
5697
5713
  },
5714
+ "subTitleMaxLines": {
5715
+ "description": "[Deprecated] Limit the number of lines for the sub title",
5716
+ "oneOf": [
5717
+ {
5718
+ "type": "number"
5719
+ },
5720
+ {
5721
+ "$ref": "#/$defs/simpleBinding"
5722
+ }
5723
+ ],
5724
+ "deprecated": true,
5725
+ "default": 2
5726
+ },
5698
5727
  "actions": {
5699
5728
  "description": "Represents a description of the actions that can be applied on a part of a card",
5700
5729
  "type": "array",
@@ -5811,6 +5840,15 @@
5811
5840
  "default": 3
5812
5841
  },
5813
5842
  "subTitle": {
5843
+ "description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
5844
+ "$ref": "#/$defs/i18n_key_string",
5845
+ "deprecated": true,
5846
+ "i18n": {
5847
+ "type": "XTIT",
5848
+ "comment": "Header subtitle"
5849
+ }
5850
+ },
5851
+ "subtitle": {
5814
5852
  "description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
5815
5853
  "$ref": "#/$defs/i18n_key_string",
5816
5854
  "i18n": {
@@ -5819,6 +5857,19 @@
5819
5857
  }
5820
5858
  },
5821
5859
  "subTitleMaxLines": {
5860
+ "description": "[Deprecated] Limit the number of lines for the sub title",
5861
+ "oneOf": [
5862
+ {
5863
+ "type": "number"
5864
+ },
5865
+ {
5866
+ "$ref": "#/$defs/simpleBinding"
5867
+ }
5868
+ ],
5869
+ "deprecated": true,
5870
+ "default": 2
5871
+ },
5872
+ "subtitleMaxLines": {
5822
5873
  "description": "[Experimental] Limit the number of lines for the sub title",
5823
5874
  "oneOf": [
5824
5875
  {
@@ -744,7 +744,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
744
744
  | "1.72.0"
745
745
  | "1.73.1"
746
746
  | "1.75.1"
747
- | "1.76.0";
747
+ | "1.76.0"
748
+ | "1.77.0";
748
749
  /**
749
750
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
750
751
  */