@ui5/manifest 1.53.1 → 1.55.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 +9 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +107 -48
- package/schema_cil.json +26 -11
- package/types/manifest.d.ts +14 -7
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.55.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.55.0"></a>
|
|
8
|
+
## [v1.55.0] - 2023-06-01
|
|
9
|
+
|
|
10
|
+
<a name="v1.54.0"></a>
|
|
11
|
+
## [v1.54.0] - 2023-05-05
|
|
6
12
|
|
|
7
13
|
<a name="v1.53.1"></a>
|
|
8
14
|
## [v1.53.1] - 2023-04-05
|
|
@@ -31,6 +37,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
31
37
|
<a name="v1.48.1"></a>
|
|
32
38
|
## v1.48.1 - 2022-11-10
|
|
33
39
|
|
|
40
|
+
[v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
|
|
41
|
+
[v1.54.0]: https://github.com/SAP/ui5-manifest/compare/v1.53.1...v1.54.0
|
|
34
42
|
[v1.53.1]: https://github.com/SAP/ui5-manifest/compare/v1.53.0...v1.53.1
|
|
35
43
|
[v1.53.0]: https://github.com/SAP/ui5-manifest/compare/v1.52.1...v1.53.0
|
|
36
44
|
[v1.52.1]: https://github.com/SAP/ui5-manifest/compare/v1.52.0...v1.52.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -70,7 +70,9 @@
|
|
|
70
70
|
"1.50.0",
|
|
71
71
|
"1.51.0",
|
|
72
72
|
"1.52.0",
|
|
73
|
-
"1.53.0"
|
|
73
|
+
"1.53.0",
|
|
74
|
+
"1.54.0",
|
|
75
|
+
"1.55.0"
|
|
74
76
|
]
|
|
75
77
|
},
|
|
76
78
|
"start_url": {
|
|
@@ -111,7 +113,8 @@
|
|
|
111
113
|
"1.16.0",
|
|
112
114
|
"1.17.0",
|
|
113
115
|
"1.18.0",
|
|
114
|
-
"1.19.0"
|
|
116
|
+
"1.19.0",
|
|
117
|
+
"1.20.0"
|
|
115
118
|
]
|
|
116
119
|
},
|
|
117
120
|
"sourceTemplate": {
|
|
@@ -272,23 +275,23 @@
|
|
|
272
275
|
},
|
|
273
276
|
"title": {
|
|
274
277
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
275
|
-
"
|
|
278
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
276
279
|
},
|
|
277
280
|
"subTitle": {
|
|
278
281
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
279
|
-
"
|
|
282
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
280
283
|
},
|
|
281
284
|
"shortTitle": {
|
|
282
285
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
283
|
-
"
|
|
286
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
284
287
|
},
|
|
285
288
|
"info": {
|
|
286
289
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
287
|
-
"
|
|
290
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
288
291
|
},
|
|
289
292
|
"description": {
|
|
290
293
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
291
|
-
"
|
|
294
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
292
295
|
},
|
|
293
296
|
"tags": {
|
|
294
297
|
"description": "Represents array of keywords",
|
|
@@ -410,10 +413,6 @@
|
|
|
410
413
|
}
|
|
411
414
|
},
|
|
412
415
|
"definitions": {
|
|
413
|
-
"i18n_key": {
|
|
414
|
-
"type": "string",
|
|
415
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
416
|
-
},
|
|
417
416
|
"parameter": {
|
|
418
417
|
"type": "object",
|
|
419
418
|
"properties": {
|
|
@@ -1233,7 +1232,8 @@
|
|
|
1233
1232
|
"1.5.0",
|
|
1234
1233
|
"1.6.0",
|
|
1235
1234
|
"1.7.0",
|
|
1236
|
-
"1.8.0"
|
|
1235
|
+
"1.8.0",
|
|
1236
|
+
"1.9.0"
|
|
1237
1237
|
]
|
|
1238
1238
|
},
|
|
1239
1239
|
"globalFilterModel": {
|
|
@@ -1937,7 +1937,9 @@
|
|
|
1937
1937
|
"1.35.0",
|
|
1938
1938
|
"1.36.0",
|
|
1939
1939
|
"1.37.0",
|
|
1940
|
-
"1.38.0"
|
|
1940
|
+
"1.38.0",
|
|
1941
|
+
"1.39.0",
|
|
1942
|
+
"1.40.0"
|
|
1941
1943
|
]
|
|
1942
1944
|
},
|
|
1943
1945
|
"designtime": {
|
|
@@ -1953,6 +1955,18 @@
|
|
|
1953
1955
|
"description": "Markdown enablement for Adaptive Content",
|
|
1954
1956
|
"type": "boolean"
|
|
1955
1957
|
},
|
|
1958
|
+
"modelSizeLimit": {
|
|
1959
|
+
"description": "[Experimental] Represents the maximum number of entries that are used for list bindings.",
|
|
1960
|
+
"oneOf": [
|
|
1961
|
+
{
|
|
1962
|
+
"type": "number"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1966
|
+
}
|
|
1967
|
+
],
|
|
1968
|
+
"default": 1000
|
|
1969
|
+
},
|
|
1956
1970
|
"parameters": {
|
|
1957
1971
|
"description": "Map of parameters",
|
|
1958
1972
|
"type": "object",
|
|
@@ -2281,13 +2295,7 @@
|
|
|
2281
2295
|
}
|
|
2282
2296
|
}
|
|
2283
2297
|
}
|
|
2284
|
-
]
|
|
2285
|
-
"definitions": {
|
|
2286
|
-
"i18n_key": {
|
|
2287
|
-
"type": "string",
|
|
2288
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
2289
|
-
}
|
|
2290
|
-
}
|
|
2298
|
+
]
|
|
2291
2299
|
},
|
|
2292
2300
|
"sap.package": {
|
|
2293
2301
|
"title": "JSON schema for SAP.PACKAGE Namespace",
|
|
@@ -2308,7 +2316,8 @@
|
|
|
2308
2316
|
"type": "string",
|
|
2309
2317
|
"enum": [
|
|
2310
2318
|
"1.0.0",
|
|
2311
|
-
"1.1.0"
|
|
2319
|
+
"1.1.0",
|
|
2320
|
+
"1.2.0"
|
|
2312
2321
|
]
|
|
2313
2322
|
},
|
|
2314
2323
|
"id": {
|
|
@@ -2360,23 +2369,23 @@
|
|
|
2360
2369
|
},
|
|
2361
2370
|
"title": {
|
|
2362
2371
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2363
|
-
"
|
|
2372
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2364
2373
|
},
|
|
2365
2374
|
"subTitle": {
|
|
2366
2375
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2367
|
-
"
|
|
2376
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2368
2377
|
},
|
|
2369
2378
|
"shortTitle": {
|
|
2370
2379
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2371
|
-
"
|
|
2380
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2372
2381
|
},
|
|
2373
2382
|
"info": {
|
|
2374
2383
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2375
|
-
"
|
|
2384
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2376
2385
|
},
|
|
2377
2386
|
"description": {
|
|
2378
2387
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2379
|
-
"
|
|
2388
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2380
2389
|
},
|
|
2381
2390
|
"icon": {
|
|
2382
2391
|
"description": "Represents icon name or source URL for the package",
|
|
@@ -2473,7 +2482,8 @@
|
|
|
2473
2482
|
"type": "string",
|
|
2474
2483
|
"enum": [
|
|
2475
2484
|
"1.0.0",
|
|
2476
|
-
"1.1.0"
|
|
2485
|
+
"1.1.0",
|
|
2486
|
+
"1.2.0"
|
|
2477
2487
|
]
|
|
2478
2488
|
},
|
|
2479
2489
|
"id": {
|
|
@@ -2513,23 +2523,23 @@
|
|
|
2513
2523
|
},
|
|
2514
2524
|
"title": {
|
|
2515
2525
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2516
|
-
"
|
|
2526
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2517
2527
|
},
|
|
2518
2528
|
"subTitle": {
|
|
2519
2529
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2520
|
-
"
|
|
2530
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2521
2531
|
},
|
|
2522
2532
|
"shortTitle": {
|
|
2523
2533
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2524
|
-
"
|
|
2534
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2525
2535
|
},
|
|
2526
2536
|
"info": {
|
|
2527
2537
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2528
|
-
"
|
|
2538
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2529
2539
|
},
|
|
2530
2540
|
"description": {
|
|
2531
2541
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2532
|
-
"
|
|
2542
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2533
2543
|
},
|
|
2534
2544
|
"icon": {
|
|
2535
2545
|
"description": "Represents icon name or source URL for the artifact",
|
|
@@ -2563,9 +2573,20 @@
|
|
|
2563
2573
|
"type": "array",
|
|
2564
2574
|
"items": {
|
|
2565
2575
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2566
|
-
"
|
|
2576
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
2567
2577
|
}
|
|
2568
2578
|
},
|
|
2579
|
+
"i18n_key_string": {
|
|
2580
|
+
"anyOf": [
|
|
2581
|
+
{
|
|
2582
|
+
"type": "string",
|
|
2583
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"type": "string"
|
|
2587
|
+
}
|
|
2588
|
+
]
|
|
2589
|
+
},
|
|
2569
2590
|
"semanticversion": {
|
|
2570
2591
|
"description": "The version number of the schema in major.minor.patch format.",
|
|
2571
2592
|
"type": "string",
|
|
@@ -2643,6 +2664,13 @@
|
|
|
2643
2664
|
}
|
|
2644
2665
|
}
|
|
2645
2666
|
},
|
|
2667
|
+
"tag_0": {
|
|
2668
|
+
"type": "array",
|
|
2669
|
+
"items": {
|
|
2670
|
+
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2671
|
+
"type": "string"
|
|
2672
|
+
}
|
|
2673
|
+
},
|
|
2646
2674
|
"Microchart.StackedBar.Bar": {
|
|
2647
2675
|
"type": "object",
|
|
2648
2676
|
"additionalProperties": false,
|
|
@@ -3396,7 +3424,7 @@
|
|
|
3396
3424
|
"properties": {
|
|
3397
3425
|
"title": {
|
|
3398
3426
|
"description": "Represents a title of the column; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3399
|
-
"
|
|
3427
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
3400
3428
|
},
|
|
3401
3429
|
"width": {
|
|
3402
3430
|
"description": "Defines the width of the column",
|
|
@@ -3714,6 +3742,17 @@
|
|
|
3714
3742
|
"description": "Defines the label of the item",
|
|
3715
3743
|
"type": "string"
|
|
3716
3744
|
},
|
|
3745
|
+
"showColon": {
|
|
3746
|
+
"description": "Defines whether the colon next to the label is shown",
|
|
3747
|
+
"oneOf": [
|
|
3748
|
+
{
|
|
3749
|
+
"type": "boolean"
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3753
|
+
}
|
|
3754
|
+
]
|
|
3755
|
+
},
|
|
3717
3756
|
"value": {
|
|
3718
3757
|
"description": "Represents the text, which is associated with the label",
|
|
3719
3758
|
"oneOf": [
|
|
@@ -3722,6 +3761,19 @@
|
|
|
3722
3761
|
},
|
|
3723
3762
|
{
|
|
3724
3763
|
"type": "number"
|
|
3764
|
+
},
|
|
3765
|
+
{
|
|
3766
|
+
"type": "object",
|
|
3767
|
+
"additionalProperties": false,
|
|
3768
|
+
"properties": {
|
|
3769
|
+
"option": {
|
|
3770
|
+
"description": "The date range option",
|
|
3771
|
+
"type": "string"
|
|
3772
|
+
},
|
|
3773
|
+
"values": {
|
|
3774
|
+
"type": "array"
|
|
3775
|
+
}
|
|
3776
|
+
}
|
|
3725
3777
|
}
|
|
3726
3778
|
]
|
|
3727
3779
|
},
|
|
@@ -3742,6 +3794,8 @@
|
|
|
3742
3794
|
"ComboBox",
|
|
3743
3795
|
"TextArea",
|
|
3744
3796
|
"Input",
|
|
3797
|
+
"Duration",
|
|
3798
|
+
"DateRange",
|
|
3745
3799
|
"RatingIndicator",
|
|
3746
3800
|
"phone",
|
|
3747
3801
|
"email",
|
|
@@ -3972,7 +4026,7 @@
|
|
|
3972
4026
|
"properties": {
|
|
3973
4027
|
"title": {
|
|
3974
4028
|
"description": "Represents a title of the object group; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3975
|
-
"
|
|
4029
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
3976
4030
|
},
|
|
3977
4031
|
"titleMaxLines": {
|
|
3978
4032
|
"description": "[Experimental] Limits the number of lines for wrapping the group title.",
|
|
@@ -4390,7 +4444,7 @@
|
|
|
4390
4444
|
"properties": {
|
|
4391
4445
|
"label": {
|
|
4392
4446
|
"description": "Represents a label of the field; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4393
|
-
"
|
|
4447
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4394
4448
|
},
|
|
4395
4449
|
"value": {
|
|
4396
4450
|
"type": "string",
|
|
@@ -4786,7 +4840,7 @@
|
|
|
4786
4840
|
},
|
|
4787
4841
|
"title": {
|
|
4788
4842
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4789
|
-
"
|
|
4843
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4790
4844
|
},
|
|
4791
4845
|
"titleMaxLines": {
|
|
4792
4846
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4802,7 +4856,7 @@
|
|
|
4802
4856
|
},
|
|
4803
4857
|
"subTitle": {
|
|
4804
4858
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4805
|
-
"
|
|
4859
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4806
4860
|
},
|
|
4807
4861
|
"subTitleMaxLines": {
|
|
4808
4862
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -4905,7 +4959,7 @@
|
|
|
4905
4959
|
},
|
|
4906
4960
|
"title": {
|
|
4907
4961
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4908
|
-
"
|
|
4962
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4909
4963
|
},
|
|
4910
4964
|
"titleMaxLines": {
|
|
4911
4965
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4921,7 +4975,7 @@
|
|
|
4921
4975
|
},
|
|
4922
4976
|
"subTitle": {
|
|
4923
4977
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4924
|
-
"
|
|
4978
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
4925
4979
|
},
|
|
4926
4980
|
"subTitleMaxLines": {
|
|
4927
4981
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -5585,10 +5639,6 @@
|
|
|
5585
5639
|
}
|
|
5586
5640
|
]
|
|
5587
5641
|
},
|
|
5588
|
-
"simpleBinding": {
|
|
5589
|
-
"type": "string",
|
|
5590
|
-
"pattern": "\\{.*\\}"
|
|
5591
|
-
},
|
|
5592
5642
|
"data": {
|
|
5593
5643
|
"description": "Represents request and response attributes",
|
|
5594
5644
|
"type": "object",
|
|
@@ -5937,6 +5987,10 @@
|
|
|
5937
5987
|
}
|
|
5938
5988
|
}
|
|
5939
5989
|
},
|
|
5990
|
+
"simpleBinding": {
|
|
5991
|
+
"type": "string",
|
|
5992
|
+
"pattern": "\\{.*\\}"
|
|
5993
|
+
},
|
|
5940
5994
|
"definingRequest": {
|
|
5941
5995
|
"type": "object",
|
|
5942
5996
|
"additionalProperties": false,
|
|
@@ -6328,6 +6382,11 @@
|
|
|
6328
6382
|
"type": "boolean",
|
|
6329
6383
|
"default": true
|
|
6330
6384
|
},
|
|
6385
|
+
"showRefresh": {
|
|
6386
|
+
"description": "Represents the flag to show/hide individual card's functionality to refresh the card",
|
|
6387
|
+
"type": "boolean",
|
|
6388
|
+
"default": true
|
|
6389
|
+
},
|
|
6331
6390
|
"defaultSpan": {
|
|
6332
6391
|
"$ref": "#/definitions/defaultSpanDef"
|
|
6333
6392
|
},
|
|
@@ -8243,19 +8302,19 @@
|
|
|
8243
8302
|
},
|
|
8244
8303
|
"title": {
|
|
8245
8304
|
"description": "Represents a title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8246
|
-
"
|
|
8305
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8247
8306
|
},
|
|
8248
8307
|
"subTitle": {
|
|
8249
8308
|
"description": "Represents a subtitle; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8250
|
-
"
|
|
8309
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8251
8310
|
},
|
|
8252
8311
|
"shortTitle": {
|
|
8253
8312
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8254
|
-
"
|
|
8313
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8255
8314
|
},
|
|
8256
8315
|
"info": {
|
|
8257
8316
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8258
|
-
"
|
|
8317
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8259
8318
|
},
|
|
8260
8319
|
"displayMode": {
|
|
8261
8320
|
"description": "Represents the display mode of the tile",
|
package/schema_cil.json
CHANGED
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"1.22.0",
|
|
43
43
|
"1.23.0",
|
|
44
44
|
"1.24.0",
|
|
45
|
-
"1.25.0"
|
|
45
|
+
"1.25.0",
|
|
46
|
+
"1.26.0"
|
|
46
47
|
]
|
|
47
48
|
},
|
|
48
49
|
"start_url": {
|
|
@@ -75,7 +76,8 @@
|
|
|
75
76
|
"1.8.0",
|
|
76
77
|
"1.9.0",
|
|
77
78
|
"1.10.0",
|
|
78
|
-
"1.11.0"
|
|
79
|
+
"1.11.0",
|
|
80
|
+
"1.12.0"
|
|
79
81
|
]
|
|
80
82
|
},
|
|
81
83
|
"sourceTemplate": {
|
|
@@ -216,19 +218,19 @@
|
|
|
216
218
|
},
|
|
217
219
|
"title": {
|
|
218
220
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
219
|
-
"
|
|
221
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
220
222
|
},
|
|
221
223
|
"subTitle": {
|
|
222
224
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
223
|
-
"
|
|
225
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
224
226
|
},
|
|
225
227
|
"shortTitle": {
|
|
226
228
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
227
|
-
"
|
|
229
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
228
230
|
},
|
|
229
231
|
"description": {
|
|
230
232
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
231
|
-
"
|
|
233
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
232
234
|
},
|
|
233
235
|
"ach": {
|
|
234
236
|
"description": "Represents application component hierarchy",
|
|
@@ -276,10 +278,6 @@
|
|
|
276
278
|
"version": {
|
|
277
279
|
"type": "string"
|
|
278
280
|
},
|
|
279
|
-
"i18n_key": {
|
|
280
|
-
"type": "string",
|
|
281
|
-
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
282
|
-
},
|
|
283
281
|
"objectName": {
|
|
284
282
|
"type": "string",
|
|
285
283
|
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
@@ -914,7 +912,8 @@
|
|
|
914
912
|
"1.5.0",
|
|
915
913
|
"1.6.0",
|
|
916
914
|
"1.7.0",
|
|
917
|
-
"1.8.0"
|
|
915
|
+
"1.8.0",
|
|
916
|
+
"1.9.0"
|
|
918
917
|
]
|
|
919
918
|
},
|
|
920
919
|
"globalFilterModel": {
|
|
@@ -1831,6 +1830,11 @@
|
|
|
1831
1830
|
"type": "boolean",
|
|
1832
1831
|
"default": true
|
|
1833
1832
|
},
|
|
1833
|
+
"showRefresh": {
|
|
1834
|
+
"description": "Represents the flag to show/hide individual card's functionality to refresh the card",
|
|
1835
|
+
"type": "boolean",
|
|
1836
|
+
"default": true
|
|
1837
|
+
},
|
|
1834
1838
|
"defaultSpan": {
|
|
1835
1839
|
"$ref": "#/definitions/defaultSpanDef"
|
|
1836
1840
|
},
|
|
@@ -3423,6 +3427,17 @@
|
|
|
3423
3427
|
}
|
|
3424
3428
|
}
|
|
3425
3429
|
},
|
|
3430
|
+
"i18n_key_string": {
|
|
3431
|
+
"anyOf": [
|
|
3432
|
+
{
|
|
3433
|
+
"type": "string",
|
|
3434
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"type": "string"
|
|
3438
|
+
}
|
|
3439
|
+
]
|
|
3440
|
+
},
|
|
3426
3441
|
"enhanceWithSetting": {
|
|
3427
3442
|
"oneOf": [
|
|
3428
3443
|
{
|
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,
|
|
@@ -143,7 +143,7 @@ export type EnhanceWithSetting1 =
|
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
145
|
export type Version = string;
|
|
146
|
-
export type Tag = string[];
|
|
146
|
+
export type Tag = (string | string)[];
|
|
147
147
|
/**
|
|
148
148
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
149
149
|
* via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
|
|
@@ -690,7 +690,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
690
690
|
| "1.50.0"
|
|
691
691
|
| "1.51.0"
|
|
692
692
|
| "1.52.0"
|
|
693
|
-
| "1.53.0"
|
|
693
|
+
| "1.53.0"
|
|
694
|
+
| "1.54.0"
|
|
695
|
+
| "1.55.0";
|
|
694
696
|
/**
|
|
695
697
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
696
698
|
*/
|
|
@@ -751,7 +753,8 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
751
753
|
| "1.16.0"
|
|
752
754
|
| "1.17.0"
|
|
753
755
|
| "1.18.0"
|
|
754
|
-
| "1.19.0"
|
|
756
|
+
| "1.19.0"
|
|
757
|
+
| "1.20.0";
|
|
755
758
|
/**
|
|
756
759
|
* Represents the template from which the app was generated
|
|
757
760
|
*/
|
|
@@ -2475,7 +2478,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2475
2478
|
/**
|
|
2476
2479
|
* Represents attributes format version. It is managed by namespace owner
|
|
2477
2480
|
*/
|
|
2478
|
-
_version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0" | "1.6.0" | "1.7.0" | "1.8.0";
|
|
2481
|
+
_version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0" | "1.5.0" | "1.6.0" | "1.7.0" | "1.8.0" | "1.9.0";
|
|
2479
2482
|
/**
|
|
2480
2483
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2481
2484
|
*/
|
|
@@ -2753,6 +2756,10 @@ export interface CardSetting {
|
|
|
2753
2756
|
* Represents the flag to enable/disable individual card's functionality to add them to insight
|
|
2754
2757
|
*/
|
|
2755
2758
|
enableAddToInsights?: boolean;
|
|
2759
|
+
/**
|
|
2760
|
+
* Represents the flag to show/hide individual card's functionality to refresh the card
|
|
2761
|
+
*/
|
|
2762
|
+
showRefresh?: boolean;
|
|
2756
2763
|
defaultSpan?: DefaultSpanDef;
|
|
2757
2764
|
/**
|
|
2758
2765
|
* Represents the cards for which authorization is required
|
|
@@ -3333,7 +3340,7 @@ export interface JSONSchemaForSAPPACKAGENamespace {
|
|
|
3333
3340
|
/**
|
|
3334
3341
|
* Represents SAP.PACKAGE attributes format version. It is managed by namespace owner
|
|
3335
3342
|
*/
|
|
3336
|
-
_version?: "1.0.0" | "1.1.0";
|
|
3343
|
+
_version?: "1.0.0" | "1.1.0" | "1.2.0";
|
|
3337
3344
|
/**
|
|
3338
3345
|
* Represents mandatory unique package identifier
|
|
3339
3346
|
*/
|
|
@@ -3510,7 +3517,7 @@ export interface JSONSchemaForSAPARTIFACTNamespace {
|
|
|
3510
3517
|
/**
|
|
3511
3518
|
* Represents SAP.ARTIFACT attributes format version. It is managed by namespace owner
|
|
3512
3519
|
*/
|
|
3513
|
-
_version?: "1.0.0" | "1.1.0";
|
|
3520
|
+
_version?: "1.0.0" | "1.1.0" | "1.2.0";
|
|
3514
3521
|
/**
|
|
3515
3522
|
* Represents mandatory unique artifact identifier
|
|
3516
3523
|
*/
|