@ui5/manifest 1.51.0 → 1.52.1
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 +9 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +92 -6
- package/schema_cil.json +11 -1
- package/types/manifest.d.ts +18 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.52.1...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.52.1"></a>
|
|
8
|
+
## [v1.52.1] - 2023-03-08
|
|
9
|
+
|
|
10
|
+
<a name="v1.52.0"></a>
|
|
11
|
+
## [v1.52.0] - 2023-02-09
|
|
6
12
|
|
|
7
13
|
<a name="v1.51.0"></a>
|
|
8
14
|
## [v1.51.0] - 2023-01-12
|
|
@@ -19,6 +25,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
19
25
|
<a name="v1.48.1"></a>
|
|
20
26
|
## v1.48.1 - 2022-11-10
|
|
21
27
|
|
|
28
|
+
[v1.52.1]: https://github.com/SAP/ui5-manifest/compare/v1.52.0...v1.52.1
|
|
29
|
+
[v1.52.0]: https://github.com/SAP/ui5-manifest/compare/v1.51.0...v1.52.0
|
|
22
30
|
[v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
|
|
23
31
|
[v1.49.2]: https://github.com/SAP/ui5-manifest/compare/v1.49.1...v1.49.2
|
|
24
32
|
[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
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
],
|
|
10
10
|
"additionalProperties": false,
|
|
11
11
|
"properties": {
|
|
12
|
+
"$schema": {
|
|
13
|
+
"description": "The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type \"application/schema+json\".",
|
|
14
|
+
"format": "uri",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
12
17
|
"_version": {
|
|
13
18
|
"description": "Represents Application Descriptor format version. It is managed by schema owner",
|
|
14
19
|
"type": "string",
|
|
@@ -62,7 +67,9 @@
|
|
|
62
67
|
"1.47.0",
|
|
63
68
|
"1.48.0",
|
|
64
69
|
"1.49.0",
|
|
65
|
-
"1.50.0"
|
|
70
|
+
"1.50.0",
|
|
71
|
+
"1.51.0",
|
|
72
|
+
"1.52.0"
|
|
66
73
|
]
|
|
67
74
|
},
|
|
68
75
|
"start_url": {
|
|
@@ -102,7 +109,8 @@
|
|
|
102
109
|
"1.15.0",
|
|
103
110
|
"1.16.0",
|
|
104
111
|
"1.17.0",
|
|
105
|
-
"1.18.0"
|
|
112
|
+
"1.18.0",
|
|
113
|
+
"1.19.0"
|
|
106
114
|
]
|
|
107
115
|
},
|
|
108
116
|
"sourceTemplate": {
|
|
@@ -1866,7 +1874,9 @@
|
|
|
1866
1874
|
"1.32.0",
|
|
1867
1875
|
"1.33.0",
|
|
1868
1876
|
"1.34.0",
|
|
1869
|
-
"1.35.0"
|
|
1877
|
+
"1.35.0",
|
|
1878
|
+
"1.36.0",
|
|
1879
|
+
"1.37.0"
|
|
1870
1880
|
]
|
|
1871
1881
|
},
|
|
1872
1882
|
"designtime": {
|
|
@@ -2963,6 +2973,18 @@
|
|
|
2963
2973
|
}
|
|
2964
2974
|
]
|
|
2965
2975
|
},
|
|
2976
|
+
"timeout": {
|
|
2977
|
+
"description": "A timeout (in milliseconds) for the request. A value of 0 means there will be no timeout.",
|
|
2978
|
+
"oneOf": [
|
|
2979
|
+
{
|
|
2980
|
+
"type": "number",
|
|
2981
|
+
"default": 15000
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2985
|
+
}
|
|
2986
|
+
]
|
|
2987
|
+
},
|
|
2966
2988
|
"withCredentials": {
|
|
2967
2989
|
"description": "Indicates whether cross-site requests should be made using credentials",
|
|
2968
2990
|
"oneOf": [
|
|
@@ -3614,7 +3636,14 @@
|
|
|
3614
3636
|
},
|
|
3615
3637
|
"value": {
|
|
3616
3638
|
"description": "Represents the text, which is associated with the label",
|
|
3617
|
-
"
|
|
3639
|
+
"oneOf": [
|
|
3640
|
+
{
|
|
3641
|
+
"type": "string"
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
"type": "number"
|
|
3645
|
+
}
|
|
3646
|
+
]
|
|
3618
3647
|
},
|
|
3619
3648
|
"tooltip": {
|
|
3620
3649
|
"description": "Defines the tooltip of the link",
|
|
@@ -3632,6 +3661,8 @@
|
|
|
3632
3661
|
"IconGroup",
|
|
3633
3662
|
"ComboBox",
|
|
3634
3663
|
"TextArea",
|
|
3664
|
+
"Input",
|
|
3665
|
+
"RatingIndicator",
|
|
3635
3666
|
"phone",
|
|
3636
3667
|
"email",
|
|
3637
3668
|
"link",
|
|
@@ -3796,6 +3827,33 @@
|
|
|
3796
3827
|
"items": {
|
|
3797
3828
|
"$ref": "#/definitions/ContentType.Object.Item.Validation"
|
|
3798
3829
|
}
|
|
3830
|
+
},
|
|
3831
|
+
"maxValue": {
|
|
3832
|
+
"description": "The number of displayed symbols for RatingIndicator",
|
|
3833
|
+
"oneOf": [
|
|
3834
|
+
{
|
|
3835
|
+
"type": "number",
|
|
3836
|
+
"default": 5
|
|
3837
|
+
},
|
|
3838
|
+
{
|
|
3839
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3840
|
+
}
|
|
3841
|
+
]
|
|
3842
|
+
},
|
|
3843
|
+
"visualMode": {
|
|
3844
|
+
"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))",
|
|
3845
|
+
"oneOf": [
|
|
3846
|
+
{
|
|
3847
|
+
"enum": [
|
|
3848
|
+
"Full",
|
|
3849
|
+
"Half"
|
|
3850
|
+
],
|
|
3851
|
+
"default": "Half"
|
|
3852
|
+
},
|
|
3853
|
+
{
|
|
3854
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3855
|
+
}
|
|
3856
|
+
]
|
|
3799
3857
|
}
|
|
3800
3858
|
}
|
|
3801
3859
|
},
|
|
@@ -5435,12 +5493,32 @@
|
|
|
5435
5493
|
]
|
|
5436
5494
|
},
|
|
5437
5495
|
"extension": {
|
|
5438
|
-
"description": "[Experimental] Provides a way to request data via extension",
|
|
5439
5496
|
"$ref": "#/definitions/extension"
|
|
5440
5497
|
},
|
|
5441
5498
|
"name": {
|
|
5442
5499
|
"description": "[Experimental] Gives a name to the data section. A model with the same name will be assigned to the card",
|
|
5443
5500
|
"type": "string"
|
|
5501
|
+
},
|
|
5502
|
+
"mockData": {
|
|
5503
|
+
"description": "[Experimental] Mock data attributes",
|
|
5504
|
+
"type": "object",
|
|
5505
|
+
"additionalProperties": false,
|
|
5506
|
+
"properties": {
|
|
5507
|
+
"request": {
|
|
5508
|
+
"$ref": "#/definitions/request"
|
|
5509
|
+
},
|
|
5510
|
+
"json": {
|
|
5511
|
+
"description": "The data to be used directly. Without making requests",
|
|
5512
|
+
"type": [
|
|
5513
|
+
"object",
|
|
5514
|
+
"array"
|
|
5515
|
+
],
|
|
5516
|
+
"additionalProperties": true
|
|
5517
|
+
},
|
|
5518
|
+
"extension": {
|
|
5519
|
+
"$ref": "#/definitions/extension"
|
|
5520
|
+
}
|
|
5521
|
+
}
|
|
5444
5522
|
}
|
|
5445
5523
|
}
|
|
5446
5524
|
},
|
|
@@ -5591,8 +5669,11 @@
|
|
|
5591
5669
|
"yesterday",
|
|
5592
5670
|
"tomorrow",
|
|
5593
5671
|
"dateRange",
|
|
5672
|
+
"dateTimeRange",
|
|
5594
5673
|
"from",
|
|
5595
5674
|
"to",
|
|
5675
|
+
"fromDateTime",
|
|
5676
|
+
"toDateTime",
|
|
5596
5677
|
"yearToDate",
|
|
5597
5678
|
"lastDays",
|
|
5598
5679
|
"lastWeeks",
|
|
@@ -5621,7 +5702,8 @@
|
|
|
5621
5702
|
"quarter4",
|
|
5622
5703
|
"thisYear",
|
|
5623
5704
|
"lastYear",
|
|
5624
|
-
"nextYear"
|
|
5705
|
+
"nextYear",
|
|
5706
|
+
"dateTime"
|
|
5625
5707
|
]
|
|
5626
5708
|
}
|
|
5627
5709
|
},
|
|
@@ -7917,6 +7999,10 @@
|
|
|
7917
7999
|
"objectType"
|
|
7918
8000
|
]
|
|
7919
8001
|
}
|
|
8002
|
+
},
|
|
8003
|
+
"ignoreAnnotationsFromMetadata": {
|
|
8004
|
+
"description": "Indicates whether annotations from metadata should be ignored",
|
|
8005
|
+
"type": "boolean"
|
|
7920
8006
|
}
|
|
7921
8007
|
}
|
|
7922
8008
|
},
|
package/schema_cil.json
CHANGED
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
],
|
|
10
10
|
"additionalProperties": false,
|
|
11
11
|
"properties": {
|
|
12
|
+
"$schema": {
|
|
13
|
+
"description": "The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type \"application/schema+json\".",
|
|
14
|
+
"format": "uri",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
12
17
|
"_version": {
|
|
13
18
|
"description": "Represents Application Descriptor format version. It is managed by schema owner",
|
|
14
19
|
"type": "string",
|
|
@@ -69,7 +74,8 @@
|
|
|
69
74
|
"1.7.0",
|
|
70
75
|
"1.8.0",
|
|
71
76
|
"1.9.0",
|
|
72
|
-
"1.10.0"
|
|
77
|
+
"1.10.0",
|
|
78
|
+
"1.11.0"
|
|
73
79
|
]
|
|
74
80
|
},
|
|
75
81
|
"sourceTemplate": {
|
|
@@ -3358,6 +3364,10 @@
|
|
|
3358
3364
|
"objectType"
|
|
3359
3365
|
]
|
|
3360
3366
|
}
|
|
3367
|
+
},
|
|
3368
|
+
"ignoreAnnotationsFromMetadata": {
|
|
3369
|
+
"description": "Indicates whether annotations from metadata should be ignored",
|
|
3370
|
+
"type": "boolean"
|
|
3361
3371
|
}
|
|
3362
3372
|
},
|
|
3363
3373
|
"openSource": {
|
package/types/manifest.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -625,6 +625,10 @@ export type JSONSchemaForSAPCARDNamespace = {
|
|
|
625
625
|
export type Semanticversion = string;
|
|
626
626
|
|
|
627
627
|
export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
628
|
+
/**
|
|
629
|
+
* The resource identifier for the JSON schema to be used. The value of this keyword MUST be a URI [RFC3986] (containing a scheme) and this URI MUST be normalized. The current schema MUST be valid against the meta-schema identified by this URI. If this URI identifies a retrievable resource, that resource SHOULD be of media type "application/schema+json".
|
|
630
|
+
*/
|
|
631
|
+
$schema?: string;
|
|
628
632
|
/**
|
|
629
633
|
* Represents Application Descriptor format version. It is managed by schema owner
|
|
630
634
|
*/
|
|
@@ -678,7 +682,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
678
682
|
| "1.47.0"
|
|
679
683
|
| "1.48.0"
|
|
680
684
|
| "1.49.0"
|
|
681
|
-
| "1.50.0"
|
|
685
|
+
| "1.50.0"
|
|
686
|
+
| "1.51.0"
|
|
687
|
+
| "1.52.0";
|
|
682
688
|
/**
|
|
683
689
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
684
690
|
*/
|
|
@@ -738,7 +744,8 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
738
744
|
| "1.15.0"
|
|
739
745
|
| "1.16.0"
|
|
740
746
|
| "1.17.0"
|
|
741
|
-
| "1.18.0"
|
|
747
|
+
| "1.18.0"
|
|
748
|
+
| "1.19.0";
|
|
742
749
|
/**
|
|
743
750
|
* Represents the template from which the app was generated
|
|
744
751
|
*/
|
|
@@ -974,6 +981,10 @@ export interface Setting {
|
|
|
974
981
|
schemaName?: string;
|
|
975
982
|
};
|
|
976
983
|
};
|
|
984
|
+
/**
|
|
985
|
+
* Indicates whether annotations from metadata should be ignored
|
|
986
|
+
*/
|
|
987
|
+
ignoreAnnotationsFromMetadata?: boolean;
|
|
977
988
|
[k: string]: unknown;
|
|
978
989
|
}
|
|
979
990
|
export interface DataSourceCustom {
|
|
@@ -1025,6 +1036,10 @@ export interface Setting1 {
|
|
|
1025
1036
|
schemaName?: string;
|
|
1026
1037
|
};
|
|
1027
1038
|
};
|
|
1039
|
+
/**
|
|
1040
|
+
* Indicates whether annotations from metadata should be ignored
|
|
1041
|
+
*/
|
|
1042
|
+
ignoreAnnotationsFromMetadata?: boolean;
|
|
1028
1043
|
[k: string]: unknown;
|
|
1029
1044
|
}
|
|
1030
1045
|
export interface OpenSource {
|