@ui5/manifest 1.61.0 → 1.62.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 +8 -4
- package/mapping.json +2 -1
- package/package.json +24 -1
- package/schema.json +262 -26
- package/schema_cil.json +11 -1
- package/types/manifest.d.ts +66 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +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.62.0...HEAD).
|
|
6
6
|
|
|
7
|
-
<a name="v1.
|
|
8
|
-
## [v1.
|
|
7
|
+
<a name="v1.62.0"></a>
|
|
8
|
+
## [v1.62.0] - 0001-01-01
|
|
9
|
+
|
|
10
|
+
<a name="v1.61.1"></a>
|
|
11
|
+
## [v1.61.1] - 2024-02-09
|
|
9
12
|
|
|
10
13
|
<a name="v1.60.0"></a>
|
|
11
14
|
## [v1.60.0] - 2023-09-22
|
|
@@ -52,7 +55,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
52
55
|
<a name="v1.48.1"></a>
|
|
53
56
|
## v1.48.1 - 2022-11-10
|
|
54
57
|
|
|
55
|
-
[v1.
|
|
58
|
+
[v1.62.0]: https://github.com/SAP/ui5-manifest/compare/v1.61.1...v1.62.0
|
|
59
|
+
[v1.61.1]: https://github.com/SAP/ui5-manifest/compare/v1.60.0...v1.61.1
|
|
56
60
|
[v1.60.0]: https://github.com/SAP/ui5-manifest/compare/v1.59.0...v1.60.0
|
|
57
61
|
[v1.59.0]: https://github.com/SAP/ui5-manifest/compare/v1.57.0...v1.59.0
|
|
58
62
|
[v1.57.0]: https://github.com/SAP/ui5-manifest/compare/v1.56.0...v1.57.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@ui5/manifest",
|
|
3
|
+
"version": "1.62.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
|
+
"prepublishOnly": "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
|
+
}
|
package/schema.json
CHANGED
|
@@ -77,7 +77,8 @@
|
|
|
77
77
|
"1.57.0",
|
|
78
78
|
"1.58.0",
|
|
79
79
|
"1.59.0",
|
|
80
|
-
"1.60.0"
|
|
80
|
+
"1.60.0",
|
|
81
|
+
"1.61.0"
|
|
81
82
|
]
|
|
82
83
|
},
|
|
83
84
|
"start_url": {
|
|
@@ -119,7 +120,8 @@
|
|
|
119
120
|
"1.17.0",
|
|
120
121
|
"1.18.0",
|
|
121
122
|
"1.19.0",
|
|
122
|
-
"1.20.0"
|
|
123
|
+
"1.20.0",
|
|
124
|
+
"1.21.0"
|
|
123
125
|
]
|
|
124
126
|
},
|
|
125
127
|
"sourceTemplate": {
|
|
@@ -149,7 +151,7 @@
|
|
|
149
151
|
"$ref": "#/definitions/id_def"
|
|
150
152
|
},
|
|
151
153
|
"type": {
|
|
152
|
-
"description": "Represents type of an application and can be application or component or library",
|
|
154
|
+
"description": "Represents type of an application and can be application or component or library or card",
|
|
153
155
|
"type": "string",
|
|
154
156
|
"enum": [
|
|
155
157
|
"application",
|
|
@@ -1259,7 +1261,8 @@
|
|
|
1259
1261
|
"1.7.0",
|
|
1260
1262
|
"1.8.0",
|
|
1261
1263
|
"1.9.0",
|
|
1262
|
-
"1.10.0"
|
|
1264
|
+
"1.10.0",
|
|
1265
|
+
"1.11.0"
|
|
1263
1266
|
]
|
|
1264
1267
|
},
|
|
1265
1268
|
"globalFilterModel": {
|
|
@@ -1272,6 +1275,15 @@
|
|
|
1272
1275
|
"type": "string",
|
|
1273
1276
|
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
1274
1277
|
},
|
|
1278
|
+
"globalFilterControlType": {
|
|
1279
|
+
"description": "Represents the control to be used for the filter bar",
|
|
1280
|
+
"type": "string",
|
|
1281
|
+
"default": "SmartFilterBar",
|
|
1282
|
+
"enum": [
|
|
1283
|
+
"MacroFilterBar",
|
|
1284
|
+
"SmartFilterBar"
|
|
1285
|
+
]
|
|
1286
|
+
},
|
|
1275
1287
|
"globalFilterEntitySet": {
|
|
1276
1288
|
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
1277
1289
|
"type": "string",
|
|
@@ -1972,11 +1984,12 @@
|
|
|
1972
1984
|
"1.39.0",
|
|
1973
1985
|
"1.40.0",
|
|
1974
1986
|
"1.41.0",
|
|
1975
|
-
"1.42.0"
|
|
1987
|
+
"1.42.0",
|
|
1988
|
+
"1.43.0"
|
|
1976
1989
|
]
|
|
1977
1990
|
},
|
|
1978
1991
|
"designtime": {
|
|
1979
|
-
"description": "The path to the design time folder with assets files",
|
|
1992
|
+
"description": "[Deprecated] The path to the design time folder with assets files",
|
|
1980
1993
|
"type": "string"
|
|
1981
1994
|
},
|
|
1982
1995
|
"configuration": {
|
|
@@ -1984,6 +1997,10 @@
|
|
|
1984
1997
|
"type": "object",
|
|
1985
1998
|
"additionalProperties": false,
|
|
1986
1999
|
"properties": {
|
|
2000
|
+
"editor": {
|
|
2001
|
+
"description": "The path to the design time configuration file. Used for Configuration Editor.",
|
|
2002
|
+
"type": "string"
|
|
2003
|
+
},
|
|
1987
2004
|
"enableMarkdown": {
|
|
1988
2005
|
"description": "Markdown enablement for Adaptive Content",
|
|
1989
2006
|
"type": "boolean"
|
|
@@ -2019,6 +2036,9 @@
|
|
|
2019
2036
|
},
|
|
2020
2037
|
{
|
|
2021
2038
|
"$ref": "#/definitions/Configuration.FilterType.Search"
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
"$ref": "#/definitions/Configuration.FilterType.ComboBox"
|
|
2022
2042
|
}
|
|
2023
2043
|
]
|
|
2024
2044
|
}
|
|
@@ -2109,11 +2129,18 @@
|
|
|
2109
2129
|
"additionalProperties": false,
|
|
2110
2130
|
"properties": {
|
|
2111
2131
|
"actionsStrip": {
|
|
2112
|
-
"description": "
|
|
2113
|
-
"
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2132
|
+
"description": "Describes actions strip",
|
|
2133
|
+
"oneOf": [
|
|
2134
|
+
{
|
|
2135
|
+
"type": "array",
|
|
2136
|
+
"items": {
|
|
2137
|
+
"$ref": "#/definitions/actionsStripItem"
|
|
2138
|
+
}
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"$ref": "#/definitions/actionsStrip"
|
|
2142
|
+
}
|
|
2143
|
+
]
|
|
2117
2144
|
},
|
|
2118
2145
|
"paginator": {
|
|
2119
2146
|
"description": "[Experimental] Describes the paginator",
|
|
@@ -2726,9 +2753,65 @@
|
|
|
2726
2753
|
]
|
|
2727
2754
|
}
|
|
2728
2755
|
]
|
|
2756
|
+
},
|
|
2757
|
+
"sap.cards.ap": {
|
|
2758
|
+
"title": "JSON schema for sap.cards.ap namespace",
|
|
2759
|
+
"description": "Represents generated cards saved to the application repository",
|
|
2760
|
+
"type": "object",
|
|
2761
|
+
"properties": {
|
|
2762
|
+
"_version": {
|
|
2763
|
+
"description": "Represents attributes format version.",
|
|
2764
|
+
"type": "string",
|
|
2765
|
+
"enum": [
|
|
2766
|
+
"1.0.0"
|
|
2767
|
+
]
|
|
2768
|
+
},
|
|
2769
|
+
"embeds": {
|
|
2770
|
+
"type": "object",
|
|
2771
|
+
"description": "Represents an object with reference to the generated cards",
|
|
2772
|
+
"properties": {
|
|
2773
|
+
"ObjectPage": {
|
|
2774
|
+
"$ref": "#/definitions/embedsSettings"
|
|
2775
|
+
}
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2729
2779
|
}
|
|
2730
2780
|
},
|
|
2731
2781
|
"definitions": {
|
|
2782
|
+
"manifestSettings": {
|
|
2783
|
+
"description": "Represents the manifest settings",
|
|
2784
|
+
"type": "object",
|
|
2785
|
+
"properties": {
|
|
2786
|
+
"localUri": {
|
|
2787
|
+
"type": "string",
|
|
2788
|
+
"description": "Represents the local uri of the generated card"
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
},
|
|
2792
|
+
"embedsSettings": {
|
|
2793
|
+
"description": "Represents the embeds settings",
|
|
2794
|
+
"type": "object",
|
|
2795
|
+
"properties": {
|
|
2796
|
+
"default": {
|
|
2797
|
+
"type": "string",
|
|
2798
|
+
"description": "Represents the detault card",
|
|
2799
|
+
"pattern": "^[a-zA-Z0-9_]+$"
|
|
2800
|
+
},
|
|
2801
|
+
"manifests": {
|
|
2802
|
+
"type": "object",
|
|
2803
|
+
"desciption": "Represents the manifests of the generated cards",
|
|
2804
|
+
"patternProperties": {
|
|
2805
|
+
"^[a-zA-Z0-9_]+$": {
|
|
2806
|
+
"type": "array",
|
|
2807
|
+
"items": {
|
|
2808
|
+
"$ref": "#/definitions/manifestSettings"
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2813
|
+
}
|
|
2814
|
+
},
|
|
2732
2815
|
"tag_0": {
|
|
2733
2816
|
"type": "array",
|
|
2734
2817
|
"items": {
|
|
@@ -2825,6 +2908,19 @@
|
|
|
2825
2908
|
}
|
|
2826
2909
|
}
|
|
2827
2910
|
},
|
|
2911
|
+
"actionsStripItemBindingInfo": {
|
|
2912
|
+
"type": "object",
|
|
2913
|
+
"description": "[Experimental] Binding info for items of type actionsStripItem",
|
|
2914
|
+
"additionalProperties": false,
|
|
2915
|
+
"properties": {
|
|
2916
|
+
"template": {
|
|
2917
|
+
"$ref": "#/definitions/actionsStripItem"
|
|
2918
|
+
},
|
|
2919
|
+
"path": {
|
|
2920
|
+
"type": "string"
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
},
|
|
2828
2924
|
"Microchart.StackedBar.Bar": {
|
|
2829
2925
|
"type": "object",
|
|
2830
2926
|
"additionalProperties": false,
|
|
@@ -3020,6 +3116,25 @@
|
|
|
3020
3116
|
}
|
|
3021
3117
|
}
|
|
3022
3118
|
},
|
|
3119
|
+
"Configuration.Filter.ComboBoxItem": {
|
|
3120
|
+
"description": "A single Combo Box filter selection option",
|
|
3121
|
+
"type": "object",
|
|
3122
|
+
"additionalProperties": false,
|
|
3123
|
+
"properties": {
|
|
3124
|
+
"title": {
|
|
3125
|
+
"description": "The title of the filter option",
|
|
3126
|
+
"type": "string"
|
|
3127
|
+
},
|
|
3128
|
+
"key": {
|
|
3129
|
+
"description": "The unique key of the filter option. Mapped to the filter's value",
|
|
3130
|
+
"type": "string"
|
|
3131
|
+
},
|
|
3132
|
+
"additionalText": {
|
|
3133
|
+
"description": "The secondary value for the combo box item.",
|
|
3134
|
+
"type": "string"
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
},
|
|
3023
3138
|
"Configuration.Filter.Item": {
|
|
3024
3139
|
"description": "A single filter selection option",
|
|
3025
3140
|
"type": "object",
|
|
@@ -4205,7 +4320,7 @@
|
|
|
4205
4320
|
"type": "string"
|
|
4206
4321
|
},
|
|
4207
4322
|
"selectedKey": {
|
|
4208
|
-
"description": "Defines the initially selected key from the given options for
|
|
4323
|
+
"description": "Defines the initially selected key from the given options for combo box.",
|
|
4209
4324
|
"type": "string"
|
|
4210
4325
|
},
|
|
4211
4326
|
"placeholder": {
|
|
@@ -4218,7 +4333,7 @@
|
|
|
4218
4333
|
},
|
|
4219
4334
|
"item": {
|
|
4220
4335
|
"type": "object",
|
|
4221
|
-
"description": "Binding info for
|
|
4336
|
+
"description": "Binding info for combo box items",
|
|
4222
4337
|
"required": [
|
|
4223
4338
|
"template"
|
|
4224
4339
|
],
|
|
@@ -4287,6 +4402,52 @@
|
|
|
4287
4402
|
"$ref": "#/definitions/simpleBinding"
|
|
4288
4403
|
}
|
|
4289
4404
|
]
|
|
4405
|
+
},
|
|
4406
|
+
"height": {
|
|
4407
|
+
"description": "The height of the image",
|
|
4408
|
+
"type": "string"
|
|
4409
|
+
},
|
|
4410
|
+
"imageFit": {
|
|
4411
|
+
"description": "This property is for adjusting the image size using the CSS style <code>background-size</code>.",
|
|
4412
|
+
"type": "string"
|
|
4413
|
+
},
|
|
4414
|
+
"imagePosition": {
|
|
4415
|
+
"description": "This property is for adjusting the image position using the CSS style <code>background-position</code>.",
|
|
4416
|
+
"type": "string"
|
|
4417
|
+
},
|
|
4418
|
+
"overlay": {
|
|
4419
|
+
"description": "Overlay on the Image",
|
|
4420
|
+
"type": "object",
|
|
4421
|
+
"properties": {
|
|
4422
|
+
"supertitle": {
|
|
4423
|
+
"description": "The text before the title",
|
|
4424
|
+
"type": "string"
|
|
4425
|
+
},
|
|
4426
|
+
"title": {
|
|
4427
|
+
"description": "The title",
|
|
4428
|
+
"type": "string"
|
|
4429
|
+
},
|
|
4430
|
+
"subTitle": {
|
|
4431
|
+
"description": "The subTitle",
|
|
4432
|
+
"type": "string"
|
|
4433
|
+
},
|
|
4434
|
+
"verticalPosition": {
|
|
4435
|
+
"description": "The vertical alignment of the texts",
|
|
4436
|
+
"type": "string"
|
|
4437
|
+
},
|
|
4438
|
+
"horizontalPosition": {
|
|
4439
|
+
"description": "The horizontal alignment of the texts",
|
|
4440
|
+
"type": "string"
|
|
4441
|
+
},
|
|
4442
|
+
"textColor": {
|
|
4443
|
+
"description": "The color of the texts",
|
|
4444
|
+
"type": "string"
|
|
4445
|
+
},
|
|
4446
|
+
"background": {
|
|
4447
|
+
"description": "The background behind the texts and over the image",
|
|
4448
|
+
"type": "string"
|
|
4449
|
+
}
|
|
4450
|
+
}
|
|
4290
4451
|
}
|
|
4291
4452
|
}
|
|
4292
4453
|
},
|
|
@@ -4837,11 +4998,18 @@
|
|
|
4837
4998
|
"$ref": "#/definitions/Microchart"
|
|
4838
4999
|
},
|
|
4839
5000
|
"actionsStrip": {
|
|
4840
|
-
"description": "
|
|
4841
|
-
"
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
5001
|
+
"description": "Describes actions strip",
|
|
5002
|
+
"oneOf": [
|
|
5003
|
+
{
|
|
5004
|
+
"type": "array",
|
|
5005
|
+
"items": {
|
|
5006
|
+
"$ref": "#/definitions/actionsStripItem"
|
|
5007
|
+
}
|
|
5008
|
+
},
|
|
5009
|
+
{
|
|
5010
|
+
"$ref": "#/definitions/actionsStrip"
|
|
5011
|
+
}
|
|
5012
|
+
]
|
|
4845
5013
|
}
|
|
4846
5014
|
}
|
|
4847
5015
|
},
|
|
@@ -5872,8 +6040,17 @@
|
|
|
5872
6040
|
}
|
|
5873
6041
|
]
|
|
5874
6042
|
},
|
|
6043
|
+
"actionsStrip": {
|
|
6044
|
+
"type": "object",
|
|
6045
|
+
"additionalProperties": false,
|
|
6046
|
+
"properties": {
|
|
6047
|
+
"item": {
|
|
6048
|
+
"$ref": "#/definitions/actionsStripItemBindingInfo"
|
|
6049
|
+
}
|
|
6050
|
+
}
|
|
6051
|
+
},
|
|
5875
6052
|
"actionsStripItem": {
|
|
5876
|
-
"description": "
|
|
6053
|
+
"description": "Attributes of actions strip item",
|
|
5877
6054
|
"type": "object",
|
|
5878
6055
|
"additionalProperties": false,
|
|
5879
6056
|
"properties": {
|
|
@@ -5891,7 +6068,8 @@
|
|
|
5891
6068
|
"enum": [
|
|
5892
6069
|
"Button",
|
|
5893
6070
|
"ToolbarSpacer",
|
|
5894
|
-
"Link"
|
|
6071
|
+
"Link",
|
|
6072
|
+
"Label"
|
|
5895
6073
|
],
|
|
5896
6074
|
"default": "Button"
|
|
5897
6075
|
},
|
|
@@ -6114,8 +6292,8 @@
|
|
|
6114
6292
|
}
|
|
6115
6293
|
}
|
|
6116
6294
|
},
|
|
6117
|
-
"Configuration.FilterType.
|
|
6118
|
-
"description": "
|
|
6295
|
+
"Configuration.FilterType.ComboBox": {
|
|
6296
|
+
"description": "[Experimental] ComboBox filter",
|
|
6119
6297
|
"type": "object",
|
|
6120
6298
|
"additionalProperties": false,
|
|
6121
6299
|
"properties": {
|
|
@@ -6123,13 +6301,20 @@
|
|
|
6123
6301
|
"description": "The type of the filter",
|
|
6124
6302
|
"oneOf": [
|
|
6125
6303
|
{
|
|
6126
|
-
"const": "
|
|
6304
|
+
"const": "ComboBox"
|
|
6127
6305
|
},
|
|
6128
6306
|
{
|
|
6129
6307
|
"$ref": "#/definitions/simpleBinding"
|
|
6130
6308
|
}
|
|
6131
6309
|
]
|
|
6132
6310
|
},
|
|
6311
|
+
"value": {
|
|
6312
|
+
"description": "The value of the filter"
|
|
6313
|
+
},
|
|
6314
|
+
"selectedKey": {
|
|
6315
|
+
"description": "Defines the initially selected key from the given options for combo box.",
|
|
6316
|
+
"type": "string"
|
|
6317
|
+
},
|
|
6133
6318
|
"data": {
|
|
6134
6319
|
"$ref": "#/definitions/data"
|
|
6135
6320
|
},
|
|
@@ -6137,6 +6322,60 @@
|
|
|
6137
6322
|
"description": "Label for the filter. Used by screen readers",
|
|
6138
6323
|
"type": "string"
|
|
6139
6324
|
},
|
|
6325
|
+
"placeholder": {
|
|
6326
|
+
"description": "The placeholder of the filter",
|
|
6327
|
+
"type": "string"
|
|
6328
|
+
},
|
|
6329
|
+
"items": {
|
|
6330
|
+
"type": "array",
|
|
6331
|
+
"items": {
|
|
6332
|
+
"$ref": "#/definitions/Configuration.Filter.ComboBoxItem"
|
|
6333
|
+
}
|
|
6334
|
+
},
|
|
6335
|
+
"item": {
|
|
6336
|
+
"type": "object",
|
|
6337
|
+
"additionalProperties": false,
|
|
6338
|
+
"required": [
|
|
6339
|
+
"template"
|
|
6340
|
+
],
|
|
6341
|
+
"properties": {
|
|
6342
|
+
"template": {
|
|
6343
|
+
"$ref": "#/definitions/Configuration.Filter.ComboBoxItem"
|
|
6344
|
+
},
|
|
6345
|
+
"path": {
|
|
6346
|
+
"description": "Defines the path to the structure holding the data about the items",
|
|
6347
|
+
"type": "string",
|
|
6348
|
+
"default": "/",
|
|
6349
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
|
|
6350
|
+
}
|
|
6351
|
+
}
|
|
6352
|
+
},
|
|
6353
|
+
"visible": {
|
|
6354
|
+
"description": "Determines whether the filter is visible",
|
|
6355
|
+
"$ref": "#/definitions/visibility"
|
|
6356
|
+
}
|
|
6357
|
+
}
|
|
6358
|
+
},
|
|
6359
|
+
"Configuration.FilterType.Search": {
|
|
6360
|
+
"description": "Search filter",
|
|
6361
|
+
"type": "object",
|
|
6362
|
+
"additionalProperties": false,
|
|
6363
|
+
"properties": {
|
|
6364
|
+
"type": {
|
|
6365
|
+
"description": "The type of the filter",
|
|
6366
|
+
"oneOf": [
|
|
6367
|
+
{
|
|
6368
|
+
"const": "Search"
|
|
6369
|
+
},
|
|
6370
|
+
{
|
|
6371
|
+
"$ref": "#/definitions/simpleBinding"
|
|
6372
|
+
}
|
|
6373
|
+
]
|
|
6374
|
+
},
|
|
6375
|
+
"label": {
|
|
6376
|
+
"description": "Label for the filter. Used by screen readers",
|
|
6377
|
+
"type": "string"
|
|
6378
|
+
},
|
|
6140
6379
|
"value": {
|
|
6141
6380
|
"description": "The value of the filter",
|
|
6142
6381
|
"type": "string"
|
|
@@ -6167,9 +6406,6 @@
|
|
|
6167
6406
|
}
|
|
6168
6407
|
]
|
|
6169
6408
|
},
|
|
6170
|
-
"data": {
|
|
6171
|
-
"$ref": "#/definitions/data"
|
|
6172
|
-
},
|
|
6173
6409
|
"label": {
|
|
6174
6410
|
"description": "Label for the filter. Used by screen readers",
|
|
6175
6411
|
"type": "string"
|
package/schema_cil.json
CHANGED
|
@@ -915,7 +915,8 @@
|
|
|
915
915
|
"1.7.0",
|
|
916
916
|
"1.8.0",
|
|
917
917
|
"1.9.0",
|
|
918
|
-
"1.10.0"
|
|
918
|
+
"1.10.0",
|
|
919
|
+
"1.11.0"
|
|
919
920
|
]
|
|
920
921
|
},
|
|
921
922
|
"globalFilterModel": {
|
|
@@ -928,6 +929,15 @@
|
|
|
928
929
|
"type": "string",
|
|
929
930
|
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
930
931
|
},
|
|
932
|
+
"globalFilterControlType": {
|
|
933
|
+
"description": "Represents the control to be used for the filter bar",
|
|
934
|
+
"type": "string",
|
|
935
|
+
"default": "SmartFilterBar",
|
|
936
|
+
"enum": [
|
|
937
|
+
"MacroFilterBar",
|
|
938
|
+
"SmartFilterBar"
|
|
939
|
+
]
|
|
940
|
+
},
|
|
931
941
|
"globalFilterEntitySet": {
|
|
932
942
|
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
933
943
|
"type": "string",
|
package/types/manifest.d.ts
CHANGED
|
@@ -703,7 +703,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
703
703
|
| "1.57.0"
|
|
704
704
|
| "1.58.0"
|
|
705
705
|
| "1.59.0"
|
|
706
|
-
| "1.60.0"
|
|
706
|
+
| "1.60.0"
|
|
707
|
+
| "1.61.0";
|
|
707
708
|
/**
|
|
708
709
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
709
710
|
*/
|
|
@@ -738,6 +739,7 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
738
739
|
"sap.package"?: JSONSchemaForSAPPACKAGENamespace;
|
|
739
740
|
"sap.artifact"?: JSONSchemaForSAPARTIFACTNamespace;
|
|
740
741
|
"sap.bpa.task"?: JSONSchemaForSapBpaTaskNamespace;
|
|
742
|
+
"sap.cards.ap"?: JSONSchemaForSapCardsApNamespace;
|
|
741
743
|
}
|
|
742
744
|
/**
|
|
743
745
|
* Represents general application attributes
|
|
@@ -766,7 +768,8 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
766
768
|
| "1.17.0"
|
|
767
769
|
| "1.18.0"
|
|
768
770
|
| "1.19.0"
|
|
769
|
-
| "1.20.0"
|
|
771
|
+
| "1.20.0"
|
|
772
|
+
| "1.21.0";
|
|
770
773
|
/**
|
|
771
774
|
* Represents the template from which the app was generated
|
|
772
775
|
*/
|
|
@@ -790,7 +793,7 @@ export interface JSONSchemaForSAPAPPNamespace {
|
|
|
790
793
|
*/
|
|
791
794
|
id: string;
|
|
792
795
|
/**
|
|
793
|
-
* Represents type of an application and can be application or component or library
|
|
796
|
+
* Represents type of an application and can be application or component or library or card
|
|
794
797
|
*/
|
|
795
798
|
type: "application" | "component" | "library" | "card";
|
|
796
799
|
/**
|
|
@@ -2490,7 +2493,18 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2490
2493
|
/**
|
|
2491
2494
|
* Represents attributes format version. It is managed by namespace owner
|
|
2492
2495
|
*/
|
|
2493
|
-
_version?:
|
|
2496
|
+
_version?:
|
|
2497
|
+
| "1.1.0"
|
|
2498
|
+
| "1.2.0"
|
|
2499
|
+
| "1.3.0"
|
|
2500
|
+
| "1.4.0"
|
|
2501
|
+
| "1.5.0"
|
|
2502
|
+
| "1.6.0"
|
|
2503
|
+
| "1.7.0"
|
|
2504
|
+
| "1.8.0"
|
|
2505
|
+
| "1.9.0"
|
|
2506
|
+
| "1.10.0"
|
|
2507
|
+
| "1.11.0";
|
|
2494
2508
|
/**
|
|
2495
2509
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2496
2510
|
*/
|
|
@@ -2499,6 +2513,10 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2499
2513
|
* Represents the entity to use as global filter in the smart filter bar control
|
|
2500
2514
|
*/
|
|
2501
2515
|
globalFilterEntityType?: string;
|
|
2516
|
+
/**
|
|
2517
|
+
* Represents the control to be used for the filter bar
|
|
2518
|
+
*/
|
|
2519
|
+
globalFilterControlType?: "MacroFilterBar" | "SmartFilterBar";
|
|
2502
2520
|
/**
|
|
2503
2521
|
* Represents the entity set to use as global filter in the smart filter bar control
|
|
2504
2522
|
*/
|
|
@@ -3587,3 +3605,47 @@ export interface JSONSchemaForSAPARTIFACTNamespace {
|
|
|
3587
3605
|
};
|
|
3588
3606
|
[k: string]: unknown;
|
|
3589
3607
|
}
|
|
3608
|
+
/**
|
|
3609
|
+
* Represents generated cards saved to the application repository
|
|
3610
|
+
*/
|
|
3611
|
+
export interface JSONSchemaForSapCardsApNamespace {
|
|
3612
|
+
/**
|
|
3613
|
+
* Represents attributes format version.
|
|
3614
|
+
*/
|
|
3615
|
+
_version?: "1.0.0";
|
|
3616
|
+
/**
|
|
3617
|
+
* Represents an object with reference to the generated cards
|
|
3618
|
+
*/
|
|
3619
|
+
embeds?: {
|
|
3620
|
+
ObjectPage?: EmbedsSettings;
|
|
3621
|
+
[k: string]: unknown;
|
|
3622
|
+
};
|
|
3623
|
+
[k: string]: unknown;
|
|
3624
|
+
}
|
|
3625
|
+
/**
|
|
3626
|
+
* Represents the embeds settings
|
|
3627
|
+
*/
|
|
3628
|
+
export interface EmbedsSettings {
|
|
3629
|
+
/**
|
|
3630
|
+
* Represents the detault card
|
|
3631
|
+
*/
|
|
3632
|
+
default?: string;
|
|
3633
|
+
manifests?: {
|
|
3634
|
+
/**
|
|
3635
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
3636
|
+
* via the `patternProperty` "^[a-zA-Z0-9_]+$".
|
|
3637
|
+
*/
|
|
3638
|
+
[k: string]: ManifestSettings[];
|
|
3639
|
+
};
|
|
3640
|
+
[k: string]: unknown;
|
|
3641
|
+
}
|
|
3642
|
+
/**
|
|
3643
|
+
* Represents the manifest settings
|
|
3644
|
+
*/
|
|
3645
|
+
export interface ManifestSettings {
|
|
3646
|
+
/**
|
|
3647
|
+
* Represents the local uri of the generated card
|
|
3648
|
+
*/
|
|
3649
|
+
localUri?: string;
|
|
3650
|
+
[k: string]: unknown;
|
|
3651
|
+
}
|