@ui5/manifest 1.49.2 → 1.52.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,16 @@
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.52.0...HEAD).
6
+
7
+ <a name="v1.52.0"></a>
8
+ ## [v1.52.0] - 2023-02-09
9
+
10
+ <a name="v1.51.0"></a>
11
+ ## [v1.51.0] - 2023-01-12
6
12
 
7
13
  <a name="v1.49.2"></a>
8
- ## [v1.49.2] - 0001-01-01
14
+ ## [v1.49.2] - 2022-11-29
9
15
 
10
16
  <a name="v1.49.1"></a>
11
17
  ## [v1.49.1] - 2022-11-21
@@ -16,6 +22,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
16
22
  <a name="v1.48.1"></a>
17
23
  ## v1.48.1 - 2022-11-10
18
24
 
25
+ [v1.52.0]: https://github.com/SAP/ui5-manifest/compare/v1.51.0...v1.52.0
26
+ [v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
19
27
  [v1.49.2]: https://github.com/SAP/ui5-manifest/compare/v1.49.1...v1.49.2
20
28
  [v1.49.1]: https://github.com/SAP/ui5-manifest/compare/v1.49.0...v1.49.1
21
29
  [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,7 @@
1
1
  {
2
- "latest": "1.49.0",
2
+ "latest": "1.51.0",
3
+ "1.111": "1.51.0",
4
+ "1.110": "1.50.0",
3
5
  "1.109": "1.49.0",
4
6
  "1.108": "1.48.0",
5
7
  "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.52.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,9 @@
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",
66
+ "1.51.0"
65
67
  ]
66
68
  },
67
69
  "start_url": {
@@ -101,7 +103,8 @@
101
103
  "1.15.0",
102
104
  "1.16.0",
103
105
  "1.17.0",
104
- "1.18.0"
106
+ "1.18.0",
107
+ "1.19.0"
105
108
  ]
106
109
  },
107
110
  "sourceTemplate": {
@@ -1043,7 +1046,8 @@
1043
1046
  "type": "string",
1044
1047
  "enum": [
1045
1048
  "1.1.0",
1046
- "1.2.0"
1049
+ "1.2.0",
1050
+ "1.3.0"
1047
1051
  ]
1048
1052
  },
1049
1053
  "registrationIds": {
@@ -1068,6 +1072,15 @@
1068
1072
  "abstract": {
1069
1073
  "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
1074
  "type": "boolean"
1075
+ },
1076
+ "cloudDevAdaptationStatus": {
1077
+ "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",
1078
+ "type": "string",
1079
+ "enum": [
1080
+ "released",
1081
+ "deprecated",
1082
+ "obsolete"
1083
+ ]
1071
1084
  }
1072
1085
  }
1073
1086
  },
@@ -1854,7 +1867,9 @@
1854
1867
  "1.31.0",
1855
1868
  "1.32.0",
1856
1869
  "1.33.0",
1857
- "1.34.0"
1870
+ "1.34.0",
1871
+ "1.35.0",
1872
+ "1.36.0"
1858
1873
  ]
1859
1874
  },
1860
1875
  "designtime": {
@@ -2951,6 +2966,18 @@
2951
2966
  }
2952
2967
  ]
2953
2968
  },
2969
+ "timeout": {
2970
+ "description": "A timeout (in milliseconds) for the request. A value of 0 means there will be no timeout.",
2971
+ "oneOf": [
2972
+ {
2973
+ "type": "number",
2974
+ "default": 15000
2975
+ },
2976
+ {
2977
+ "$ref": "#/definitions/simpleBinding"
2978
+ }
2979
+ ]
2980
+ },
2954
2981
  "withCredentials": {
2955
2982
  "description": "Indicates whether cross-site requests should be made using credentials",
2956
2983
  "oneOf": [
@@ -3602,7 +3629,14 @@
3602
3629
  },
3603
3630
  "value": {
3604
3631
  "description": "Represents the text, which is associated with the label",
3605
- "type": "string"
3632
+ "oneOf": [
3633
+ {
3634
+ "type": "string"
3635
+ },
3636
+ {
3637
+ "type": "number"
3638
+ }
3639
+ ]
3606
3640
  },
3607
3641
  "tooltip": {
3608
3642
  "description": "Defines the tooltip of the link",
@@ -3620,6 +3654,7 @@
3620
3654
  "IconGroup",
3621
3655
  "ComboBox",
3622
3656
  "TextArea",
3657
+ "RatingIndicator",
3623
3658
  "phone",
3624
3659
  "email",
3625
3660
  "link",
@@ -3733,6 +3768,17 @@
3733
3768
  "description": "The state color of the item",
3734
3769
  "$ref": "#/definitions/state"
3735
3770
  },
3771
+ "showStateIcon": {
3772
+ "description": "Defines if a default state icon is shown",
3773
+ "oneOf": [
3774
+ {
3775
+ "type": "boolean"
3776
+ },
3777
+ {
3778
+ "$ref": "#/definitions/simpleBinding"
3779
+ }
3780
+ ]
3781
+ },
3736
3782
  "id": {
3737
3783
  "description": "ID for input fields",
3738
3784
  "type": "string"
@@ -3773,6 +3819,33 @@
3773
3819
  "items": {
3774
3820
  "$ref": "#/definitions/ContentType.Object.Item.Validation"
3775
3821
  }
3822
+ },
3823
+ "maxValue": {
3824
+ "description": "The number of displayed symbols for RatingIndicator",
3825
+ "oneOf": [
3826
+ {
3827
+ "type": "number",
3828
+ "default": 5
3829
+ },
3830
+ {
3831
+ "$ref": "#/definitions/simpleBinding"
3832
+ }
3833
+ ]
3834
+ },
3835
+ "visualMode": {
3836
+ "description": "Defines how float values are visualized for RatingIndicator: Full (values are rounded to the nearest integer value (e.g. 1.7 -> 2)) or Half (values are rounded to the nearest half value (e.g. 1.7 -> 1.5))",
3837
+ "oneOf": [
3838
+ {
3839
+ "enum": [
3840
+ "Full",
3841
+ "Half"
3842
+ ],
3843
+ "default": "Half"
3844
+ },
3845
+ {
3846
+ "$ref": "#/definitions/simpleBinding"
3847
+ }
3848
+ ]
3776
3849
  }
3777
3850
  }
3778
3851
  },
@@ -4166,6 +4239,17 @@
4166
4239
  }
4167
4240
  ]
4168
4241
  },
4242
+ "showStateIcon": {
4243
+ "description": "Defines if a default state icon is shown",
4244
+ "oneOf": [
4245
+ {
4246
+ "type": "boolean"
4247
+ },
4248
+ {
4249
+ "$ref": "#/definitions/simpleBinding"
4250
+ }
4251
+ ]
4252
+ },
4169
4253
  "visible": {
4170
4254
  "description": "Visibility of the item",
4171
4255
  "oneOf": [
@@ -5496,6 +5580,17 @@
5496
5580
  "placeholder": {
5497
5581
  "description": "The placeholder of the filter",
5498
5582
  "type": "string"
5583
+ },
5584
+ "visible": {
5585
+ "description": "Determines whether the filter is visible",
5586
+ "oneOf": [
5587
+ {
5588
+ "type": "boolean"
5589
+ },
5590
+ {
5591
+ "$ref": "#/definitions/simpleBinding"
5592
+ }
5593
+ ]
5499
5594
  }
5500
5595
  }
5501
5596
  },
@@ -5579,6 +5674,17 @@
5579
5674
  "nextYear"
5580
5675
  ]
5581
5676
  }
5677
+ },
5678
+ "visible": {
5679
+ "description": "Determines whether the filter is visible",
5680
+ "oneOf": [
5681
+ {
5682
+ "type": "boolean"
5683
+ },
5684
+ {
5685
+ "$ref": "#/definitions/simpleBinding"
5686
+ }
5687
+ ]
5582
5688
  }
5583
5689
  }
5584
5690
  },
@@ -5630,6 +5736,17 @@
5630
5736
  "pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
5631
5737
  }
5632
5738
  }
5739
+ },
5740
+ "visible": {
5741
+ "description": "Determines whether the filter is visible",
5742
+ "oneOf": [
5743
+ {
5744
+ "type": "boolean"
5745
+ },
5746
+ {
5747
+ "$ref": "#/definitions/simpleBinding"
5748
+ }
5749
+ ]
5633
5750
  }
5634
5751
  }
5635
5752
  },
@@ -7850,6 +7967,10 @@
7850
7967
  "objectType"
7851
7968
  ]
7852
7969
  }
7970
+ },
7971
+ "ignoreAnnotationsFromMetadata": {
7972
+ "description": "Indicates whether annotations from metadata should be ignored",
7973
+ "type": "boolean"
7853
7974
  }
7854
7975
  }
7855
7976
  },
package/schema_cil.json CHANGED
@@ -69,7 +69,8 @@
69
69
  "1.7.0",
70
70
  "1.8.0",
71
71
  "1.9.0",
72
- "1.10.0"
72
+ "1.10.0",
73
+ "1.11.0"
73
74
  ]
74
75
  },
75
76
  "sourceTemplate": {
@@ -734,7 +735,8 @@
734
735
  "type": "string",
735
736
  "enum": [
736
737
  "1.1.0",
737
- "1.2.0"
738
+ "1.2.0",
739
+ "1.3.0"
738
740
  ]
739
741
  },
740
742
  "registrationIds": {
@@ -759,6 +761,15 @@
759
761
  "abstract": {
760
762
  "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
763
  "type": "boolean"
764
+ },
765
+ "cloudDevAdaptationStatus": {
766
+ "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",
767
+ "type": "string",
768
+ "enum": [
769
+ "released",
770
+ "deprecated",
771
+ "obsolete"
772
+ ]
762
773
  }
763
774
  }
764
775
  },
@@ -3348,6 +3359,10 @@
3348
3359
  "objectType"
3349
3360
  ]
3350
3361
  }
3362
+ },
3363
+ "ignoreAnnotationsFromMetadata": {
3364
+ "description": "Indicates whether annotations from metadata should be ignored",
3365
+ "type": "boolean"
3351
3366
  }
3352
3367
  },
3353
3368
  "openSource": {