@ui5/manifest 1.49.2 → 1.51.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,10 +2,13 @@
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.49.2...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.51.0...HEAD).
6
+
7
+ <a name="v1.51.0"></a>
8
+ ## [v1.51.0] - 2023-01-12
6
9
 
7
10
  <a name="v1.49.2"></a>
8
- ## [v1.49.2] - 0001-01-01
11
+ ## [v1.49.2] - 2022-11-29
9
12
 
10
13
  <a name="v1.49.1"></a>
11
14
  ## [v1.49.1] - 2022-11-21
@@ -16,6 +19,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
16
19
  <a name="v1.48.1"></a>
17
20
  ## v1.48.1 - 2022-11-10
18
21
 
22
+ [v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
19
23
  [v1.49.2]: https://github.com/SAP/ui5-manifest/compare/v1.49.1...v1.49.2
20
24
  [v1.49.1]: https://github.com/SAP/ui5-manifest/compare/v1.49.0...v1.49.1
21
25
  [v1.49.0]: https://github.com/SAP/ui5-manifest/compare/v1.48.1...v1.49.0
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
1
  # @ui5/manifest
2
2
 
3
3
  [![REUSE status](https://api.reuse.software/badge/github.com/SAP/ui5-manifest)](https://api.reuse.software/info/github.com/SAP/ui5-manifest)
4
+ [![npm version](https://badge.fury.io/js/@ui5%2Fmanifest.svg)](https://badge.fury.io/js/@ui5%2Fmanifest)
4
5
 
5
6
  ## Description
6
- This project contains the flattend json schema for the ui5 manifest.
7
+ This project contains the flattened json schema for the ui5 manifest.
7
8
 
8
- This flattend json schema for the ui5 manifest is meant to be referenced in the [JSON Schema Store](https://www.schemastore.org/json/) in order to provide validation and code completion of the manifest.json file in SAP Business Application Studio.
9
+ This flattened json schema for the ui5 manifest is meant to be referenced in the [JSON Schema Store](https://www.schemastore.org/json/) in order to provide validation and code completion of the manifest.json file in SAP Business Application Studio or another IDE.
9
10
 
10
11
  ## How to obtain support
11
- In case you need any support, please create a GitHub issue.
12
+ In case you need any support, please create a [GitHub issue](https://github.com/SAP/ui5-manifest/issues).
12
13
 
13
14
  ## Release History
14
15
  See [CHANGELOG.md](CHANGELOG.md).
15
-
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.49.0",
2
+ "latest": "1.50.0",
3
+ "1.110": "1.50.0",
3
4
  "1.109": "1.49.0",
4
5
  "1.108": "1.48.0",
5
6
  "1.107": "1.47.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.49.2",
3
+ "version": "1.51.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
@@ -61,7 +61,8 @@
61
61
  "1.46.0",
62
62
  "1.47.0",
63
63
  "1.48.0",
64
- "1.49.0"
64
+ "1.49.0",
65
+ "1.50.0"
65
66
  ]
66
67
  },
67
68
  "start_url": {
@@ -1043,7 +1044,8 @@
1043
1044
  "type": "string",
1044
1045
  "enum": [
1045
1046
  "1.1.0",
1046
- "1.2.0"
1047
+ "1.2.0",
1048
+ "1.3.0"
1047
1049
  ]
1048
1050
  },
1049
1051
  "registrationIds": {
@@ -1068,6 +1070,15 @@
1068
1070
  "abstract": {
1069
1071
  "description": "Indicator that app is an abstract (generic) app which may not be used directly, but needs to be specialized in the SAP Fiori launchpad content",
1070
1072
  "type": "boolean"
1073
+ },
1074
+ "cloudDevAdaptationStatus": {
1075
+ "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released",
1076
+ "type": "string",
1077
+ "enum": [
1078
+ "released",
1079
+ "deprecated",
1080
+ "obsolete"
1081
+ ]
1071
1082
  }
1072
1083
  }
1073
1084
  },
@@ -1854,7 +1865,8 @@
1854
1865
  "1.31.0",
1855
1866
  "1.32.0",
1856
1867
  "1.33.0",
1857
- "1.34.0"
1868
+ "1.34.0",
1869
+ "1.35.0"
1858
1870
  ]
1859
1871
  },
1860
1872
  "designtime": {
@@ -3733,6 +3745,17 @@
3733
3745
  "description": "The state color of the item",
3734
3746
  "$ref": "#/definitions/state"
3735
3747
  },
3748
+ "showStateIcon": {
3749
+ "description": "Defines if a default state icon is shown",
3750
+ "oneOf": [
3751
+ {
3752
+ "type": "boolean"
3753
+ },
3754
+ {
3755
+ "$ref": "#/definitions/simpleBinding"
3756
+ }
3757
+ ]
3758
+ },
3736
3759
  "id": {
3737
3760
  "description": "ID for input fields",
3738
3761
  "type": "string"
@@ -4166,6 +4189,17 @@
4166
4189
  }
4167
4190
  ]
4168
4191
  },
4192
+ "showStateIcon": {
4193
+ "description": "Defines if a default state icon is shown",
4194
+ "oneOf": [
4195
+ {
4196
+ "type": "boolean"
4197
+ },
4198
+ {
4199
+ "$ref": "#/definitions/simpleBinding"
4200
+ }
4201
+ ]
4202
+ },
4169
4203
  "visible": {
4170
4204
  "description": "Visibility of the item",
4171
4205
  "oneOf": [
@@ -5496,6 +5530,17 @@
5496
5530
  "placeholder": {
5497
5531
  "description": "The placeholder of the filter",
5498
5532
  "type": "string"
5533
+ },
5534
+ "visible": {
5535
+ "description": "Determines whether the filter is visible",
5536
+ "oneOf": [
5537
+ {
5538
+ "type": "boolean"
5539
+ },
5540
+ {
5541
+ "$ref": "#/definitions/simpleBinding"
5542
+ }
5543
+ ]
5499
5544
  }
5500
5545
  }
5501
5546
  },
@@ -5579,6 +5624,17 @@
5579
5624
  "nextYear"
5580
5625
  ]
5581
5626
  }
5627
+ },
5628
+ "visible": {
5629
+ "description": "Determines whether the filter is visible",
5630
+ "oneOf": [
5631
+ {
5632
+ "type": "boolean"
5633
+ },
5634
+ {
5635
+ "$ref": "#/definitions/simpleBinding"
5636
+ }
5637
+ ]
5582
5638
  }
5583
5639
  }
5584
5640
  },
@@ -5630,6 +5686,17 @@
5630
5686
  "pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
5631
5687
  }
5632
5688
  }
5689
+ },
5690
+ "visible": {
5691
+ "description": "Determines whether the filter is visible",
5692
+ "oneOf": [
5693
+ {
5694
+ "type": "boolean"
5695
+ },
5696
+ {
5697
+ "$ref": "#/definitions/simpleBinding"
5698
+ }
5699
+ ]
5633
5700
  }
5634
5701
  }
5635
5702
  },
package/schema_cil.json CHANGED
@@ -734,7 +734,8 @@
734
734
  "type": "string",
735
735
  "enum": [
736
736
  "1.1.0",
737
- "1.2.0"
737
+ "1.2.0",
738
+ "1.3.0"
738
739
  ]
739
740
  },
740
741
  "registrationIds": {
@@ -759,6 +760,15 @@
759
760
  "abstract": {
760
761
  "description": "Indicator that app is an abstract (generic) app which may not be used directly, but needs to be specialized in the SAP Fiori launchpad content",
761
762
  "type": "boolean"
763
+ },
764
+ "cloudDevAdaptationStatus": {
765
+ "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released",
766
+ "type": "string",
767
+ "enum": [
768
+ "released",
769
+ "deprecated",
770
+ "obsolete"
771
+ ]
762
772
  }
763
773
  }
764
774
  },