Skip to content

Commit

Permalink
OpenUI5 Documentation Update 14.06.2024
Browse files Browse the repository at this point in the history
  • Loading branch information
openui5bot committed Jun 14, 2024
1 parent a3f001a commit 5ba92e6
Show file tree
Hide file tree
Showing 87 changed files with 323 additions and 95 deletions.
2 changes: 1 addition & 1 deletion docs/0index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ OpenUI5 Version for the OpenUI5 Demo Kit
- [OpenUI5: UI Development Toolkit for HTML5](OpenUI5_UI_Development_Toolkit_for_HTML5_95d113b.md)
- [What's New in OpenUI5](What_s_New_in_OpenUI5_99ac68a.md)
- [What's New in OpenUI5 1.125](What_s_New_in_OpenUI5_1_125_9d87044.md)
- [What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md)
- [Previous Versions](Previous_Versions_6660a59.md)
- [What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md)
- [What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md)
- [What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md)
- [What's New in OpenUI5 1.121](What_s_New_in_OpenUI5_1_121_91a4a2f.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ For loading lazy components inside a library, proceed with the library mechanism

**Scenario 2:** Standalone component

In this scenario, you only need to maintain a dependency to the component via the `sap.ui5/componentUsages` section of your component's`manifest.json` file. You have two ways to configure reuse components:
In this scenario, you only need to maintain a dependency to the component via the `sap.ui5/componentUsages` section of your component's `manifest.json` file. You have two ways to configure reuse components:

- Add the **mandatory** components to `sap.ui5/componentUsages`. The declared components will be preloaded asynchronously by default.

Expand Down
7 changes: 5 additions & 2 deletions docs/OpenUI5_UI_Development_Toolkit_for_HTML5_95d113b.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ And many more....
>
> For more information, see [Versioning and Maintenance of OpenUI5](Versioning_and_Maintenance_of_OpenUI5_91f0214.md).
- **[What's New in OpenUI5](What_s_New_in_OpenUI5_99ac68a.md "Find out what's new in the latest versions of OpenUI5.")**
Find out what's new in the latest versions of OpenUI5.
- **[What's New in OpenUI5](What_s_New_in_OpenUI5_99ac68a.md "SAPUI5 OpenUI5: TypeScript now available for improved development
efficiency and experience. Check latest videos in SAP Technology YouTube channel for app
development guidance. Use TypeScript for early error catching and code assist. Learn UI5
TypeScript Tutorial for app development in TypeScript.")**
SAPUI5 OpenUI5: TypeScript now available for improved development efficiency and experience. Check latest videos in SAP Technology YouTube channel for app development guidance. Use TypeScript for early error catching and code assist. Learn UI5 TypeScript Tutorial for app development in TypeScript.
- **[Read Me First](Read_Me_First_167193c.md "Before you start using OpenUI5 productively, please read the important information in the section.
Here you read everything you need to know about supported library combinations, the
supported browsers and platforms, and so on.")**
Expand Down
4 changes: 4 additions & 0 deletions docs/Previous_Versions_6660a59.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ view on: [demo kit nightly build](https://sdk.openui5.org/nightly/#/topic/6660a5

## Previous Versions

- **[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With
this release OpenUI5 is upgraded
from version 1.123 to 1.124.")**
With this release OpenUI5 is upgraded from version 1.123 to 1.124.
- **[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With
this release OpenUI5 is upgraded
from version 1.122 to 1.123.")**
Expand Down
6 changes: 3 additions & 3 deletions docs/Step_26_Mock_Server_Configuration_TypeScript_3e1c64f.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Finally, we call the `start` method on the mock server. From this point, each re

```js
import MockServer from "sap/ui/core/util/MockServer";
import UriParameters from "sap/base/util/UriParameters";
export default {

init: function () {
Expand All @@ -166,12 +166,12 @@ export default {
rootUri: sap.ui.require.toUrl("ui5/walkthrough/V2/Northwind/Northwind.svc/")
});

const uriParameters = new UriParameters(window.location.href);
const urlParams = new URLSearchParams(window.location.search);

// configure mock server with a delay
mockServer.config({
autoRespond: true,
autoRespondAfter: parseInt(uriParameters.get("serverDelay") || "500")
autoRespondAfter: parseInt(urlParams.get("serverDelay") || "500")
});

// simulate
Expand Down
3 changes: 2 additions & 1 deletion docs/Step_6_A_First_OPA_Test_1b47457.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ The journey uses another structuring element of OPA called “page object” tha
```js
sap.ui.define([
'sap/ui/test/opaQunit',
'sap/ui/test/Qunit',
'./pages/Worklist'
], function (opaTest) {
], function (opaTest, QUnit, Worklist) {
"use strict";

QUnit.module("Posts");
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_100_27dec1d.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_101_7733b00.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_102_f038c99.md
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_103_0e98c76.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_104_69e567c.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_105_4d6c00e.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_106_5b497b0.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_107_d4ff916.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_108_66e33f0.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_109_3264bd2.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_110_71a855c.md
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_111_7a67837.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_112_34afc69.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_113_a9553fe.md
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_114_890fce1.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_115_409fde8.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_116_ebd6f34.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,8 @@ Required
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_117_029d3b4.md
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_118_3eecbde.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_119_0b1903a.md
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_120_2359b63.md
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_121_91a4a2f.md
Original file line number Diff line number Diff line change
Expand Up @@ -1337,6 +1337,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_122_5d078da.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.123](What_s_New_in_OpenUI5_1_123_9d00ac7.md "With this release OpenUI5 is upgraded from version 1.122 to 1.123.")

[What's New in OpenUI5 1.121](What_s_New_in_OpenUI5_1_121_91a4a2f.md "With this release OpenUI5 is upgraded from version 1.120 to 1.121.")
Expand Down
2 changes: 2 additions & 0 deletions docs/What_s_New_in_OpenUI5_1_123_9d00ac7.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ Info Only
**Related Information**


[What's New in OpenUI5 1.124](What_s_New_in_OpenUI5_1_124_7f77c3f.md "With this release OpenUI5 is upgraded from version 1.123 to 1.124.")

[What's New in OpenUI5 1.122](What_s_New_in_OpenUI5_1_122_5d078da.md "With this release OpenUI5 is upgraded from version 1.121 to 1.122.")

[What's New in OpenUI5 1.121](What_s_New_in_OpenUI5_1_121_91a4a2f.md "With this release OpenUI5 is upgraded from version 1.120 to 1.121.")
Expand Down
Loading

0 comments on commit 5ba92e6

Please sign in to comment.