@ui5/manifest 1.54.0 → 1.55.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.54.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.55.0...HEAD).
6
+
7
+ <a name="v1.55.0"></a>
8
+ ## [v1.55.0] - 2023-06-01
6
9
 
7
10
  <a name="v1.54.0"></a>
8
11
  ## [v1.54.0] - 2023-05-05
@@ -34,6 +37,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
34
37
  <a name="v1.48.1"></a>
35
38
  ## v1.48.1 - 2022-11-10
36
39
 
40
+ [v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
37
41
  [v1.54.0]: https://github.com/SAP/ui5-manifest/compare/v1.53.1...v1.54.0
38
42
  [v1.53.1]: https://github.com/SAP/ui5-manifest/compare/v1.53.0...v1.53.1
39
43
  [v1.53.0]: https://github.com/SAP/ui5-manifest/compare/v1.52.1...v1.53.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.54.0",
2
+ "latest": "1.55.0",
3
+ "1.115": "1.55.0",
3
4
  "1.113": "1.53.0",
4
5
  "1.112": "1.52.0",
5
6
  "1.111": "1.51.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.54.0",
3
+ "version": "1.55.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
@@ -71,7 +71,8 @@
71
71
  "1.51.0",
72
72
  "1.52.0",
73
73
  "1.53.0",
74
- "1.54.0"
74
+ "1.54.0",
75
+ "1.55.0"
75
76
  ]
76
77
  },
77
78
  "start_url": {
@@ -1231,7 +1232,8 @@
1231
1232
  "1.5.0",
1232
1233
  "1.6.0",
1233
1234
  "1.7.0",
1234
- "1.8.0"
1235
+ "1.8.0",
1236
+ "1.9.0"
1235
1237
  ]
1236
1238
  },
1237
1239
  "globalFilterModel": {
@@ -1936,7 +1938,8 @@
1936
1938
  "1.36.0",
1937
1939
  "1.37.0",
1938
1940
  "1.38.0",
1939
- "1.39.0"
1941
+ "1.39.0",
1942
+ "1.40.0"
1940
1943
  ]
1941
1944
  },
1942
1945
  "designtime": {
@@ -1952,6 +1955,18 @@
1952
1955
  "description": "Markdown enablement for Adaptive Content",
1953
1956
  "type": "boolean"
1954
1957
  },
1958
+ "modelSizeLimit": {
1959
+ "description": "[Experimental] Represents the maximum number of entries that are used for list bindings.",
1960
+ "oneOf": [
1961
+ {
1962
+ "type": "number"
1963
+ },
1964
+ {
1965
+ "$ref": "#/definitions/simpleBinding"
1966
+ }
1967
+ ],
1968
+ "default": 1000
1969
+ },
1955
1970
  "parameters": {
1956
1971
  "description": "Map of parameters",
1957
1972
  "type": "object",
@@ -3727,6 +3742,17 @@
3727
3742
  "description": "Defines the label of the item",
3728
3743
  "type": "string"
3729
3744
  },
3745
+ "showColon": {
3746
+ "description": "Defines whether the colon next to the label is shown",
3747
+ "oneOf": [
3748
+ {
3749
+ "type": "boolean"
3750
+ },
3751
+ {
3752
+ "$ref": "#/definitions/simpleBinding"
3753
+ }
3754
+ ]
3755
+ },
3730
3756
  "value": {
3731
3757
  "description": "Represents the text, which is associated with the label",
3732
3758
  "oneOf": [
@@ -3735,6 +3761,19 @@
3735
3761
  },
3736
3762
  {
3737
3763
  "type": "number"
3764
+ },
3765
+ {
3766
+ "type": "object",
3767
+ "additionalProperties": false,
3768
+ "properties": {
3769
+ "option": {
3770
+ "description": "The date range option",
3771
+ "type": "string"
3772
+ },
3773
+ "values": {
3774
+ "type": "array"
3775
+ }
3776
+ }
3738
3777
  }
3739
3778
  ]
3740
3779
  },
@@ -3756,6 +3795,7 @@
3756
3795
  "TextArea",
3757
3796
  "Input",
3758
3797
  "Duration",
3798
+ "DateRange",
3759
3799
  "RatingIndicator",
3760
3800
  "phone",
3761
3801
  "email",
@@ -5599,10 +5639,6 @@
5599
5639
  }
5600
5640
  ]
5601
5641
  },
5602
- "simpleBinding": {
5603
- "type": "string",
5604
- "pattern": "\\{.*\\}"
5605
- },
5606
5642
  "data": {
5607
5643
  "description": "Represents request and response attributes",
5608
5644
  "type": "object",
@@ -5951,6 +5987,10 @@
5951
5987
  }
5952
5988
  }
5953
5989
  },
5990
+ "simpleBinding": {
5991
+ "type": "string",
5992
+ "pattern": "\\{.*\\}"
5993
+ },
5954
5994
  "definingRequest": {
5955
5995
  "type": "object",
5956
5996
  "additionalProperties": false,
@@ -6342,6 +6382,11 @@
6342
6382
  "type": "boolean",
6343
6383
  "default": true
6344
6384
  },
6385
+ "showRefresh": {
6386
+ "description": "Represents the flag to show/hide individual card's functionality to refresh the card",
6387
+ "type": "boolean",
6388
+ "default": true
6389
+ },
6345
6390
  "defaultSpan": {
6346
6391
  "$ref": "#/definitions/defaultSpanDef"
6347
6392
  },
package/schema_cil.json CHANGED
@@ -912,7 +912,8 @@
912
912
  "1.5.0",
913
913
  "1.6.0",
914
914
  "1.7.0",
915
- "1.8.0"
915
+ "1.8.0",
916
+ "1.9.0"
916
917
  ]
917
918
  },
918
919
  "globalFilterModel": {
@@ -1829,6 +1830,11 @@
1829
1830
  "type": "boolean",
1830
1831
  "default": true
1831
1832
  },
1833
+ "showRefresh": {
1834
+ "description": "Represents the flag to show/hide individual card's functionality to refresh the card",
1835
+ "type": "boolean",
1836
+ "default": true
1837
+ },
1832
1838
  "defaultSpan": {
1833
1839
  "$ref": "#/definitions/defaultSpanDef"
1834
1840
  },
@@ -691,7 +691,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
691
691
  | "1.51.0"
692
692
  | "1.52.0"
693
693
  | "1.53.0"
694
- | "1.54.0";
694
+ | "1.54.0"
695
+ | "1.55.0";
695
696
  /**
696
697
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
697
698
  */
@@ -2477,7 +2478,7 @@ export interface JSONSchemaForSAPOVPNamespace {
2477
2478
  /**
2478
2479
  * Represents attributes format version. It is managed by namespace owner
2479
2480
  */
2480
- _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0" | "1.6.0" | "1.7.0" | "1.8.0";
2481
+ _version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0" | "1.6.0" | "1.7.0" | "1.8.0" | "1.9.0";
2481
2482
  /**
2482
2483
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2483
2484
  */
@@ -2755,6 +2756,10 @@ export interface CardSetting {
2755
2756
  * Represents the flag to enable/disable individual card's functionality to add them to insight
2756
2757
  */
2757
2758
  enableAddToInsights?: boolean;
2759
+ /**
2760
+ * Represents the flag to show/hide individual card's functionality to refresh the card
2761
+ */
2762
+ showRefresh?: boolean;
2758
2763
  defaultSpan?: DefaultSpanDef;
2759
2764
  /**
2760
2765
  * Represents the cards for which authorization is required