@ui5/manifest 1.57.0 → 1.59.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 +3 -2
- package/package.json +1 -1
- package/schema.json +188 -44
- package/schema_cil.json +62 -12
- package/types/manifest.d.ts +7 -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.59.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.59.0"></a>
|
|
8
|
+
## [v1.59.0] - 2023-08-28
|
|
6
9
|
|
|
7
10
|
<a name="v1.57.0"></a>
|
|
8
11
|
## [v1.57.0] - 2023-07-27
|
|
@@ -43,6 +46,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
43
46
|
<a name="v1.48.1"></a>
|
|
44
47
|
## v1.48.1 - 2022-11-10
|
|
45
48
|
|
|
49
|
+
[v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
|
|
46
50
|
[v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
|
|
47
51
|
[v1.56.0]: https://github.com/SAP/ui5-manifest/compare/v1.55.0...v1.56.0
|
|
48
52
|
[v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@ui5/manifest","version":"1.
|
|
1
|
+
{"name":"@ui5/manifest","version":"1.59.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","postversion":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
|
package/schema.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"1.54.0",
|
|
75
75
|
"1.55.0",
|
|
76
76
|
"1.56.0",
|
|
77
|
-
"1.57.0"
|
|
77
|
+
"1.57.0",
|
|
78
|
+
"1.58.0"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
"start_url": {
|
|
@@ -277,23 +278,43 @@
|
|
|
277
278
|
},
|
|
278
279
|
"title": {
|
|
279
280
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
280
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
281
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
282
|
+
"i18n": {
|
|
283
|
+
"type": "XTIT",
|
|
284
|
+
"comment": "Application title"
|
|
285
|
+
}
|
|
281
286
|
},
|
|
282
287
|
"subTitle": {
|
|
283
288
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
284
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
289
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
290
|
+
"i18n": {
|
|
291
|
+
"type": "XTIT",
|
|
292
|
+
"comment": "Application subtitle"
|
|
293
|
+
}
|
|
285
294
|
},
|
|
286
295
|
"shortTitle": {
|
|
287
296
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
288
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
297
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
298
|
+
"i18n": {
|
|
299
|
+
"type": "XTIT",
|
|
300
|
+
"comment": "Shorter version of the application title"
|
|
301
|
+
}
|
|
289
302
|
},
|
|
290
303
|
"info": {
|
|
291
304
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
292
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
305
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
306
|
+
"i18n": {
|
|
307
|
+
"type": "YINF",
|
|
308
|
+
"comment": "Additional information to the application title"
|
|
309
|
+
}
|
|
293
310
|
},
|
|
294
311
|
"description": {
|
|
295
312
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
296
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
313
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
314
|
+
"i18n": {
|
|
315
|
+
"type": "YDES",
|
|
316
|
+
"comment": "Application description"
|
|
317
|
+
}
|
|
297
318
|
},
|
|
298
319
|
"tags": {
|
|
299
320
|
"description": "Represents array of keywords",
|
|
@@ -1235,7 +1256,8 @@
|
|
|
1235
1256
|
"1.6.0",
|
|
1236
1257
|
"1.7.0",
|
|
1237
1258
|
"1.8.0",
|
|
1238
|
-
"1.9.0"
|
|
1259
|
+
"1.9.0",
|
|
1260
|
+
"1.10.0"
|
|
1239
1261
|
]
|
|
1240
1262
|
},
|
|
1241
1263
|
"globalFilterModel": {
|
|
@@ -1297,6 +1319,11 @@
|
|
|
1297
1319
|
"type": "boolean",
|
|
1298
1320
|
"default": true
|
|
1299
1321
|
},
|
|
1322
|
+
"enableLazyRendering": {
|
|
1323
|
+
"description": "Enable loading of cards when they enter viewport",
|
|
1324
|
+
"type": "boolean",
|
|
1325
|
+
"default": false
|
|
1326
|
+
},
|
|
1300
1327
|
"refreshStrategyOnAppRestore": {
|
|
1301
1328
|
"description": "Represents the refresh strategies configured for OVP while coming back to the source app",
|
|
1302
1329
|
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
@@ -2376,23 +2403,43 @@
|
|
|
2376
2403
|
},
|
|
2377
2404
|
"title": {
|
|
2378
2405
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2379
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2406
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2407
|
+
"i18n": {
|
|
2408
|
+
"type": "XTIT",
|
|
2409
|
+
"comment": "Package title"
|
|
2410
|
+
}
|
|
2380
2411
|
},
|
|
2381
2412
|
"subTitle": {
|
|
2382
2413
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2383
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2414
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2415
|
+
"i18n": {
|
|
2416
|
+
"type": "XTIT",
|
|
2417
|
+
"comment": "Package subtitle"
|
|
2418
|
+
}
|
|
2384
2419
|
},
|
|
2385
2420
|
"shortTitle": {
|
|
2386
2421
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2387
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2422
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2423
|
+
"i18n": {
|
|
2424
|
+
"type": "XTIT",
|
|
2425
|
+
"comment": "Shorter version of the package title"
|
|
2426
|
+
}
|
|
2388
2427
|
},
|
|
2389
2428
|
"info": {
|
|
2390
2429
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2391
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2430
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2431
|
+
"i18n": {
|
|
2432
|
+
"type": "YINF",
|
|
2433
|
+
"comment": "Additional information to the package title"
|
|
2434
|
+
}
|
|
2392
2435
|
},
|
|
2393
2436
|
"description": {
|
|
2394
2437
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2395
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2438
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2439
|
+
"i18n": {
|
|
2440
|
+
"type": "YDES",
|
|
2441
|
+
"comment": "Package description"
|
|
2442
|
+
}
|
|
2396
2443
|
},
|
|
2397
2444
|
"icon": {
|
|
2398
2445
|
"description": "Represents icon name or source URL for the package",
|
|
@@ -2530,23 +2577,43 @@
|
|
|
2530
2577
|
},
|
|
2531
2578
|
"title": {
|
|
2532
2579
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2533
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2580
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2581
|
+
"i18n": {
|
|
2582
|
+
"type": "XTIT",
|
|
2583
|
+
"comment": "Artifact title"
|
|
2584
|
+
}
|
|
2534
2585
|
},
|
|
2535
2586
|
"subTitle": {
|
|
2536
2587
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2537
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2588
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2589
|
+
"i18n": {
|
|
2590
|
+
"type": "XTIT",
|
|
2591
|
+
"comment": "Artifact subtitle"
|
|
2592
|
+
}
|
|
2538
2593
|
},
|
|
2539
2594
|
"shortTitle": {
|
|
2540
2595
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2541
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2596
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2597
|
+
"i18n": {
|
|
2598
|
+
"type": "XTIT",
|
|
2599
|
+
"comment": "Shorter version of the artifact title"
|
|
2600
|
+
}
|
|
2542
2601
|
},
|
|
2543
2602
|
"info": {
|
|
2544
2603
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2545
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2604
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2605
|
+
"i18n": {
|
|
2606
|
+
"type": "YINF",
|
|
2607
|
+
"comment": "Additional information to the artifact title"
|
|
2608
|
+
}
|
|
2546
2609
|
},
|
|
2547
2610
|
"description": {
|
|
2548
2611
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2549
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2612
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2613
|
+
"i18n": {
|
|
2614
|
+
"type": "YDES",
|
|
2615
|
+
"comment": "Artifact description"
|
|
2616
|
+
}
|
|
2550
2617
|
},
|
|
2551
2618
|
"icon": {
|
|
2552
2619
|
"description": "Represents icon name or source URL for the artifact",
|
|
@@ -2646,11 +2713,12 @@
|
|
|
2646
2713
|
}
|
|
2647
2714
|
},
|
|
2648
2715
|
"definitions": {
|
|
2649
|
-
"
|
|
2716
|
+
"tag_0": {
|
|
2650
2717
|
"type": "array",
|
|
2651
2718
|
"items": {
|
|
2652
2719
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2653
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2720
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2721
|
+
"type": "string"
|
|
2654
2722
|
}
|
|
2655
2723
|
},
|
|
2656
2724
|
"i18n_key_string": {
|
|
@@ -2741,13 +2809,6 @@
|
|
|
2741
2809
|
}
|
|
2742
2810
|
}
|
|
2743
2811
|
},
|
|
2744
|
-
"tag_0": {
|
|
2745
|
-
"type": "array",
|
|
2746
|
-
"items": {
|
|
2747
|
-
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2748
|
-
"type": "string"
|
|
2749
|
-
}
|
|
2750
|
-
},
|
|
2751
2812
|
"Microchart.StackedBar.Bar": {
|
|
2752
2813
|
"type": "object",
|
|
2753
2814
|
"additionalProperties": false,
|
|
@@ -3544,7 +3605,11 @@
|
|
|
3544
3605
|
"properties": {
|
|
3545
3606
|
"title": {
|
|
3546
3607
|
"description": "Represents a title of the column; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3547
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
3608
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
3609
|
+
"i18n": {
|
|
3610
|
+
"type": "XCOL",
|
|
3611
|
+
"comment": "Column title"
|
|
3612
|
+
}
|
|
3548
3613
|
},
|
|
3549
3614
|
"width": {
|
|
3550
3615
|
"description": "Defines the width of the column",
|
|
@@ -4146,7 +4211,11 @@
|
|
|
4146
4211
|
"properties": {
|
|
4147
4212
|
"title": {
|
|
4148
4213
|
"description": "Represents a title of the object group; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4149
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
4214
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
4215
|
+
"i18n": {
|
|
4216
|
+
"type": "XGRP",
|
|
4217
|
+
"comment": "Object group title"
|
|
4218
|
+
}
|
|
4150
4219
|
},
|
|
4151
4220
|
"titleMaxLines": {
|
|
4152
4221
|
"description": "[Experimental] Limits the number of lines for wrapping the group title.",
|
|
@@ -4553,7 +4622,11 @@
|
|
|
4553
4622
|
"properties": {
|
|
4554
4623
|
"label": {
|
|
4555
4624
|
"description": "Represents a label of the field; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4556
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
4625
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
4626
|
+
"i18n": {
|
|
4627
|
+
"type": "XFLD",
|
|
4628
|
+
"comment": "Field label"
|
|
4629
|
+
}
|
|
4557
4630
|
},
|
|
4558
4631
|
"value": {
|
|
4559
4632
|
"type": "string",
|
|
@@ -4965,7 +5038,11 @@
|
|
|
4965
5038
|
},
|
|
4966
5039
|
"title": {
|
|
4967
5040
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4968
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5041
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5042
|
+
"i18n": {
|
|
5043
|
+
"type": "XTIT",
|
|
5044
|
+
"comment": "Header title"
|
|
5045
|
+
}
|
|
4969
5046
|
},
|
|
4970
5047
|
"titleMaxLines": {
|
|
4971
5048
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4981,7 +5058,11 @@
|
|
|
4981
5058
|
},
|
|
4982
5059
|
"subTitle": {
|
|
4983
5060
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4984
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5061
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5062
|
+
"i18n": {
|
|
5063
|
+
"type": "XTIT",
|
|
5064
|
+
"comment": "Header subtitle"
|
|
5065
|
+
}
|
|
4985
5066
|
},
|
|
4986
5067
|
"subTitleMaxLines": {
|
|
4987
5068
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -5084,7 +5165,11 @@
|
|
|
5084
5165
|
},
|
|
5085
5166
|
"title": {
|
|
5086
5167
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5087
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5168
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5169
|
+
"i18n": {
|
|
5170
|
+
"type": "XTIT",
|
|
5171
|
+
"comment": "Header title"
|
|
5172
|
+
}
|
|
5088
5173
|
},
|
|
5089
5174
|
"titleMaxLines": {
|
|
5090
5175
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -5100,7 +5185,11 @@
|
|
|
5100
5185
|
},
|
|
5101
5186
|
"subTitle": {
|
|
5102
5187
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5103
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5188
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5189
|
+
"i18n": {
|
|
5190
|
+
"type": "XTIT",
|
|
5191
|
+
"comment": "Header subtitle"
|
|
5192
|
+
}
|
|
5104
5193
|
},
|
|
5105
5194
|
"subTitleMaxLines": {
|
|
5106
5195
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -6196,7 +6285,11 @@
|
|
|
6196
6285
|
"text": {
|
|
6197
6286
|
"description": "Text displayed for extended actions in Quick View",
|
|
6198
6287
|
"type": "string",
|
|
6199
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6288
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6289
|
+
"i18n": {
|
|
6290
|
+
"type": "XFLD",
|
|
6291
|
+
"comment": "Label for extended actions in Quick View Cards"
|
|
6292
|
+
}
|
|
6200
6293
|
},
|
|
6201
6294
|
"press": {
|
|
6202
6295
|
"description": "Name of the press handler for extended actions in Quick View",
|
|
@@ -6400,27 +6493,47 @@
|
|
|
6400
6493
|
"category": {
|
|
6401
6494
|
"description": "Represents the category of the card- used in the card header",
|
|
6402
6495
|
"type": "string",
|
|
6403
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6496
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6497
|
+
"i18n": {
|
|
6498
|
+
"type": "XTIT",
|
|
6499
|
+
"comment": "Card category which is displayed in the card header"
|
|
6500
|
+
}
|
|
6404
6501
|
},
|
|
6405
6502
|
"itemText": {
|
|
6406
6503
|
"description": "Represents the user defined string in placeholder card",
|
|
6407
6504
|
"type": "string",
|
|
6408
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6505
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6506
|
+
"i18n": {
|
|
6507
|
+
"type": "XALT",
|
|
6508
|
+
"comment": "Text in placeholder card"
|
|
6509
|
+
}
|
|
6409
6510
|
},
|
|
6410
6511
|
"title": {
|
|
6411
6512
|
"description": "Represents language-dependent title of the card - used in the card header",
|
|
6412
6513
|
"type": "string",
|
|
6413
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6514
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6515
|
+
"i18n": {
|
|
6516
|
+
"type": "XTIT",
|
|
6517
|
+
"comment": "Card title which is displayed in the card header"
|
|
6518
|
+
}
|
|
6414
6519
|
},
|
|
6415
6520
|
"subTitle": {
|
|
6416
6521
|
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
6417
6522
|
"type": "string",
|
|
6418
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6523
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6524
|
+
"i18n": {
|
|
6525
|
+
"type": "XTIT",
|
|
6526
|
+
"comment": "Card subtitle which is displayed in the card header"
|
|
6527
|
+
}
|
|
6419
6528
|
},
|
|
6420
6529
|
"valueSelectionInfo": {
|
|
6421
6530
|
"description": "Represents things like people, number of items",
|
|
6422
6531
|
"type": "string",
|
|
6423
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6532
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6533
|
+
"i18n": {
|
|
6534
|
+
"type": "XFLD",
|
|
6535
|
+
"comment": "Card KPI label"
|
|
6536
|
+
}
|
|
6424
6537
|
},
|
|
6425
6538
|
"entitySet": {
|
|
6426
6539
|
"description": "Represents the entity set that will be displayed in this card",
|
|
@@ -6859,7 +6972,11 @@
|
|
|
6859
6972
|
"title": {
|
|
6860
6973
|
"description": "Represents the title for the content of the reuse component",
|
|
6861
6974
|
"type": "string",
|
|
6862
|
-
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
6975
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$",
|
|
6976
|
+
"i18n": {
|
|
6977
|
+
"type": "XTIT",
|
|
6978
|
+
"comment": "Reuse component title"
|
|
6979
|
+
}
|
|
6863
6980
|
},
|
|
6864
6981
|
"binding": {
|
|
6865
6982
|
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
|
@@ -8457,19 +8574,35 @@
|
|
|
8457
8574
|
},
|
|
8458
8575
|
"title": {
|
|
8459
8576
|
"description": "Represents a title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8460
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8577
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8578
|
+
"i18n": {
|
|
8579
|
+
"type": "XTIT",
|
|
8580
|
+
"comment": "Application title"
|
|
8581
|
+
}
|
|
8461
8582
|
},
|
|
8462
8583
|
"subTitle": {
|
|
8463
8584
|
"description": "Represents a subtitle; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8464
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8585
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8586
|
+
"i18n": {
|
|
8587
|
+
"type": "XTIT",
|
|
8588
|
+
"comment": "Application subtitle"
|
|
8589
|
+
}
|
|
8465
8590
|
},
|
|
8466
8591
|
"shortTitle": {
|
|
8467
8592
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8468
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8593
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8594
|
+
"i18n": {
|
|
8595
|
+
"type": "XTIT",
|
|
8596
|
+
"comment": "Shorter version of the application title"
|
|
8597
|
+
}
|
|
8469
8598
|
},
|
|
8470
8599
|
"info": {
|
|
8471
8600
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8472
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8601
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8602
|
+
"i18n": {
|
|
8603
|
+
"type": "YINF",
|
|
8604
|
+
"comment": "Additional information to the application title"
|
|
8605
|
+
}
|
|
8473
8606
|
},
|
|
8474
8607
|
"displayMode": {
|
|
8475
8608
|
"description": "Represents the display mode of the tile",
|
|
@@ -8542,6 +8675,17 @@
|
|
|
8542
8675
|
}
|
|
8543
8676
|
]
|
|
8544
8677
|
},
|
|
8678
|
+
"tag": {
|
|
8679
|
+
"type": "array",
|
|
8680
|
+
"items": {
|
|
8681
|
+
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8682
|
+
"$ref": "#/definitions/i18n_key_string"
|
|
8683
|
+
},
|
|
8684
|
+
"i18n": {
|
|
8685
|
+
"type": "XFLD",
|
|
8686
|
+
"comment": "Represents a tag"
|
|
8687
|
+
}
|
|
8688
|
+
},
|
|
8545
8689
|
"enhanceWithSetting": {
|
|
8546
8690
|
"oneOf": [
|
|
8547
8691
|
{
|
package/schema_cil.json
CHANGED
|
@@ -218,19 +218,35 @@
|
|
|
218
218
|
},
|
|
219
219
|
"title": {
|
|
220
220
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
221
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
221
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
222
|
+
"i18n": {
|
|
223
|
+
"type": "XTIT",
|
|
224
|
+
"comment": "Application title"
|
|
225
|
+
}
|
|
222
226
|
},
|
|
223
227
|
"subTitle": {
|
|
224
228
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
225
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
229
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
230
|
+
"i18n": {
|
|
231
|
+
"type": "XTIT",
|
|
232
|
+
"comment": "Application subtitle"
|
|
233
|
+
}
|
|
226
234
|
},
|
|
227
235
|
"shortTitle": {
|
|
228
236
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
229
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
237
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
238
|
+
"i18n": {
|
|
239
|
+
"type": "XTIT",
|
|
240
|
+
"comment": "Shorter version of the application title"
|
|
241
|
+
}
|
|
230
242
|
},
|
|
231
243
|
"description": {
|
|
232
244
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
233
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
245
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
246
|
+
"i18n": {
|
|
247
|
+
"type": "YDES",
|
|
248
|
+
"comment": "Application description"
|
|
249
|
+
}
|
|
234
250
|
},
|
|
235
251
|
"ach": {
|
|
236
252
|
"description": "Represents application component hierarchy",
|
|
@@ -898,7 +914,8 @@
|
|
|
898
914
|
"1.6.0",
|
|
899
915
|
"1.7.0",
|
|
900
916
|
"1.8.0",
|
|
901
|
-
"1.9.0"
|
|
917
|
+
"1.9.0",
|
|
918
|
+
"1.10.0"
|
|
902
919
|
]
|
|
903
920
|
},
|
|
904
921
|
"globalFilterModel": {
|
|
@@ -960,6 +977,11 @@
|
|
|
960
977
|
"type": "boolean",
|
|
961
978
|
"default": true
|
|
962
979
|
},
|
|
980
|
+
"enableLazyRendering": {
|
|
981
|
+
"description": "Enable loading of cards when they enter viewport",
|
|
982
|
+
"type": "boolean",
|
|
983
|
+
"default": false
|
|
984
|
+
},
|
|
963
985
|
"refreshStrategyOnAppRestore": {
|
|
964
986
|
"description": "Represents the refresh strategies configured for OVP while coming back to the source app",
|
|
965
987
|
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
@@ -1493,7 +1515,11 @@
|
|
|
1493
1515
|
"text": {
|
|
1494
1516
|
"description": "Text displayed for extended actions in Quick View",
|
|
1495
1517
|
"type": "string",
|
|
1496
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1518
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1519
|
+
"i18n": {
|
|
1520
|
+
"type": "XFLD",
|
|
1521
|
+
"comment": "Label for extended actions in Quick View Cards"
|
|
1522
|
+
}
|
|
1497
1523
|
},
|
|
1498
1524
|
"press": {
|
|
1499
1525
|
"description": "Name of the press handler for extended actions in Quick View",
|
|
@@ -1697,27 +1723,47 @@
|
|
|
1697
1723
|
"category": {
|
|
1698
1724
|
"description": "Represents the category of the card- used in the card header",
|
|
1699
1725
|
"type": "string",
|
|
1700
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1726
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1727
|
+
"i18n": {
|
|
1728
|
+
"type": "XTIT",
|
|
1729
|
+
"comment": "Card category which is displayed in the card header"
|
|
1730
|
+
}
|
|
1701
1731
|
},
|
|
1702
1732
|
"itemText": {
|
|
1703
1733
|
"description": "Represents the user defined string in placeholder card",
|
|
1704
1734
|
"type": "string",
|
|
1705
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1735
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1736
|
+
"i18n": {
|
|
1737
|
+
"type": "XALT",
|
|
1738
|
+
"comment": "Text in placeholder card"
|
|
1739
|
+
}
|
|
1706
1740
|
},
|
|
1707
1741
|
"title": {
|
|
1708
1742
|
"description": "Represents language-dependent title of the card - used in the card header",
|
|
1709
1743
|
"type": "string",
|
|
1710
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1744
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1745
|
+
"i18n": {
|
|
1746
|
+
"type": "XTIT",
|
|
1747
|
+
"comment": "Card title which is displayed in the card header"
|
|
1748
|
+
}
|
|
1711
1749
|
},
|
|
1712
1750
|
"subTitle": {
|
|
1713
1751
|
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
1714
1752
|
"type": "string",
|
|
1715
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1753
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1754
|
+
"i18n": {
|
|
1755
|
+
"type": "XTIT",
|
|
1756
|
+
"comment": "Card subtitle which is displayed in the card header"
|
|
1757
|
+
}
|
|
1716
1758
|
},
|
|
1717
1759
|
"valueSelectionInfo": {
|
|
1718
1760
|
"description": "Represents things like people, number of items",
|
|
1719
1761
|
"type": "string",
|
|
1720
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1762
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
1763
|
+
"i18n": {
|
|
1764
|
+
"type": "XFLD",
|
|
1765
|
+
"comment": "Card KPI label"
|
|
1766
|
+
}
|
|
1721
1767
|
},
|
|
1722
1768
|
"entitySet": {
|
|
1723
1769
|
"description": "Represents the entity set that will be displayed in this card",
|
|
@@ -2156,7 +2202,11 @@
|
|
|
2156
2202
|
"title": {
|
|
2157
2203
|
"description": "Represents the title for the content of the reuse component",
|
|
2158
2204
|
"type": "string",
|
|
2159
|
-
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
2205
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$",
|
|
2206
|
+
"i18n": {
|
|
2207
|
+
"type": "XTIT",
|
|
2208
|
+
"comment": "Reuse component title"
|
|
2209
|
+
}
|
|
2160
2210
|
},
|
|
2161
2211
|
"binding": {
|
|
2162
2212
|
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
package/types/manifest.d.ts
CHANGED
|
@@ -700,7 +700,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
700
700
|
| "1.54.0"
|
|
701
701
|
| "1.55.0"
|
|
702
702
|
| "1.56.0"
|
|
703
|
-
| "1.57.0"
|
|
703
|
+
| "1.57.0"
|
|
704
|
+
| "1.58.0";
|
|
704
705
|
/**
|
|
705
706
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
706
707
|
*/
|
|
@@ -2487,7 +2488,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2487
2488
|
/**
|
|
2488
2489
|
* Represents attributes format version. It is managed by namespace owner
|
|
2489
2490
|
*/
|
|
2490
|
-
_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";
|
|
2491
|
+
_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" | "1.10.0";
|
|
2491
2492
|
/**
|
|
2492
2493
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2493
2494
|
*/
|
|
@@ -2532,6 +2533,10 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2532
2533
|
* Represents the switch to activate live update in the global filters, else manual update will be required
|
|
2533
2534
|
*/
|
|
2534
2535
|
enableLiveFilter?: boolean;
|
|
2536
|
+
/**
|
|
2537
|
+
* Enable loading of cards when they enter viewport
|
|
2538
|
+
*/
|
|
2539
|
+
enableLazyRendering?: boolean;
|
|
2535
2540
|
refreshStrategyOnAppRestore?: RefreshStrategiesPropDef1;
|
|
2536
2541
|
/**
|
|
2537
2542
|
* Flag to enable/disable analytical parameter support for Smart filter bar
|