@ui5/manifest 1.56.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 +9 -1
- package/README.md +2 -0
- package/mapping.json +3 -1
- package/package.json +1 -24
- package/schema.json +279 -45
- package/schema_cil.json +62 -12
- package/types/manifest.d.ts +21 -8
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.59.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.59.0"></a>
|
|
8
|
+
## [v1.59.0] - 2023-08-28
|
|
9
|
+
|
|
10
|
+
<a name="v1.57.0"></a>
|
|
11
|
+
## [v1.57.0] - 2023-07-27
|
|
6
12
|
|
|
7
13
|
<a name="v1.56.0"></a>
|
|
8
14
|
## [v1.56.0] - 2023-06-29
|
|
@@ -40,6 +46,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
40
46
|
<a name="v1.48.1"></a>
|
|
41
47
|
## v1.48.1 - 2022-11-10
|
|
42
48
|
|
|
49
|
+
[v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
|
|
50
|
+
[v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
|
|
43
51
|
[v1.56.0]: https://github.com/SAP/ui5-manifest/compare/v1.55.0...v1.56.0
|
|
44
52
|
[v1.55.0]: https://github.com/SAP/ui5-manifest/compare/v1.54.0...v1.55.0
|
|
45
53
|
[v1.54.0]: https://github.com/SAP/ui5-manifest/compare/v1.53.1...v1.54.0
|
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@ This project contains the flattened json schema for the ui5 manifest.
|
|
|
8
8
|
|
|
9
9
|
This flattened json schema for the ui5 manifest is meant to be referenced in the [JSON Schema Store](https://www.schemastore.org/json/) in order to provide validation and code completion of the manifest.json file in SAP Business Application Studio or another IDE.
|
|
10
10
|
|
|
11
|
+
TypeScript type definition is available for schema code completion, documentation and type check within IDE.
|
|
12
|
+
|
|
11
13
|
## How to obtain support
|
|
12
14
|
In case you need any support, please create a [GitHub issue](https://github.com/SAP/ui5-manifest/issues).
|
|
13
15
|
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ui5/manifest",
|
|
3
|
-
"version": "1.56.0",
|
|
4
|
-
"description": "This project contains the flattend json schema for the ui5 manifest.",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/SAP/ui5-manifest.git"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
|
|
11
|
-
"postversion": "git push --follow-tags",
|
|
12
|
-
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"ui5",
|
|
16
|
-
"manifest"
|
|
17
|
-
],
|
|
18
|
-
"author": "SAP SE",
|
|
19
|
-
"license": "Apache-2.0",
|
|
20
|
-
"bugs": {
|
|
21
|
-
"url": "https://github.com/SAP/ui5-manifest/issues"
|
|
22
|
-
},
|
|
23
|
-
"homepage": "https://github.com/SAP/ui5-manifest#readme"
|
|
24
|
-
}
|
|
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
|
@@ -73,7 +73,9 @@
|
|
|
73
73
|
"1.53.0",
|
|
74
74
|
"1.54.0",
|
|
75
75
|
"1.55.0",
|
|
76
|
-
"1.56.0"
|
|
76
|
+
"1.56.0",
|
|
77
|
+
"1.57.0",
|
|
78
|
+
"1.58.0"
|
|
77
79
|
]
|
|
78
80
|
},
|
|
79
81
|
"start_url": {
|
|
@@ -276,23 +278,43 @@
|
|
|
276
278
|
},
|
|
277
279
|
"title": {
|
|
278
280
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
279
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
281
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
282
|
+
"i18n": {
|
|
283
|
+
"type": "XTIT",
|
|
284
|
+
"comment": "Application title"
|
|
285
|
+
}
|
|
280
286
|
},
|
|
281
287
|
"subTitle": {
|
|
282
288
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
283
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
289
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
290
|
+
"i18n": {
|
|
291
|
+
"type": "XTIT",
|
|
292
|
+
"comment": "Application subtitle"
|
|
293
|
+
}
|
|
284
294
|
},
|
|
285
295
|
"shortTitle": {
|
|
286
296
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
287
|
-
"$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
|
+
}
|
|
288
302
|
},
|
|
289
303
|
"info": {
|
|
290
304
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
291
|
-
"$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
|
+
}
|
|
292
310
|
},
|
|
293
311
|
"description": {
|
|
294
312
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
295
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
313
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
314
|
+
"i18n": {
|
|
315
|
+
"type": "YDES",
|
|
316
|
+
"comment": "Application description"
|
|
317
|
+
}
|
|
296
318
|
},
|
|
297
319
|
"tags": {
|
|
298
320
|
"description": "Represents array of keywords",
|
|
@@ -1234,7 +1256,8 @@
|
|
|
1234
1256
|
"1.6.0",
|
|
1235
1257
|
"1.7.0",
|
|
1236
1258
|
"1.8.0",
|
|
1237
|
-
"1.9.0"
|
|
1259
|
+
"1.9.0",
|
|
1260
|
+
"1.10.0"
|
|
1238
1261
|
]
|
|
1239
1262
|
},
|
|
1240
1263
|
"globalFilterModel": {
|
|
@@ -1296,6 +1319,11 @@
|
|
|
1296
1319
|
"type": "boolean",
|
|
1297
1320
|
"default": true
|
|
1298
1321
|
},
|
|
1322
|
+
"enableLazyRendering": {
|
|
1323
|
+
"description": "Enable loading of cards when they enter viewport",
|
|
1324
|
+
"type": "boolean",
|
|
1325
|
+
"default": false
|
|
1326
|
+
},
|
|
1299
1327
|
"refreshStrategyOnAppRestore": {
|
|
1300
1328
|
"description": "Represents the refresh strategies configured for OVP while coming back to the source app",
|
|
1301
1329
|
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
@@ -2375,23 +2403,43 @@
|
|
|
2375
2403
|
},
|
|
2376
2404
|
"title": {
|
|
2377
2405
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2378
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2406
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2407
|
+
"i18n": {
|
|
2408
|
+
"type": "XTIT",
|
|
2409
|
+
"comment": "Package title"
|
|
2410
|
+
}
|
|
2379
2411
|
},
|
|
2380
2412
|
"subTitle": {
|
|
2381
2413
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2382
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2414
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2415
|
+
"i18n": {
|
|
2416
|
+
"type": "XTIT",
|
|
2417
|
+
"comment": "Package subtitle"
|
|
2418
|
+
}
|
|
2383
2419
|
},
|
|
2384
2420
|
"shortTitle": {
|
|
2385
2421
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2386
|
-
"$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
|
+
}
|
|
2387
2427
|
},
|
|
2388
2428
|
"info": {
|
|
2389
2429
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2390
|
-
"$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
|
+
}
|
|
2391
2435
|
},
|
|
2392
2436
|
"description": {
|
|
2393
2437
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2394
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2438
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2439
|
+
"i18n": {
|
|
2440
|
+
"type": "YDES",
|
|
2441
|
+
"comment": "Package description"
|
|
2442
|
+
}
|
|
2395
2443
|
},
|
|
2396
2444
|
"icon": {
|
|
2397
2445
|
"description": "Represents icon name or source URL for the package",
|
|
@@ -2529,23 +2577,43 @@
|
|
|
2529
2577
|
},
|
|
2530
2578
|
"title": {
|
|
2531
2579
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2532
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2580
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2581
|
+
"i18n": {
|
|
2582
|
+
"type": "XTIT",
|
|
2583
|
+
"comment": "Artifact title"
|
|
2584
|
+
}
|
|
2533
2585
|
},
|
|
2534
2586
|
"subTitle": {
|
|
2535
2587
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2536
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2588
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2589
|
+
"i18n": {
|
|
2590
|
+
"type": "XTIT",
|
|
2591
|
+
"comment": "Artifact subtitle"
|
|
2592
|
+
}
|
|
2537
2593
|
},
|
|
2538
2594
|
"shortTitle": {
|
|
2539
2595
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2540
|
-
"$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
|
+
}
|
|
2541
2601
|
},
|
|
2542
2602
|
"info": {
|
|
2543
2603
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2544
|
-
"$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
|
+
}
|
|
2545
2609
|
},
|
|
2546
2610
|
"description": {
|
|
2547
2611
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2548
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2612
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2613
|
+
"i18n": {
|
|
2614
|
+
"type": "YDES",
|
|
2615
|
+
"comment": "Artifact description"
|
|
2616
|
+
}
|
|
2549
2617
|
},
|
|
2550
2618
|
"icon": {
|
|
2551
2619
|
"description": "Represents icon name or source URL for the artifact",
|
|
@@ -2572,14 +2640,85 @@
|
|
|
2572
2640
|
}
|
|
2573
2641
|
}
|
|
2574
2642
|
}
|
|
2643
|
+
},
|
|
2644
|
+
"sap.bpa.task": {
|
|
2645
|
+
"title": "JSON schema for sap.bpa.task Namespace",
|
|
2646
|
+
"description": "Represents SBPA Custom Task UI Attributes",
|
|
2647
|
+
"type": "object",
|
|
2648
|
+
"required": [
|
|
2649
|
+
"outcomes",
|
|
2650
|
+
"category",
|
|
2651
|
+
"_version"
|
|
2652
|
+
],
|
|
2653
|
+
"additionalProperties": false,
|
|
2654
|
+
"properties": {
|
|
2655
|
+
"_version": {
|
|
2656
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
2657
|
+
"type": "string",
|
|
2658
|
+
"enum": [
|
|
2659
|
+
"1.0.0"
|
|
2660
|
+
]
|
|
2661
|
+
},
|
|
2662
|
+
"inputs": {
|
|
2663
|
+
"description": "Represents the inputs of the task ui",
|
|
2664
|
+
"$ref": "http://json-schema.org/draft-07/schema"
|
|
2665
|
+
},
|
|
2666
|
+
"outputs": {
|
|
2667
|
+
"description": "Represents the outputs of the task ui",
|
|
2668
|
+
"$ref": "http://json-schema.org/draft-07/schema"
|
|
2669
|
+
},
|
|
2670
|
+
"category": {
|
|
2671
|
+
"description": "Represents the category of the task ui",
|
|
2672
|
+
"type": "string",
|
|
2673
|
+
"enum": [
|
|
2674
|
+
"standard",
|
|
2675
|
+
"approval"
|
|
2676
|
+
]
|
|
2677
|
+
},
|
|
2678
|
+
"outcomes": {
|
|
2679
|
+
"title": "outcomes",
|
|
2680
|
+
"type": "array",
|
|
2681
|
+
"description": "Represents the outcomes of the task ui",
|
|
2682
|
+
"items": {
|
|
2683
|
+
"type": "object",
|
|
2684
|
+
"properties": {
|
|
2685
|
+
"id": {
|
|
2686
|
+
"description": "Represents the id of the outcome",
|
|
2687
|
+
"type": "string",
|
|
2688
|
+
"enum": [
|
|
2689
|
+
"approve",
|
|
2690
|
+
"reject",
|
|
2691
|
+
"submit"
|
|
2692
|
+
]
|
|
2693
|
+
},
|
|
2694
|
+
"label": {
|
|
2695
|
+
"type": "string",
|
|
2696
|
+
"description": "Represents the label of the outcome"
|
|
2697
|
+
}
|
|
2698
|
+
}
|
|
2699
|
+
},
|
|
2700
|
+
"maxItems": 2,
|
|
2701
|
+
"minItems": 1,
|
|
2702
|
+
"uniqueItems": true
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2705
|
+
"oneOf": [
|
|
2706
|
+
{
|
|
2707
|
+
"required": [
|
|
2708
|
+
"inputs",
|
|
2709
|
+
"outputs"
|
|
2710
|
+
]
|
|
2711
|
+
}
|
|
2712
|
+
]
|
|
2575
2713
|
}
|
|
2576
2714
|
},
|
|
2577
2715
|
"definitions": {
|
|
2578
|
-
"
|
|
2716
|
+
"tag_0": {
|
|
2579
2717
|
"type": "array",
|
|
2580
2718
|
"items": {
|
|
2581
2719
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2582
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
2720
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
2721
|
+
"type": "string"
|
|
2583
2722
|
}
|
|
2584
2723
|
},
|
|
2585
2724
|
"i18n_key_string": {
|
|
@@ -2670,13 +2809,6 @@
|
|
|
2670
2809
|
}
|
|
2671
2810
|
}
|
|
2672
2811
|
},
|
|
2673
|
-
"tag_0": {
|
|
2674
|
-
"type": "array",
|
|
2675
|
-
"items": {
|
|
2676
|
-
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2677
|
-
"type": "string"
|
|
2678
|
-
}
|
|
2679
|
-
},
|
|
2680
2812
|
"Microchart.StackedBar.Bar": {
|
|
2681
2813
|
"type": "object",
|
|
2682
2814
|
"additionalProperties": false,
|
|
@@ -3473,7 +3605,11 @@
|
|
|
3473
3605
|
"properties": {
|
|
3474
3606
|
"title": {
|
|
3475
3607
|
"description": "Represents a title of the column; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3476
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
3608
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
3609
|
+
"i18n": {
|
|
3610
|
+
"type": "XCOL",
|
|
3611
|
+
"comment": "Column title"
|
|
3612
|
+
}
|
|
3477
3613
|
},
|
|
3478
3614
|
"width": {
|
|
3479
3615
|
"description": "Defines the width of the column",
|
|
@@ -4075,7 +4211,11 @@
|
|
|
4075
4211
|
"properties": {
|
|
4076
4212
|
"title": {
|
|
4077
4213
|
"description": "Represents a title of the object group; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4078
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
4214
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
4215
|
+
"i18n": {
|
|
4216
|
+
"type": "XGRP",
|
|
4217
|
+
"comment": "Object group title"
|
|
4218
|
+
}
|
|
4079
4219
|
},
|
|
4080
4220
|
"titleMaxLines": {
|
|
4081
4221
|
"description": "[Experimental] Limits the number of lines for wrapping the group title.",
|
|
@@ -4482,7 +4622,11 @@
|
|
|
4482
4622
|
"properties": {
|
|
4483
4623
|
"label": {
|
|
4484
4624
|
"description": "Represents a label of the field; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4485
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
4625
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
4626
|
+
"i18n": {
|
|
4627
|
+
"type": "XFLD",
|
|
4628
|
+
"comment": "Field label"
|
|
4629
|
+
}
|
|
4486
4630
|
},
|
|
4487
4631
|
"value": {
|
|
4488
4632
|
"type": "string",
|
|
@@ -4894,7 +5038,11 @@
|
|
|
4894
5038
|
},
|
|
4895
5039
|
"title": {
|
|
4896
5040
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4897
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5041
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5042
|
+
"i18n": {
|
|
5043
|
+
"type": "XTIT",
|
|
5044
|
+
"comment": "Header title"
|
|
5045
|
+
}
|
|
4898
5046
|
},
|
|
4899
5047
|
"titleMaxLines": {
|
|
4900
5048
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -4910,7 +5058,11 @@
|
|
|
4910
5058
|
},
|
|
4911
5059
|
"subTitle": {
|
|
4912
5060
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4913
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5061
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5062
|
+
"i18n": {
|
|
5063
|
+
"type": "XTIT",
|
|
5064
|
+
"comment": "Header subtitle"
|
|
5065
|
+
}
|
|
4914
5066
|
},
|
|
4915
5067
|
"subTitleMaxLines": {
|
|
4916
5068
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -5013,7 +5165,11 @@
|
|
|
5013
5165
|
},
|
|
5014
5166
|
"title": {
|
|
5015
5167
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5016
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5168
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5169
|
+
"i18n": {
|
|
5170
|
+
"type": "XTIT",
|
|
5171
|
+
"comment": "Header title"
|
|
5172
|
+
}
|
|
5017
5173
|
},
|
|
5018
5174
|
"titleMaxLines": {
|
|
5019
5175
|
"description": "[Experimental] Limit the number of lines for the title.",
|
|
@@ -5029,7 +5185,11 @@
|
|
|
5029
5185
|
},
|
|
5030
5186
|
"subTitle": {
|
|
5031
5187
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5032
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
5188
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
5189
|
+
"i18n": {
|
|
5190
|
+
"type": "XTIT",
|
|
5191
|
+
"comment": "Header subtitle"
|
|
5192
|
+
}
|
|
5033
5193
|
},
|
|
5034
5194
|
"subTitleMaxLines": {
|
|
5035
5195
|
"description": "[Experimental] Limit the number of lines for the sub title.",
|
|
@@ -6125,7 +6285,11 @@
|
|
|
6125
6285
|
"text": {
|
|
6126
6286
|
"description": "Text displayed for extended actions in Quick View",
|
|
6127
6287
|
"type": "string",
|
|
6128
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6288
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6289
|
+
"i18n": {
|
|
6290
|
+
"type": "XFLD",
|
|
6291
|
+
"comment": "Label for extended actions in Quick View Cards"
|
|
6292
|
+
}
|
|
6129
6293
|
},
|
|
6130
6294
|
"press": {
|
|
6131
6295
|
"description": "Name of the press handler for extended actions in Quick View",
|
|
@@ -6329,27 +6493,47 @@
|
|
|
6329
6493
|
"category": {
|
|
6330
6494
|
"description": "Represents the category of the card- used in the card header",
|
|
6331
6495
|
"type": "string",
|
|
6332
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6496
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6497
|
+
"i18n": {
|
|
6498
|
+
"type": "XTIT",
|
|
6499
|
+
"comment": "Card category which is displayed in the card header"
|
|
6500
|
+
}
|
|
6333
6501
|
},
|
|
6334
6502
|
"itemText": {
|
|
6335
6503
|
"description": "Represents the user defined string in placeholder card",
|
|
6336
6504
|
"type": "string",
|
|
6337
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6505
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6506
|
+
"i18n": {
|
|
6507
|
+
"type": "XALT",
|
|
6508
|
+
"comment": "Text in placeholder card"
|
|
6509
|
+
}
|
|
6338
6510
|
},
|
|
6339
6511
|
"title": {
|
|
6340
6512
|
"description": "Represents language-dependent title of the card - used in the card header",
|
|
6341
6513
|
"type": "string",
|
|
6342
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6514
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6515
|
+
"i18n": {
|
|
6516
|
+
"type": "XTIT",
|
|
6517
|
+
"comment": "Card title which is displayed in the card header"
|
|
6518
|
+
}
|
|
6343
6519
|
},
|
|
6344
6520
|
"subTitle": {
|
|
6345
6521
|
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
6346
6522
|
"type": "string",
|
|
6347
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6523
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6524
|
+
"i18n": {
|
|
6525
|
+
"type": "XTIT",
|
|
6526
|
+
"comment": "Card subtitle which is displayed in the card header"
|
|
6527
|
+
}
|
|
6348
6528
|
},
|
|
6349
6529
|
"valueSelectionInfo": {
|
|
6350
6530
|
"description": "Represents things like people, number of items",
|
|
6351
6531
|
"type": "string",
|
|
6352
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
6532
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$",
|
|
6533
|
+
"i18n": {
|
|
6534
|
+
"type": "XFLD",
|
|
6535
|
+
"comment": "Card KPI label"
|
|
6536
|
+
}
|
|
6353
6537
|
},
|
|
6354
6538
|
"entitySet": {
|
|
6355
6539
|
"description": "Represents the entity set that will be displayed in this card",
|
|
@@ -6788,7 +6972,11 @@
|
|
|
6788
6972
|
"title": {
|
|
6789
6973
|
"description": "Represents the title for the content of the reuse component",
|
|
6790
6974
|
"type": "string",
|
|
6791
|
-
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
6975
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$",
|
|
6976
|
+
"i18n": {
|
|
6977
|
+
"type": "XTIT",
|
|
6978
|
+
"comment": "Reuse component title"
|
|
6979
|
+
}
|
|
6792
6980
|
},
|
|
6793
6981
|
"binding": {
|
|
6794
6982
|
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
|
@@ -7931,7 +8119,7 @@
|
|
|
7931
8119
|
}
|
|
7932
8120
|
}
|
|
7933
8121
|
},
|
|
7934
|
-
"
|
|
8122
|
+
"deviceType_0": {
|
|
7935
8123
|
"type": "object",
|
|
7936
8124
|
"description": "Represents device types on which the app is running",
|
|
7937
8125
|
"additionalProperties": false,
|
|
@@ -8107,6 +8295,25 @@
|
|
|
8107
8295
|
}
|
|
8108
8296
|
}
|
|
8109
8297
|
},
|
|
8298
|
+
"deviceType": {
|
|
8299
|
+
"type": "object",
|
|
8300
|
+
"description": "Represents device types on which the app is running",
|
|
8301
|
+
"additionalProperties": false,
|
|
8302
|
+
"properties": {
|
|
8303
|
+
"desktop": {
|
|
8304
|
+
"description": "Represents indicator whether desktop device is supported",
|
|
8305
|
+
"type": "boolean"
|
|
8306
|
+
},
|
|
8307
|
+
"tablet": {
|
|
8308
|
+
"description": "Represents indicator whether tablet device is supported",
|
|
8309
|
+
"type": "boolean"
|
|
8310
|
+
},
|
|
8311
|
+
"phone": {
|
|
8312
|
+
"description": "Represents indicator whether phone device is supported",
|
|
8313
|
+
"type": "boolean"
|
|
8314
|
+
}
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8110
8317
|
"objectType": {
|
|
8111
8318
|
"type": "string",
|
|
8112
8319
|
"enum": [
|
|
@@ -8367,19 +8574,35 @@
|
|
|
8367
8574
|
},
|
|
8368
8575
|
"title": {
|
|
8369
8576
|
"description": "Represents a title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8370
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8577
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8578
|
+
"i18n": {
|
|
8579
|
+
"type": "XTIT",
|
|
8580
|
+
"comment": "Application title"
|
|
8581
|
+
}
|
|
8371
8582
|
},
|
|
8372
8583
|
"subTitle": {
|
|
8373
8584
|
"description": "Represents a subtitle; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8374
|
-
"$ref": "#/definitions/i18n_key_string"
|
|
8585
|
+
"$ref": "#/definitions/i18n_key_string",
|
|
8586
|
+
"i18n": {
|
|
8587
|
+
"type": "XTIT",
|
|
8588
|
+
"comment": "Application subtitle"
|
|
8589
|
+
}
|
|
8375
8590
|
},
|
|
8376
8591
|
"shortTitle": {
|
|
8377
8592
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8378
|
-
"$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
|
+
}
|
|
8379
8598
|
},
|
|
8380
8599
|
"info": {
|
|
8381
8600
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
8382
|
-
"$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
|
+
}
|
|
8383
8606
|
},
|
|
8384
8607
|
"displayMode": {
|
|
8385
8608
|
"description": "Represents the display mode of the tile",
|
|
@@ -8452,6 +8675,17 @@
|
|
|
8452
8675
|
}
|
|
8453
8676
|
]
|
|
8454
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
|
+
},
|
|
8455
8689
|
"enhanceWithSetting": {
|
|
8456
8690
|
"oneOf": [
|
|
8457
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
|
@@ -628,6 +628,12 @@ export type JSONSchemaForSAPCARDNamespace = {
|
|
|
628
628
|
* The version number of the schema in major.minor.patch format.
|
|
629
629
|
*/
|
|
630
630
|
export type Semanticversion = string;
|
|
631
|
+
/**
|
|
632
|
+
* Represents SBPA Custom Task UI Attributes
|
|
633
|
+
*/
|
|
634
|
+
export type JSONSchemaForSapBpaTaskNamespace = {
|
|
635
|
+
[k: string]: unknown;
|
|
636
|
+
};
|
|
631
637
|
|
|
632
638
|
export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
633
639
|
/**
|
|
@@ -693,7 +699,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
693
699
|
| "1.53.0"
|
|
694
700
|
| "1.54.0"
|
|
695
701
|
| "1.55.0"
|
|
696
|
-
| "1.56.0"
|
|
702
|
+
| "1.56.0"
|
|
703
|
+
| "1.57.0"
|
|
704
|
+
| "1.58.0";
|
|
697
705
|
/**
|
|
698
706
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
699
707
|
*/
|
|
@@ -727,6 +735,7 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
727
735
|
"sap.card"?: JSONSchemaForSAPCARDNamespace;
|
|
728
736
|
"sap.package"?: JSONSchemaForSAPPACKAGENamespace;
|
|
729
737
|
"sap.artifact"?: JSONSchemaForSAPARTIFACTNamespace;
|
|
738
|
+
"sap.bpa.task"?: JSONSchemaForSapBpaTaskNamespace;
|
|
730
739
|
}
|
|
731
740
|
/**
|
|
732
741
|
* Represents general application attributes
|
|
@@ -1132,15 +1141,15 @@ export interface Inbound {
|
|
|
1132
1141
|
*/
|
|
1133
1142
|
export interface DeviceType {
|
|
1134
1143
|
/**
|
|
1135
|
-
* Represents indicator whether desktop device is supported
|
|
1144
|
+
* Represents indicator whether desktop device is supported
|
|
1136
1145
|
*/
|
|
1137
1146
|
desktop?: boolean;
|
|
1138
1147
|
/**
|
|
1139
|
-
* Represents indicator whether tablet device is supported
|
|
1148
|
+
* Represents indicator whether tablet device is supported
|
|
1140
1149
|
*/
|
|
1141
1150
|
tablet?: boolean;
|
|
1142
1151
|
/**
|
|
1143
|
-
* Represents indicator whether phone device is supported
|
|
1152
|
+
* Represents indicator whether phone device is supported
|
|
1144
1153
|
*/
|
|
1145
1154
|
phone?: boolean;
|
|
1146
1155
|
}
|
|
@@ -1322,15 +1331,15 @@ export interface JSONSchemaForSAPUINamespace {
|
|
|
1322
1331
|
*/
|
|
1323
1332
|
export interface DeviceType1 {
|
|
1324
1333
|
/**
|
|
1325
|
-
* Represents indicator whether desktop device is supported
|
|
1334
|
+
* Represents indicator whether desktop device is supported
|
|
1326
1335
|
*/
|
|
1327
1336
|
desktop?: boolean;
|
|
1328
1337
|
/**
|
|
1329
|
-
* Represents indicator whether tablet device is supported
|
|
1338
|
+
* Represents indicator whether tablet device is supported
|
|
1330
1339
|
*/
|
|
1331
1340
|
tablet?: boolean;
|
|
1332
1341
|
/**
|
|
1333
|
-
* Represents indicator whether phone device is supported
|
|
1342
|
+
* Represents indicator whether phone device is supported
|
|
1334
1343
|
*/
|
|
1335
1344
|
phone?: boolean;
|
|
1336
1345
|
}
|
|
@@ -2479,7 +2488,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2479
2488
|
/**
|
|
2480
2489
|
* Represents attributes format version. It is managed by namespace owner
|
|
2481
2490
|
*/
|
|
2482
|
-
_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";
|
|
2483
2492
|
/**
|
|
2484
2493
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2485
2494
|
*/
|
|
@@ -2524,6 +2533,10 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2524
2533
|
* Represents the switch to activate live update in the global filters, else manual update will be required
|
|
2525
2534
|
*/
|
|
2526
2535
|
enableLiveFilter?: boolean;
|
|
2536
|
+
/**
|
|
2537
|
+
* Enable loading of cards when they enter viewport
|
|
2538
|
+
*/
|
|
2539
|
+
enableLazyRendering?: boolean;
|
|
2527
2540
|
refreshStrategyOnAppRestore?: RefreshStrategiesPropDef1;
|
|
2528
2541
|
/**
|
|
2529
2542
|
* Flag to enable/disable analytical parameter support for Smart filter bar
|