@ui5/manifest 1.51.0 → 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 +5 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +58 -4
- package/schema_cil.json +6 -1
- package/types/manifest.d.ts +12 -2
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.
|
|
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
|
|
6
9
|
|
|
7
10
|
<a name="v1.51.0"></a>
|
|
8
11
|
## [v1.51.0] - 2023-01-12
|
|
@@ -19,6 +22,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
19
22
|
<a name="v1.48.1"></a>
|
|
20
23
|
## v1.48.1 - 2022-11-10
|
|
21
24
|
|
|
25
|
+
[v1.52.0]: https://github.com/SAP/ui5-manifest/compare/v1.51.0...v1.52.0
|
|
22
26
|
[v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
|
|
23
27
|
[v1.49.2]: https://github.com/SAP/ui5-manifest/compare/v1.49.1...v1.49.2
|
|
24
28
|
[v1.49.1]: https://github.com/SAP/ui5-manifest/compare/v1.49.0...v1.49.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -62,7 +62,8 @@
|
|
|
62
62
|
"1.47.0",
|
|
63
63
|
"1.48.0",
|
|
64
64
|
"1.49.0",
|
|
65
|
-
"1.50.0"
|
|
65
|
+
"1.50.0",
|
|
66
|
+
"1.51.0"
|
|
66
67
|
]
|
|
67
68
|
},
|
|
68
69
|
"start_url": {
|
|
@@ -102,7 +103,8 @@
|
|
|
102
103
|
"1.15.0",
|
|
103
104
|
"1.16.0",
|
|
104
105
|
"1.17.0",
|
|
105
|
-
"1.18.0"
|
|
106
|
+
"1.18.0",
|
|
107
|
+
"1.19.0"
|
|
106
108
|
]
|
|
107
109
|
},
|
|
108
110
|
"sourceTemplate": {
|
|
@@ -1866,7 +1868,8 @@
|
|
|
1866
1868
|
"1.32.0",
|
|
1867
1869
|
"1.33.0",
|
|
1868
1870
|
"1.34.0",
|
|
1869
|
-
"1.35.0"
|
|
1871
|
+
"1.35.0",
|
|
1872
|
+
"1.36.0"
|
|
1870
1873
|
]
|
|
1871
1874
|
},
|
|
1872
1875
|
"designtime": {
|
|
@@ -2963,6 +2966,18 @@
|
|
|
2963
2966
|
}
|
|
2964
2967
|
]
|
|
2965
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
|
+
},
|
|
2966
2981
|
"withCredentials": {
|
|
2967
2982
|
"description": "Indicates whether cross-site requests should be made using credentials",
|
|
2968
2983
|
"oneOf": [
|
|
@@ -3614,7 +3629,14 @@
|
|
|
3614
3629
|
},
|
|
3615
3630
|
"value": {
|
|
3616
3631
|
"description": "Represents the text, which is associated with the label",
|
|
3617
|
-
"
|
|
3632
|
+
"oneOf": [
|
|
3633
|
+
{
|
|
3634
|
+
"type": "string"
|
|
3635
|
+
},
|
|
3636
|
+
{
|
|
3637
|
+
"type": "number"
|
|
3638
|
+
}
|
|
3639
|
+
]
|
|
3618
3640
|
},
|
|
3619
3641
|
"tooltip": {
|
|
3620
3642
|
"description": "Defines the tooltip of the link",
|
|
@@ -3632,6 +3654,7 @@
|
|
|
3632
3654
|
"IconGroup",
|
|
3633
3655
|
"ComboBox",
|
|
3634
3656
|
"TextArea",
|
|
3657
|
+
"RatingIndicator",
|
|
3635
3658
|
"phone",
|
|
3636
3659
|
"email",
|
|
3637
3660
|
"link",
|
|
@@ -3796,6 +3819,33 @@
|
|
|
3796
3819
|
"items": {
|
|
3797
3820
|
"$ref": "#/definitions/ContentType.Object.Item.Validation"
|
|
3798
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
|
+
]
|
|
3799
3849
|
}
|
|
3800
3850
|
}
|
|
3801
3851
|
},
|
|
@@ -7917,6 +7967,10 @@
|
|
|
7917
7967
|
"objectType"
|
|
7918
7968
|
]
|
|
7919
7969
|
}
|
|
7970
|
+
},
|
|
7971
|
+
"ignoreAnnotationsFromMetadata": {
|
|
7972
|
+
"description": "Indicates whether annotations from metadata should be ignored",
|
|
7973
|
+
"type": "boolean"
|
|
7920
7974
|
}
|
|
7921
7975
|
}
|
|
7922
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": {
|
|
@@ -3358,6 +3359,10 @@
|
|
|
3358
3359
|
"objectType"
|
|
3359
3360
|
]
|
|
3360
3361
|
}
|
|
3362
|
+
},
|
|
3363
|
+
"ignoreAnnotationsFromMetadata": {
|
|
3364
|
+
"description": "Indicates whether annotations from metadata should be ignored",
|
|
3365
|
+
"type": "boolean"
|
|
3361
3366
|
}
|
|
3362
3367
|
},
|
|
3363
3368
|
"openSource": {
|
package/types/manifest.d.ts
CHANGED
|
@@ -678,7 +678,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
678
678
|
| "1.47.0"
|
|
679
679
|
| "1.48.0"
|
|
680
680
|
| "1.49.0"
|
|
681
|
-
| "1.50.0"
|
|
681
|
+
| "1.50.0"
|
|
682
|
+
| "1.51.0";
|
|
682
683
|
/**
|
|
683
684
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
684
685
|
*/
|
|
@@ -738,7 +739,8 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
738
739
|
| "1.15.0"
|
|
739
740
|
| "1.16.0"
|
|
740
741
|
| "1.17.0"
|
|
741
|
-
| "1.18.0"
|
|
742
|
+
| "1.18.0"
|
|
743
|
+
| "1.19.0";
|
|
742
744
|
/**
|
|
743
745
|
* Represents the template from which the app was generated
|
|
744
746
|
*/
|
|
@@ -974,6 +976,10 @@ export interface Setting {
|
|
|
974
976
|
schemaName?: string;
|
|
975
977
|
};
|
|
976
978
|
};
|
|
979
|
+
/**
|
|
980
|
+
* Indicates whether annotations from metadata should be ignored
|
|
981
|
+
*/
|
|
982
|
+
ignoreAnnotationsFromMetadata?: boolean;
|
|
977
983
|
[k: string]: unknown;
|
|
978
984
|
}
|
|
979
985
|
export interface DataSourceCustom {
|
|
@@ -1025,6 +1031,10 @@ export interface Setting1 {
|
|
|
1025
1031
|
schemaName?: string;
|
|
1026
1032
|
};
|
|
1027
1033
|
};
|
|
1034
|
+
/**
|
|
1035
|
+
* Indicates whether annotations from metadata should be ignored
|
|
1036
|
+
*/
|
|
1037
|
+
ignoreAnnotationsFromMetadata?: boolean;
|
|
1028
1038
|
[k: string]: unknown;
|
|
1029
1039
|
}
|
|
1030
1040
|
export interface OpenSource {
|