@ui5/manifest 1.52.1 → 1.53.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 +2 -1
- package/package.json +1 -1
- package/schema.json +140 -7
- package/types/manifest.d.ts +59 -5
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.53.1...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.53.1"></a>
|
|
8
|
+
## [v1.53.1] - 2023-04-05
|
|
9
|
+
|
|
10
|
+
<a name="v1.53.0"></a>
|
|
11
|
+
## [v1.53.0] - 2023-04-05
|
|
6
12
|
|
|
7
13
|
<a name="v1.52.1"></a>
|
|
8
14
|
## [v1.52.1] - 2023-03-08
|
|
@@ -25,6 +31,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
25
31
|
<a name="v1.48.1"></a>
|
|
26
32
|
## v1.48.1 - 2022-11-10
|
|
27
33
|
|
|
34
|
+
[v1.53.1]: https://github.com/SAP/ui5-manifest/compare/v1.53.0...v1.53.1
|
|
35
|
+
[v1.53.0]: https://github.com/SAP/ui5-manifest/compare/v1.52.1...v1.53.0
|
|
28
36
|
[v1.52.1]: https://github.com/SAP/ui5-manifest/compare/v1.52.0...v1.52.1
|
|
29
37
|
[v1.52.0]: https://github.com/SAP/ui5-manifest/compare/v1.51.0...v1.52.0
|
|
30
38
|
[v1.51.0]: https://github.com/SAP/ui5-manifest/compare/v1.49.2...v1.51.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -69,7 +69,8 @@
|
|
|
69
69
|
"1.49.0",
|
|
70
70
|
"1.50.0",
|
|
71
71
|
"1.51.0",
|
|
72
|
-
"1.52.0"
|
|
72
|
+
"1.52.0",
|
|
73
|
+
"1.53.0"
|
|
73
74
|
]
|
|
74
75
|
},
|
|
75
76
|
"start_url": {
|
|
@@ -545,7 +546,8 @@
|
|
|
545
546
|
"1.13.0",
|
|
546
547
|
"1.14.0",
|
|
547
548
|
"1.15.0",
|
|
548
|
-
"1.16.0"
|
|
549
|
+
"1.16.0",
|
|
550
|
+
"1.17.0"
|
|
549
551
|
]
|
|
550
552
|
},
|
|
551
553
|
"resources": {
|
|
@@ -839,6 +841,11 @@
|
|
|
839
841
|
"description": "Represents an indicator whether app variant is flex extension point enabled",
|
|
840
842
|
"type": "boolean",
|
|
841
843
|
"default": false
|
|
844
|
+
},
|
|
845
|
+
"isCloudDevAdaptation": {
|
|
846
|
+
"description": "Represents an indicator whether app is a cloud developer adaptation, filled automatically during build.",
|
|
847
|
+
"type": "boolean",
|
|
848
|
+
"default": false
|
|
842
849
|
}
|
|
843
850
|
}
|
|
844
851
|
},
|
|
@@ -1404,7 +1411,8 @@
|
|
|
1404
1411
|
"1.1.0",
|
|
1405
1412
|
"1.2.0",
|
|
1406
1413
|
"1.3.0",
|
|
1407
|
-
"1.4.0"
|
|
1414
|
+
"1.4.0",
|
|
1415
|
+
"1.5.0"
|
|
1408
1416
|
]
|
|
1409
1417
|
},
|
|
1410
1418
|
"parentAppId": {
|
|
@@ -1445,7 +1453,7 @@
|
|
|
1445
1453
|
"default": true
|
|
1446
1454
|
},
|
|
1447
1455
|
"rank": {
|
|
1448
|
-
"description": "Represents the display order of Insights card",
|
|
1456
|
+
"description": "Deprecated: Represents the display order of Insights card",
|
|
1449
1457
|
"type": "integer"
|
|
1450
1458
|
},
|
|
1451
1459
|
"versions": {
|
|
@@ -1461,6 +1469,58 @@
|
|
|
1461
1469
|
"type": "string"
|
|
1462
1470
|
}
|
|
1463
1471
|
}
|
|
1472
|
+
},
|
|
1473
|
+
"ranking": {
|
|
1474
|
+
"description": "New property representing the display order of Insights card",
|
|
1475
|
+
"type": "string"
|
|
1476
|
+
},
|
|
1477
|
+
"allowedChartTypes": {
|
|
1478
|
+
"description": "Array of all supported chart type allowed for transformation.",
|
|
1479
|
+
"type": "array",
|
|
1480
|
+
"items": {
|
|
1481
|
+
"type": "string",
|
|
1482
|
+
"enum": [
|
|
1483
|
+
"bar",
|
|
1484
|
+
"column",
|
|
1485
|
+
"line",
|
|
1486
|
+
"bullet",
|
|
1487
|
+
"vertical_bullet",
|
|
1488
|
+
"100_stacked_bar",
|
|
1489
|
+
"100_stacked_column",
|
|
1490
|
+
"waterfall",
|
|
1491
|
+
"horizontal_waterfall",
|
|
1492
|
+
"area",
|
|
1493
|
+
"radar",
|
|
1494
|
+
"combination",
|
|
1495
|
+
"stacked_bar",
|
|
1496
|
+
"stacked_column",
|
|
1497
|
+
"stacked_combination",
|
|
1498
|
+
"horizontal_stacked_combination",
|
|
1499
|
+
"pie",
|
|
1500
|
+
"donut",
|
|
1501
|
+
"dual_bar",
|
|
1502
|
+
"dual_column",
|
|
1503
|
+
"dual_line",
|
|
1504
|
+
"dual_stacked_bar",
|
|
1505
|
+
"dual_stacked_column",
|
|
1506
|
+
"dual_combination",
|
|
1507
|
+
"dual_horizontal_combination",
|
|
1508
|
+
"dual_stacked_combination",
|
|
1509
|
+
"dual_horizontal_stacked_combination",
|
|
1510
|
+
"100_dual_stacked_bar",
|
|
1511
|
+
"100_dual_stacked_column",
|
|
1512
|
+
"scatter",
|
|
1513
|
+
"heatmap",
|
|
1514
|
+
"timeseries_column",
|
|
1515
|
+
"timeseries_line",
|
|
1516
|
+
"timeseries_scatter",
|
|
1517
|
+
"timeseries_stacked_column",
|
|
1518
|
+
"timeseries_100_stacked_column",
|
|
1519
|
+
"timeseries_bullet",
|
|
1520
|
+
"timeseries_waterfall",
|
|
1521
|
+
"timeseries_stacked_combination"
|
|
1522
|
+
]
|
|
1523
|
+
}
|
|
1464
1524
|
}
|
|
1465
1525
|
},
|
|
1466
1526
|
"title": "JSON schema for SAP Insights Namespace",
|
|
@@ -1876,7 +1936,8 @@
|
|
|
1876
1936
|
"1.34.0",
|
|
1877
1937
|
"1.35.0",
|
|
1878
1938
|
"1.36.0",
|
|
1879
|
-
"1.37.0"
|
|
1939
|
+
"1.37.0",
|
|
1940
|
+
"1.38.0"
|
|
1880
1941
|
]
|
|
1881
1942
|
},
|
|
1882
1943
|
"designtime": {
|
|
@@ -3356,6 +3417,10 @@
|
|
|
3356
3417
|
"description": "Represents the text value of the column",
|
|
3357
3418
|
"type": "string"
|
|
3358
3419
|
},
|
|
3420
|
+
"additionalText": {
|
|
3421
|
+
"description": "Represents the additional text for the identifier column.",
|
|
3422
|
+
"type": "string"
|
|
3423
|
+
},
|
|
3359
3424
|
"icon": {
|
|
3360
3425
|
"description": "Represents column with icon",
|
|
3361
3426
|
"$ref": "#/definitions/icon"
|
|
@@ -3411,6 +3476,21 @@
|
|
|
3411
3476
|
"items": {
|
|
3412
3477
|
"$ref": "#/definitions/action"
|
|
3413
3478
|
}
|
|
3479
|
+
},
|
|
3480
|
+
"showStateIcon": {
|
|
3481
|
+
"description": "Defines if a default state icon is shown",
|
|
3482
|
+
"oneOf": [
|
|
3483
|
+
{
|
|
3484
|
+
"type": "boolean"
|
|
3485
|
+
},
|
|
3486
|
+
{
|
|
3487
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3488
|
+
}
|
|
3489
|
+
]
|
|
3490
|
+
},
|
|
3491
|
+
"customStateIcon": {
|
|
3492
|
+
"description": "The custom state icon",
|
|
3493
|
+
"type": "string"
|
|
3414
3494
|
}
|
|
3415
3495
|
}
|
|
3416
3496
|
},
|
|
@@ -3666,7 +3746,8 @@
|
|
|
3666
3746
|
"phone",
|
|
3667
3747
|
"email",
|
|
3668
3748
|
"link",
|
|
3669
|
-
"text"
|
|
3749
|
+
"text",
|
|
3750
|
+
"Image"
|
|
3670
3751
|
],
|
|
3671
3752
|
"default": "Default"
|
|
3672
3753
|
},
|
|
@@ -3787,6 +3868,10 @@
|
|
|
3787
3868
|
}
|
|
3788
3869
|
]
|
|
3789
3870
|
},
|
|
3871
|
+
"customStateIcon": {
|
|
3872
|
+
"description": "The custom state icon",
|
|
3873
|
+
"type": "string"
|
|
3874
|
+
},
|
|
3790
3875
|
"id": {
|
|
3791
3876
|
"description": "ID for input fields",
|
|
3792
3877
|
"type": "string"
|
|
@@ -3854,6 +3939,26 @@
|
|
|
3854
3939
|
"$ref": "#/definitions/simpleBinding"
|
|
3855
3940
|
}
|
|
3856
3941
|
]
|
|
3942
|
+
},
|
|
3943
|
+
"src": {
|
|
3944
|
+
"type": "string",
|
|
3945
|
+
"description": "Represents image source URL"
|
|
3946
|
+
},
|
|
3947
|
+
"alt": {
|
|
3948
|
+
"type": "string",
|
|
3949
|
+
"description": "The alternative text that is displayed in case the image is not available, or cannot be displayed."
|
|
3950
|
+
},
|
|
3951
|
+
"fullWidth": {
|
|
3952
|
+
"description": "Defines if the image will take the full width of the group, including the paddings. If set to false there will be padding. For best result use together with 'alignment': 'Stretched' for the group",
|
|
3953
|
+
"oneOf": [
|
|
3954
|
+
{
|
|
3955
|
+
"type": "boolean",
|
|
3956
|
+
"default": false
|
|
3957
|
+
},
|
|
3958
|
+
{
|
|
3959
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3960
|
+
}
|
|
3961
|
+
]
|
|
3857
3962
|
}
|
|
3858
3963
|
}
|
|
3859
3964
|
},
|
|
@@ -4258,6 +4363,10 @@
|
|
|
4258
4363
|
}
|
|
4259
4364
|
]
|
|
4260
4365
|
},
|
|
4366
|
+
"customStateIcon": {
|
|
4367
|
+
"description": "The custom state icon",
|
|
4368
|
+
"type": "string"
|
|
4369
|
+
},
|
|
4261
4370
|
"visible": {
|
|
4262
4371
|
"description": "Visibility of the item",
|
|
4263
4372
|
"oneOf": [
|
|
@@ -4268,6 +4377,10 @@
|
|
|
4268
4377
|
"$ref": "#/definitions/simpleBinding"
|
|
4269
4378
|
}
|
|
4270
4379
|
]
|
|
4380
|
+
},
|
|
4381
|
+
"title": {
|
|
4382
|
+
"description": "Title of the data point. This is just a placeholder to store the title, title will not be rendered on the screen. This is needed to prevent the loss of columnn names while transforming table card to list card.",
|
|
4383
|
+
"type": "string"
|
|
4271
4384
|
}
|
|
4272
4385
|
}
|
|
4273
4386
|
},
|
|
@@ -4352,7 +4465,7 @@
|
|
|
4352
4465
|
},
|
|
4353
4466
|
"highlight": {
|
|
4354
4467
|
"type": "string",
|
|
4355
|
-
"description": "The highlight of the item",
|
|
4468
|
+
"description": "The highlight state of the item",
|
|
4356
4469
|
"oneOf": [
|
|
4357
4470
|
{
|
|
4358
4471
|
"$ref": "#/definitions/state"
|
|
@@ -4362,6 +4475,10 @@
|
|
|
4362
4475
|
}
|
|
4363
4476
|
]
|
|
4364
4477
|
},
|
|
4478
|
+
"highlightText": {
|
|
4479
|
+
"type": "string",
|
|
4480
|
+
"description": "Defines the semantics of the 'highlight' property. It is used for accessibility purposes."
|
|
4481
|
+
},
|
|
4365
4482
|
"icon": {
|
|
4366
4483
|
"$ref": "#/definitions/icon"
|
|
4367
4484
|
},
|
|
@@ -5029,6 +5146,22 @@
|
|
|
5029
5146
|
"items": {
|
|
5030
5147
|
"$ref": "#/definitions/action"
|
|
5031
5148
|
}
|
|
5149
|
+
},
|
|
5150
|
+
"highlight": {
|
|
5151
|
+
"type": "string",
|
|
5152
|
+
"description": "The highlight state of the row",
|
|
5153
|
+
"oneOf": [
|
|
5154
|
+
{
|
|
5155
|
+
"$ref": "#/definitions/state"
|
|
5156
|
+
},
|
|
5157
|
+
{
|
|
5158
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5159
|
+
}
|
|
5160
|
+
]
|
|
5161
|
+
},
|
|
5162
|
+
"highlightText": {
|
|
5163
|
+
"type": "string",
|
|
5164
|
+
"description": "Defines the semantics of the 'highlight' property. It is used for accessibility purposes."
|
|
5032
5165
|
}
|
|
5033
5166
|
}
|
|
5034
5167
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* tslint: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,
|
|
@@ -174,7 +174,8 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
174
174
|
| "1.13.0"
|
|
175
175
|
| "1.14.0"
|
|
176
176
|
| "1.15.0"
|
|
177
|
-
| "1.16.0"
|
|
177
|
+
| "1.16.0"
|
|
178
|
+
| "1.17.0";
|
|
178
179
|
resources?: Resource;
|
|
179
180
|
/**
|
|
180
181
|
* Represents the explicit usage declaration for UI5 reuse components
|
|
@@ -371,6 +372,10 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
371
372
|
* Represents an indicator whether app variant is flex extension point enabled
|
|
372
373
|
*/
|
|
373
374
|
flexExtensionPointEnabled?: boolean;
|
|
375
|
+
/**
|
|
376
|
+
* Represents an indicator whether app is a cloud developer adaptation, filled automatically during build.
|
|
377
|
+
*/
|
|
378
|
+
isCloudDevAdaptation?: boolean;
|
|
374
379
|
[k: string]: unknown;
|
|
375
380
|
} & (
|
|
376
381
|
| {
|
|
@@ -684,7 +689,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
684
689
|
| "1.49.0"
|
|
685
690
|
| "1.50.0"
|
|
686
691
|
| "1.51.0"
|
|
687
|
-
| "1.52.0"
|
|
692
|
+
| "1.52.0"
|
|
693
|
+
| "1.53.0";
|
|
688
694
|
/**
|
|
689
695
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
690
696
|
*/
|
|
@@ -2963,7 +2969,7 @@ export interface ResizableLayoutVariantCardProperties {
|
|
|
2963
2969
|
* Represents Insights attributes
|
|
2964
2970
|
*/
|
|
2965
2971
|
export interface JSONSchemaForSAPInsightsNamespace {
|
|
2966
|
-
_version?: "1.0.0" | "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
|
|
2972
|
+
_version?: "1.0.0" | "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0";
|
|
2967
2973
|
/**
|
|
2968
2974
|
* Represents mandatory unique app identifier of the app containing self manifest.
|
|
2969
2975
|
*/
|
|
@@ -2993,7 +2999,7 @@ export interface JSONSchemaForSAPInsightsNamespace {
|
|
|
2993
2999
|
*/
|
|
2994
3000
|
visible?: boolean;
|
|
2995
3001
|
/**
|
|
2996
|
-
* Represents the display order of Insights card
|
|
3002
|
+
* Deprecated: Represents the display order of Insights card
|
|
2997
3003
|
*/
|
|
2998
3004
|
rank?: number;
|
|
2999
3005
|
/**
|
|
@@ -3010,6 +3016,54 @@ export interface JSONSchemaForSAPInsightsNamespace {
|
|
|
3010
3016
|
dtMiddleware?: string;
|
|
3011
3017
|
[k: string]: unknown;
|
|
3012
3018
|
};
|
|
3019
|
+
/**
|
|
3020
|
+
* New property representing the display order of Insights card
|
|
3021
|
+
*/
|
|
3022
|
+
ranking?: string;
|
|
3023
|
+
/**
|
|
3024
|
+
* Array of all supported chart type allowed for transformation.
|
|
3025
|
+
*/
|
|
3026
|
+
allowedChartTypes?: (
|
|
3027
|
+
| "bar"
|
|
3028
|
+
| "column"
|
|
3029
|
+
| "line"
|
|
3030
|
+
| "bullet"
|
|
3031
|
+
| "vertical_bullet"
|
|
3032
|
+
| "100_stacked_bar"
|
|
3033
|
+
| "100_stacked_column"
|
|
3034
|
+
| "waterfall"
|
|
3035
|
+
| "horizontal_waterfall"
|
|
3036
|
+
| "area"
|
|
3037
|
+
| "radar"
|
|
3038
|
+
| "combination"
|
|
3039
|
+
| "stacked_bar"
|
|
3040
|
+
| "stacked_column"
|
|
3041
|
+
| "stacked_combination"
|
|
3042
|
+
| "horizontal_stacked_combination"
|
|
3043
|
+
| "pie"
|
|
3044
|
+
| "donut"
|
|
3045
|
+
| "dual_bar"
|
|
3046
|
+
| "dual_column"
|
|
3047
|
+
| "dual_line"
|
|
3048
|
+
| "dual_stacked_bar"
|
|
3049
|
+
| "dual_stacked_column"
|
|
3050
|
+
| "dual_combination"
|
|
3051
|
+
| "dual_horizontal_combination"
|
|
3052
|
+
| "dual_stacked_combination"
|
|
3053
|
+
| "dual_horizontal_stacked_combination"
|
|
3054
|
+
| "100_dual_stacked_bar"
|
|
3055
|
+
| "100_dual_stacked_column"
|
|
3056
|
+
| "scatter"
|
|
3057
|
+
| "heatmap"
|
|
3058
|
+
| "timeseries_column"
|
|
3059
|
+
| "timeseries_line"
|
|
3060
|
+
| "timeseries_scatter"
|
|
3061
|
+
| "timeseries_stacked_column"
|
|
3062
|
+
| "timeseries_100_stacked_column"
|
|
3063
|
+
| "timeseries_bullet"
|
|
3064
|
+
| "timeseries_waterfall"
|
|
3065
|
+
| "timeseries_stacked_combination"
|
|
3066
|
+
)[];
|
|
3013
3067
|
}
|
|
3014
3068
|
/**
|
|
3015
3069
|
* Represents WDA specific attributes
|