@ui5/manifest 1.57.0 → 1.60.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 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.57.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.60.0...HEAD).
6
+
7
+ <a name="v1.60.0"></a>
8
+ ## [v1.60.0] - 2023-09-22
9
+
10
+ <a name="v1.59.0"></a>
11
+ ## [v1.59.0] - 2023-08-28
6
12
 
7
13
  <a name="v1.57.0"></a>
8
14
  ## [v1.57.0] - 2023-07-27
@@ -43,6 +49,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
43
49
  <a name="v1.48.1"></a>
44
50
  ## v1.48.1 - 2022-11-10
45
51
 
52
+ [v1.60.0]: https://github.com/SAP/ui5-manifest/compare/v1.59.0...v1.60.0
53
+ [v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
46
54
  [v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
47
55
  [v1.56.0]: https://github.com/SAP/ui5-manifest/compare/v1.55.0...v1.56.0
48
56
  [v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.57.0",
2
+ "latest": "1.59.0",
3
+ "1.119": "1.59.0",
4
+ "1.118": "1.58.0",
3
5
  "1.117": "1.57.0",
4
6
  "1.116": "1.56.0",
5
7
  "1.115": "1.55.0",
@@ -83,4 +85,4 @@
83
85
  "1.32": "1.2.0",
84
86
  "1.31": "1.1.0",
85
87
  "1.30": "1.1.0"
86
- }
88
+ }
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@ui5/manifest","version":"1.57.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"}
1
+ {"name":"@ui5/manifest","version":"1.60.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,9 @@
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",
79
+ "1.59.0"
78
80
  ]
79
81
  },
80
82
  "start_url": {
@@ -277,23 +279,43 @@
277
279
  },
278
280
  "title": {
279
281
  "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"
282
+ "$ref": "#/definitions/i18n_key_string",
283
+ "i18n": {
284
+ "type": "XTIT",
285
+ "comment": "Application title"
286
+ }
281
287
  },
282
288
  "subTitle": {
283
289
  "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"
290
+ "$ref": "#/definitions/i18n_key_string",
291
+ "i18n": {
292
+ "type": "XTIT",
293
+ "comment": "Application subtitle"
294
+ }
285
295
  },
286
296
  "shortTitle": {
287
297
  "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"
298
+ "$ref": "#/definitions/i18n_key_string",
299
+ "i18n": {
300
+ "type": "XTIT",
301
+ "comment": "Shorter version of the application title"
302
+ }
289
303
  },
290
304
  "info": {
291
305
  "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"
306
+ "$ref": "#/definitions/i18n_key_string",
307
+ "i18n": {
308
+ "type": "YINF",
309
+ "comment": "Additional information to the application title"
310
+ }
293
311
  },
294
312
  "description": {
295
313
  "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"
314
+ "$ref": "#/definitions/i18n_key_string",
315
+ "i18n": {
316
+ "type": "YDES",
317
+ "comment": "Application description"
318
+ }
297
319
  },
298
320
  "tags": {
299
321
  "description": "Represents array of keywords",
@@ -1235,7 +1257,8 @@
1235
1257
  "1.6.0",
1236
1258
  "1.7.0",
1237
1259
  "1.8.0",
1238
- "1.9.0"
1260
+ "1.9.0",
1261
+ "1.10.0"
1239
1262
  ]
1240
1263
  },
1241
1264
  "globalFilterModel": {
@@ -1297,6 +1320,11 @@
1297
1320
  "type": "boolean",
1298
1321
  "default": true
1299
1322
  },
1323
+ "enableLazyRendering": {
1324
+ "description": "Enable loading of cards when they enter viewport",
1325
+ "type": "boolean",
1326
+ "default": false
1327
+ },
1300
1328
  "refreshStrategyOnAppRestore": {
1301
1329
  "description": "Represents the refresh strategies configured for OVP while coming back to the source app",
1302
1330
  "$ref": "#/definitions/refreshStrategies_prop_def"
@@ -1942,7 +1970,8 @@
1942
1970
  "1.38.0",
1943
1971
  "1.39.0",
1944
1972
  "1.40.0",
1945
- "1.41.0"
1973
+ "1.41.0",
1974
+ "1.42.0"
1946
1975
  ]
1947
1976
  },
1948
1977
  "designtime": {
@@ -2120,15 +2149,7 @@
2120
2149
  },
2121
2150
  "visible": {
2122
2151
  "description": "[Experimental] Visibility of the footer",
2123
- "oneOf": [
2124
- {
2125
- "type": "boolean",
2126
- "default": true
2127
- },
2128
- {
2129
- "$ref": "#/definitions/simpleBinding"
2130
- }
2131
- ]
2152
+ "$ref": "#/definitions/visibility"
2132
2153
  }
2133
2154
  }
2134
2155
  },
@@ -2376,23 +2397,43 @@
2376
2397
  },
2377
2398
  "title": {
2378
2399
  "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"
2400
+ "$ref": "#/definitions/i18n_key_string",
2401
+ "i18n": {
2402
+ "type": "XTIT",
2403
+ "comment": "Package title"
2404
+ }
2380
2405
  },
2381
2406
  "subTitle": {
2382
2407
  "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"
2408
+ "$ref": "#/definitions/i18n_key_string",
2409
+ "i18n": {
2410
+ "type": "XTIT",
2411
+ "comment": "Package subtitle"
2412
+ }
2384
2413
  },
2385
2414
  "shortTitle": {
2386
2415
  "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"
2416
+ "$ref": "#/definitions/i18n_key_string",
2417
+ "i18n": {
2418
+ "type": "XTIT",
2419
+ "comment": "Shorter version of the package title"
2420
+ }
2388
2421
  },
2389
2422
  "info": {
2390
2423
  "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"
2424
+ "$ref": "#/definitions/i18n_key_string",
2425
+ "i18n": {
2426
+ "type": "YINF",
2427
+ "comment": "Additional information to the package title"
2428
+ }
2392
2429
  },
2393
2430
  "description": {
2394
2431
  "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"
2432
+ "$ref": "#/definitions/i18n_key_string",
2433
+ "i18n": {
2434
+ "type": "YDES",
2435
+ "comment": "Package description"
2436
+ }
2396
2437
  },
2397
2438
  "icon": {
2398
2439
  "description": "Represents icon name or source URL for the package",
@@ -2530,23 +2571,43 @@
2530
2571
  },
2531
2572
  "title": {
2532
2573
  "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"
2574
+ "$ref": "#/definitions/i18n_key_string",
2575
+ "i18n": {
2576
+ "type": "XTIT",
2577
+ "comment": "Artifact title"
2578
+ }
2534
2579
  },
2535
2580
  "subTitle": {
2536
2581
  "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"
2582
+ "$ref": "#/definitions/i18n_key_string",
2583
+ "i18n": {
2584
+ "type": "XTIT",
2585
+ "comment": "Artifact subtitle"
2586
+ }
2538
2587
  },
2539
2588
  "shortTitle": {
2540
2589
  "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"
2590
+ "$ref": "#/definitions/i18n_key_string",
2591
+ "i18n": {
2592
+ "type": "XTIT",
2593
+ "comment": "Shorter version of the artifact title"
2594
+ }
2542
2595
  },
2543
2596
  "info": {
2544
2597
  "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"
2598
+ "$ref": "#/definitions/i18n_key_string",
2599
+ "i18n": {
2600
+ "type": "YINF",
2601
+ "comment": "Additional information to the artifact title"
2602
+ }
2546
2603
  },
2547
2604
  "description": {
2548
2605
  "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"
2606
+ "$ref": "#/definitions/i18n_key_string",
2607
+ "i18n": {
2608
+ "type": "YDES",
2609
+ "comment": "Artifact description"
2610
+ }
2550
2611
  },
2551
2612
  "icon": {
2552
2613
  "description": "Represents icon name or source URL for the artifact",
@@ -2646,11 +2707,12 @@
2646
2707
  }
2647
2708
  },
2648
2709
  "definitions": {
2649
- "tag": {
2710
+ "tag_0": {
2650
2711
  "type": "array",
2651
2712
  "items": {
2652
2713
  "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"
2714
+ "$ref": "#/definitions/i18n_key_string",
2715
+ "type": "string"
2654
2716
  }
2655
2717
  },
2656
2718
  "i18n_key_string": {
@@ -2741,13 +2803,6 @@
2741
2803
  }
2742
2804
  }
2743
2805
  },
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
2806
  "Microchart.StackedBar.Bar": {
2752
2807
  "type": "object",
2753
2808
  "additionalProperties": false,
@@ -2978,33 +3033,111 @@
2978
3033
  "semanticObject",
2979
3034
  "action"
2980
3035
  ],
2981
- "semanticObject": {
2982
- "type": "string"
2983
- },
2984
- "action": {
2985
- "type": "string"
3036
+ "properties": {
3037
+ "semanticObject": {
3038
+ "type": "string"
3039
+ },
3040
+ "action": {
3041
+ "type": "string"
3042
+ }
2986
3043
  }
2987
3044
  },
2988
- "ibnActionParameters": {
2989
- "description": "Parameters for an intent based navigation",
3045
+ "hideCardActionParameters": {
3046
+ "description": "Parameters for HideCard action",
3047
+ "type": "object",
3048
+ "additionalProperties": false
3049
+ },
3050
+ "showCardActionParameters": {
3051
+ "description": "Parameters for ShowCard action",
3052
+ "type": "object",
3053
+ "additionalProperties": false,
3054
+ "required": [
3055
+ "manifest"
3056
+ ],
3057
+ "properties": {
3058
+ "manifest": {
3059
+ "description": "An application identifier consisting of semanticObject and action",
3060
+ "oneOf": [
3061
+ {
3062
+ "type": "string"
3063
+ },
3064
+ {
3065
+ "type": "object"
3066
+ }
3067
+ ]
3068
+ },
3069
+ "parameters": {
3070
+ "type": "object"
3071
+ },
3072
+ "data": {
3073
+ "type": "object"
3074
+ },
3075
+ "width": {
3076
+ "type": "string"
3077
+ },
3078
+ "baseUrl": {
3079
+ "type": "string"
3080
+ },
3081
+ "resizable": {
3082
+ "oneOf": [
3083
+ {
3084
+ "type": "boolean"
3085
+ },
3086
+ {
3087
+ "$ref": "#/definitions/simpleBinding"
3088
+ }
3089
+ ]
3090
+ }
3091
+ }
3092
+ },
3093
+ "submitActionParameters": {
3094
+ "description": "Parameters for Submit action",
3095
+ "type": "object",
3096
+ "additionalProperties": false
3097
+ },
3098
+ "navigationActionIBParameters": {
3099
+ "description": "Parameters for Intent-Based Navigation action",
2990
3100
  "type": "object",
2991
3101
  "additionalProperties": false,
2992
3102
  "required": [
2993
3103
  "ibnTarget"
2994
3104
  ],
2995
- "ibnTarget": {
2996
- "description": "An application identifier consisting of semanticObject and action",
2997
- "$ref": "#/definitions/ibnTarget"
2998
- },
2999
- "ibnParam": {
3000
- "description": "Key/value pairs for parameters of the target application",
3001
- "$ref": "#/definitions/parameters"
3002
- },
3003
- "ibnAppSpecificRoute": {
3004
- "description": "An application specific route that is passed to the target application",
3005
- "type": "string"
3105
+ "properties": {
3106
+ "ibnTarget": {
3107
+ "description": "An application identifier consisting of semanticObject and action",
3108
+ "$ref": "#/definitions/ibnTarget"
3109
+ },
3110
+ "ibnParams": {
3111
+ "description": "Key/value pairs for parameters of the target application",
3112
+ "type": "object"
3113
+ },
3114
+ "ibnAppSpecificRoute": {
3115
+ "description": "An application specific route that is passed to the target application",
3116
+ "type": "string"
3117
+ }
3118
+ }
3119
+ },
3120
+ "navigationActionParameters": {
3121
+ "description": "Parameters for Navigation action",
3122
+ "type": "object",
3123
+ "additionalProperties": false,
3124
+ "required": [
3125
+ "url"
3126
+ ],
3127
+ "properties": {
3128
+ "url": {
3129
+ "type": "string"
3130
+ },
3131
+ "target": {
3132
+ "type": "string"
3133
+ }
3006
3134
  }
3007
3135
  },
3136
+ "customActionParameters": {
3137
+ "description": "Parameters for Custom action",
3138
+ "type": "object",
3139
+ "additionalProperties": true
3140
+ },
3008
3141
  "cache": {
3009
3142
  "description": "Cache control settings",
3010
3143
  "type": "object",
@@ -3067,11 +3200,6 @@
3067
3200
  }
3068
3201
  }
3069
3202
  },
3070
- "parameters": {
3071
- "description": "Represents parameters that are passed in the actions",
3072
- "type": "object",
3073
- "additionalProperties": true
3074
- },
3075
3203
  "extension": {
3076
3204
  "description": "[Experimental] Represents attributes, needed to get data via extension",
3077
3205
  "type": "object",
@@ -3106,7 +3234,7 @@
3106
3234
  "type": "string"
3107
3235
  },
3108
3236
  "parameters": {
3109
- "$ref": "#/definitions/parameters"
3237
+ "type": "object"
3110
3238
  }
3111
3239
  }
3112
3240
  }
@@ -3164,7 +3292,7 @@
3164
3292
  },
3165
3293
  "parameters": {
3166
3294
  "description": "Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request",
3167
- "$ref": "#/definitions/parameters"
3295
+ "type": "object"
3168
3296
  },
3169
3297
  "headers": {
3170
3298
  "description": "Represents HTTP headers",
@@ -3544,7 +3672,11 @@
3544
3672
  "properties": {
3545
3673
  "title": {
3546
3674
  "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"
3675
+ "$ref": "#/definitions/i18n_key_string",
3676
+ "i18n": {
3677
+ "type": "XCOL",
3678
+ "comment": "Column title"
3679
+ }
3548
3680
  },
3549
3681
  "width": {
3550
3682
  "description": "Defines the width of the column",
@@ -4146,7 +4278,11 @@
4146
4278
  "properties": {
4147
4279
  "title": {
4148
4280
  "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"
4281
+ "$ref": "#/definitions/i18n_key_string",
4282
+ "i18n": {
4283
+ "type": "XGRP",
4284
+ "comment": "Object group title"
4285
+ }
4150
4286
  },
4151
4287
  "titleMaxLines": {
4152
4288
  "description": "[Experimental] Limits the number of lines for wrapping the group title.",
@@ -4532,14 +4668,7 @@
4532
4668
  },
4533
4669
  "visible": {
4534
4670
  "description": "Visibility of the item",
4535
- "oneOf": [
4536
- {
4537
- "type": "boolean"
4538
- },
4539
- {
4540
- "$ref": "#/definitions/simpleBinding"
4541
- }
4542
- ]
4671
+ "$ref": "#/definitions/visibility"
4543
4672
  },
4544
4673
  "title": {
4545
4674
  "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.",
@@ -4553,7 +4682,11 @@
4553
4682
  "properties": {
4554
4683
  "label": {
4555
4684
  "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"
4685
+ "$ref": "#/definitions/i18n_key_string",
4686
+ "i18n": {
4687
+ "type": "XFLD",
4688
+ "comment": "Field label"
4689
+ }
4557
4690
  },
4558
4691
  "value": {
4559
4692
  "type": "string",
@@ -4735,15 +4868,7 @@
4735
4868
  },
4736
4869
  "visible": {
4737
4870
  "description": "Visibility of the side indicator",
4738
- "oneOf": [
4739
- {
4740
- "type": "boolean",
4741
- "default": true
4742
- },
4743
- {
4744
- "$ref": "#/definitions/simpleBinding"
4745
- }
4746
- ]
4871
+ "$ref": "#/definitions/visibility"
4747
4872
  }
4748
4873
  }
4749
4874
  },
@@ -4792,15 +4917,18 @@
4792
4917
  },
4793
4918
  "visible": {
4794
4919
  "description": "Visibility of the main indicator",
4795
- "oneOf": [
4796
- {
4797
- "type": "boolean",
4798
- "default": true
4799
- },
4800
- {
4801
- "$ref": "#/definitions/simpleBinding"
4802
- }
4803
- ]
4920
+ "$ref": "#/definitions/visibility"
4921
+ }
4922
+ }
4923
+ },
4924
+ "closeButton": {
4925
+ "description": "[Experimental] Represents attributes of the Close button",
4926
+ "type": "object",
4927
+ "additionalProperties": false,
4928
+ "properties": {
4929
+ "visible": {
4930
+ "description": "[Experimental] Represents the visibility of the Close button",
4931
+ "$ref": "#/definitions/visibility"
4804
4932
  }
4805
4933
  }
4806
4934
  },
@@ -4868,14 +4996,7 @@
4868
4996
  },
4869
4997
  "visible": {
4870
4998
  "description": "Visibility of the icon",
4871
- "oneOf": [
4872
- {
4873
- "type": "boolean"
4874
- },
4875
- {
4876
- "$ref": "#/definitions/simpleBinding"
4877
- }
4878
- ]
4999
+ "$ref": "#/definitions/visibility"
4879
5000
  }
4880
5001
  }
4881
5002
  },
@@ -4920,22 +5041,14 @@
4920
5041
  "$ref": "#/definitions/service"
4921
5042
  },
4922
5043
  "url": {
4923
- "description": "Represents the URL that will be used as navigation target if no service is provided",
5044
+ "description": "[Deprecated] Represents the URL that will be used as navigation target if no service is provided",
4924
5045
  "type": "string"
4925
5046
  },
4926
5047
  "parameters": {
4927
- "description": "Parameters passed to the navigation action handler",
4928
- "oneOf": [
4929
- {
4930
- "$ref": "#/definitions/parameters"
4931
- },
4932
- {
4933
- "$ref": "#/definitions/ibnActionParameters"
4934
- }
4935
- ]
5048
+ "description": "Parameters passed to the navigation action handler"
4936
5049
  },
4937
5050
  "target": {
4938
- "description": "Specifies where to open the 'url', if it is provided",
5051
+ "description": "[Deprecated] Specifies where to open the 'url', if it is provided",
4939
5052
  "type": "string",
4940
5053
  "oneOf": [
4941
5054
  {
@@ -4946,7 +5059,96 @@
4946
5059
  }
4947
5060
  ]
4948
5061
  }
4949
- }
5062
+ },
5063
+ "allOf": [
5064
+ {
5065
+ "if": {
5066
+ "properties": {
5067
+ "type": {
5068
+ "const": "Custom"
5069
+ }
5070
+ }
5071
+ },
5072
+ "then": {
5073
+ "properties": {
5074
+ "parameters": {
5075
+ "$ref": "#/definitions/customActionParameters"
5076
+ }
5077
+ }
5078
+ }
5079
+ },
5080
+ {
5081
+ "if": {
5082
+ "properties": {
5083
+ "type": {
5084
+ "const": "Navigation"
5085
+ }
5086
+ }
5087
+ },
5088
+ "then": {
5089
+ "properties": {
5090
+ "parameters": {
5091
+ "oneOf": [
5092
+ {
5093
+ "$ref": "#/definitions/navigationActionParameters"
5094
+ },
5095
+ {
5096
+ "$ref": "#/definitions/navigationActionIBParameters"
5097
+ }
5098
+ ]
5099
+ }
5100
+ }
5101
+ }
5102
+ },
5103
+ {
5104
+ "if": {
5105
+ "properties": {
5106
+ "type": {
5107
+ "const": "Submit"
5108
+ }
5109
+ }
5110
+ },
5111
+ "then": {
5112
+ "properties": {
5113
+ "parameters": {
5114
+ "$ref": "#/definitions/submitActionParameters"
5115
+ }
5116
+ }
5117
+ }
5118
+ },
5119
+ {
5120
+ "if": {
5121
+ "properties": {
5122
+ "type": {
5123
+ "const": "ShowCard"
5124
+ }
5125
+ }
5126
+ },
5127
+ "then": {
5128
+ "properties": {
5129
+ "parameters": {
5130
+ "$ref": "#/definitions/showCardActionParameters"
5131
+ }
5132
+ }
5133
+ }
5134
+ },
5135
+ {
5136
+ "if": {
5137
+ "properties": {
5138
+ "type": {
5139
+ "const": "HideCard"
5140
+ }
5141
+ }
5142
+ },
5143
+ "then": {
5144
+ "properties": {
5145
+ "parameters": {
5146
+ "$ref": "#/definitions/hideCardActionParameters"
5147
+ }
5148
+ }
5149
+ }
5150
+ }
5151
+ ]
4950
5152
  },
4951
5153
  "HeaderType.Numeric": {
4952
5154
  "additionalProperties": false,
@@ -4965,7 +5167,11 @@
4965
5167
  },
4966
5168
  "title": {
4967
5169
  "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"
5170
+ "$ref": "#/definitions/i18n_key_string",
5171
+ "i18n": {
5172
+ "type": "XTIT",
5173
+ "comment": "Header title"
5174
+ }
4969
5175
  },
4970
5176
  "titleMaxLines": {
4971
5177
  "description": "[Experimental] Limit the number of lines for the title.",
@@ -4981,7 +5187,11 @@
4981
5187
  },
4982
5188
  "subTitle": {
4983
5189
  "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"
5190
+ "$ref": "#/definitions/i18n_key_string",
5191
+ "i18n": {
5192
+ "type": "XTIT",
5193
+ "comment": "Header subtitle"
5194
+ }
4985
5195
  },
4986
5196
  "subTitleMaxLines": {
4987
5197
  "description": "[Experimental] Limit the number of lines for the sub title.",
@@ -5056,17 +5266,13 @@
5056
5266
  "description": "Represents the status of the card",
5057
5267
  "$ref": "#/definitions/status"
5058
5268
  },
5269
+ "closeButton": {
5270
+ "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5271
+ "$ref": "#/definitions/closeButton"
5272
+ },
5059
5273
  "visible": {
5060
5274
  "description": "[Experimental] Visibility of the header",
5061
- "oneOf": [
5062
- {
5063
- "type": "boolean",
5064
- "default": true
5065
- },
5066
- {
5067
- "$ref": "#/definitions/simpleBinding"
5068
- }
5069
- ]
5275
+ "$ref": "#/definitions/visibility"
5070
5276
  }
5071
5277
  }
5072
5278
  },
@@ -5084,7 +5290,11 @@
5084
5290
  },
5085
5291
  "title": {
5086
5292
  "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"
5293
+ "$ref": "#/definitions/i18n_key_string",
5294
+ "i18n": {
5295
+ "type": "XTIT",
5296
+ "comment": "Header title"
5297
+ }
5088
5298
  },
5089
5299
  "titleMaxLines": {
5090
5300
  "description": "[Experimental] Limit the number of lines for the title.",
@@ -5100,7 +5310,11 @@
5100
5310
  },
5101
5311
  "subTitle": {
5102
5312
  "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"
5313
+ "$ref": "#/definitions/i18n_key_string",
5314
+ "i18n": {
5315
+ "type": "XTIT",
5316
+ "comment": "Header subtitle"
5317
+ }
5104
5318
  },
5105
5319
  "subTitleMaxLines": {
5106
5320
  "description": "[Experimental] Limit the number of lines for the sub title.",
@@ -5132,17 +5346,13 @@
5132
5346
  "description": "Represents the status of the card",
5133
5347
  "$ref": "#/definitions/status"
5134
5348
  },
5349
+ "closeButton": {
5350
+ "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5351
+ "$ref": "#/definitions/closeButton"
5352
+ },
5135
5353
  "visible": {
5136
5354
  "description": "[Experimental] Visibility of the header",
5137
- "oneOf": [
5138
- {
5139
- "type": "boolean",
5140
- "default": true
5141
- },
5142
- {
5143
- "$ref": "#/definitions/simpleBinding"
5144
- }
5145
- ]
5355
+ "$ref": "#/definitions/visibility"
5146
5356
  }
5147
5357
  }
5148
5358
  },
@@ -5498,15 +5708,7 @@
5498
5708
  "properties": {
5499
5709
  "visible": {
5500
5710
  "description": "Represents the visibility state of the title",
5501
- "oneOf": [
5502
- {
5503
- "type": "boolean",
5504
- "default": true
5505
- },
5506
- {
5507
- "$ref": "#/definitions/simpleBinding"
5508
- }
5509
- ]
5711
+ "$ref": "#/definitions/visibility"
5510
5712
  },
5511
5713
  "text": {
5512
5714
  "description": "Represents a title text",
@@ -5754,14 +5956,7 @@
5754
5956
  },
5755
5957
  "visible": {
5756
5958
  "description": "Determines whether the item is visible",
5757
- "oneOf": [
5758
- {
5759
- "type": "boolean"
5760
- },
5761
- {
5762
- "$ref": "#/definitions/simpleBinding"
5763
- }
5764
- ]
5959
+ "$ref": "#/definitions/visibility"
5765
5960
  }
5766
5961
  }
5767
5962
  },
@@ -5930,14 +6125,7 @@
5930
6125
  },
5931
6126
  "visible": {
5932
6127
  "description": "Determines whether the filter is visible",
5933
- "oneOf": [
5934
- {
5935
- "type": "boolean"
5936
- },
5937
- {
5938
- "$ref": "#/definitions/simpleBinding"
5939
- }
5940
- ]
6128
+ "$ref": "#/definitions/visibility"
5941
6129
  }
5942
6130
  }
5943
6131
  },
@@ -6028,14 +6216,7 @@
6028
6216
  },
6029
6217
  "visible": {
6030
6218
  "description": "Determines whether the filter is visible",
6031
- "oneOf": [
6032
- {
6033
- "type": "boolean"
6034
- },
6035
- {
6036
- "$ref": "#/definitions/simpleBinding"
6037
- }
6038
- ]
6219
+ "$ref": "#/definitions/visibility"
6039
6220
  }
6040
6221
  }
6041
6222
  },
@@ -6090,14 +6271,7 @@
6090
6271
  },
6091
6272
  "visible": {
6092
6273
  "description": "Determines whether the filter is visible",
6093
- "oneOf": [
6094
- {
6095
- "type": "boolean"
6096
- },
6097
- {
6098
- "$ref": "#/definitions/simpleBinding"
6099
- }
6100
- ]
6274
+ "$ref": "#/definitions/visibility"
6101
6275
  }
6102
6276
  }
6103
6277
  },
@@ -6196,7 +6370,11 @@
6196
6370
  "text": {
6197
6371
  "description": "Text displayed for extended actions in Quick View",
6198
6372
  "type": "string",
6199
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6373
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6374
+ "i18n": {
6375
+ "type": "XFLD",
6376
+ "comment": "Label for extended actions in Quick View Cards"
6377
+ }
6200
6378
  },
6201
6379
  "press": {
6202
6380
  "description": "Name of the press handler for extended actions in Quick View",
@@ -6400,27 +6578,47 @@
6400
6578
  "category": {
6401
6579
  "description": "Represents the category of the card- used in the card header",
6402
6580
  "type": "string",
6403
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6581
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6582
+ "i18n": {
6583
+ "type": "XTIT",
6584
+ "comment": "Card category which is displayed in the card header"
6585
+ }
6404
6586
  },
6405
6587
  "itemText": {
6406
6588
  "description": "Represents the user defined string in placeholder card",
6407
6589
  "type": "string",
6408
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6590
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6591
+ "i18n": {
6592
+ "type": "XALT",
6593
+ "comment": "Text in placeholder card"
6594
+ }
6409
6595
  },
6410
6596
  "title": {
6411
6597
  "description": "Represents language-dependent title of the card - used in the card header",
6412
6598
  "type": "string",
6413
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6599
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6600
+ "i18n": {
6601
+ "type": "XTIT",
6602
+ "comment": "Card title which is displayed in the card header"
6603
+ }
6414
6604
  },
6415
6605
  "subTitle": {
6416
6606
  "description": "Represents language-dependent subtitle of the card - used in the card header",
6417
6607
  "type": "string",
6418
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6608
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6609
+ "i18n": {
6610
+ "type": "XTIT",
6611
+ "comment": "Card subtitle which is displayed in the card header"
6612
+ }
6419
6613
  },
6420
6614
  "valueSelectionInfo": {
6421
6615
  "description": "Represents things like people, number of items",
6422
6616
  "type": "string",
6423
- "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
6617
+ "pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
6618
+ "i18n": {
6619
+ "type": "XFLD",
6620
+ "comment": "Card KPI label"
6621
+ }
6424
6622
  },
6425
6623
  "entitySet": {
6426
6624
  "description": "Represents the entity set that will be displayed in this card",
@@ -6859,7 +7057,11 @@
6859
7057
  "title": {
6860
7058
  "description": "Represents the title for the content of the reuse component",
6861
7059
  "type": "string",
6862
- "pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
7060
+ "pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$",
7061
+ "i18n": {
7062
+ "type": "XTIT",
7063
+ "comment": "Reuse component title"
7064
+ }
6863
7065
  },
6864
7066
  "binding": {
6865
7067
  "description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
@@ -8457,19 +8659,35 @@
8457
8659
  },
8458
8660
  "title": {
8459
8661
  "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"
8662
+ "$ref": "#/definitions/i18n_key_string",
8663
+ "i18n": {
8664
+ "type": "XTIT",
8665
+ "comment": "Application title"
8666
+ }
8461
8667
  },
8462
8668
  "subTitle": {
8463
8669
  "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"
8670
+ "$ref": "#/definitions/i18n_key_string",
8671
+ "i18n": {
8672
+ "type": "XTIT",
8673
+ "comment": "Application subtitle"
8674
+ }
8465
8675
  },
8466
8676
  "shortTitle": {
8467
8677
  "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"
8678
+ "$ref": "#/definitions/i18n_key_string",
8679
+ "i18n": {
8680
+ "type": "XTIT",
8681
+ "comment": "Shorter version of the application title"
8682
+ }
8469
8683
  },
8470
8684
  "info": {
8471
8685
  "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"
8686
+ "$ref": "#/definitions/i18n_key_string",
8687
+ "i18n": {
8688
+ "type": "YINF",
8689
+ "comment": "Additional information to the application title"
8690
+ }
8473
8691
  },
8474
8692
  "displayMode": {
8475
8693
  "description": "Represents the display mode of the tile",
@@ -8542,6 +8760,17 @@
8542
8760
  }
8543
8761
  ]
8544
8762
  },
8763
+ "tag": {
8764
+ "type": "array",
8765
+ "items": {
8766
+ "description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
8767
+ "$ref": "#/definitions/i18n_key_string"
8768
+ },
8769
+ "i18n": {
8770
+ "type": "XFLD",
8771
+ "comment": "Represents a tag"
8772
+ }
8773
+ },
8545
8774
  "enhanceWithSetting": {
8546
8775
  "oneOf": [
8547
8776
  {
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",
@@ -700,7 +700,9 @@ 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"
705
+ | "1.59.0";
704
706
  /**
705
707
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
706
708
  */
@@ -2487,7 +2489,7 @@ export interface JSONSchemaForSAPOVPNamespace {
2487
2489
  /**
2488
2490
  * Represents attributes format version. It is managed by namespace owner
2489
2491
  */
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";
2492
+ _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
2493
  /**
2492
2494
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2493
2495
  */
@@ -2532,6 +2534,10 @@ export interface JSONSchemaForSAPOVPNamespace {
2532
2534
  * Represents the switch to activate live update in the global filters, else manual update will be required
2533
2535
  */
2534
2536
  enableLiveFilter?: boolean;
2537
+ /**
2538
+ * Enable loading of cards when they enter viewport
2539
+ */
2540
+ enableLazyRendering?: boolean;
2535
2541
  refreshStrategyOnAppRestore?: RefreshStrategiesPropDef1;
2536
2542
  /**
2537
2543
  * Flag to enable/disable analytical parameter support for Smart filter bar