@ui5/manifest 2.5.0 → 2.7.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 +51 -254
- package/README.md +4 -4
- package/mapping.json +6 -4
- package/package.json +1 -1
- package/schema.json +8773 -8635
- package/schema_cil.json +3144 -3135
- package/types/manifest.d.ts +11 -1
package/types/manifest.d.ts
CHANGED
|
@@ -726,7 +726,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
726
726
|
| "2.3.0"
|
|
727
727
|
| "2.3.1"
|
|
728
728
|
| "2.4.0"
|
|
729
|
-
| "2.5.0"
|
|
729
|
+
| "2.5.0"
|
|
730
|
+
| "2.6.0"
|
|
731
|
+
| "2.7.0";
|
|
730
732
|
/**
|
|
731
733
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
732
734
|
*/
|
|
@@ -2696,6 +2698,10 @@ export interface CardSetting {
|
|
|
2696
2698
|
* Represents the flag to enable/disable individual card's functionality to add them to insight
|
|
2697
2699
|
*/
|
|
2698
2700
|
enableAddToInsights?: boolean;
|
|
2701
|
+
/**
|
|
2702
|
+
* Represents the flag to enable/disable text wrapping for list and table cards
|
|
2703
|
+
*/
|
|
2704
|
+
enableTextWrapping?: boolean;
|
|
2699
2705
|
/**
|
|
2700
2706
|
* Represents the flag to show/hide individual card's functionality to refresh the card
|
|
2701
2707
|
*/
|
|
@@ -3141,6 +3147,10 @@ export interface JSONSchemaForSAPCLOUDNamespace {
|
|
|
3141
3147
|
* Specify if the UI can be accessed from a different space than origin development space
|
|
3142
3148
|
*/
|
|
3143
3149
|
public?: boolean;
|
|
3150
|
+
/**
|
|
3151
|
+
* Provides the background image for the custom visualization. The URL of the image must be relative to the location of the component.js file
|
|
3152
|
+
*/
|
|
3153
|
+
backgroundImageRelativeToComponent?: string;
|
|
3144
3154
|
}
|
|
3145
3155
|
/**
|
|
3146
3156
|
* Represents general package attributes. Experimental, will be detailed in the future
|