From d2e65676ec52553e239ea7ee8ef4d36d5c564805 Mon Sep 17 00:00:00 2001 From: OpenUI5 Bot Date: Fri, 22 Nov 2024 08:17:24 +0000 Subject: [PATCH] OpenUI5 Documentation Update 22.11.2024 --- docs/0index.md | 1 + ...Pages_Which_One_Should_I_Choose_8a860c0.md | 4 +- ...Unit_Test_with_QUnit_TypeScript_750c8c1.md | 69 +- docs/Step_27_Unit_Test_with_QUnit_e1ce1de.md | 47 +- ...ep_28_Integration_Test_with_OPA_9bf4dce.md | 28 +- ...ration_Test_with_OPA_TypeScript_412f0b6.md | 17 +- docs/What_s_New_in_OpenUI5_1_129_d22b8af.md | 86 --- docs/What_s_New_in_OpenUI5_1_131_7d24d94.md | 673 ++++++++++++++++++ docs/What_s_New_in_OpenUI5_99ac68a.md | 4 + docs/index.json | 3 + docs/index.md | 1 + docs/sidebar.md | 1 + 12 files changed, 769 insertions(+), 165 deletions(-) create mode 100644 docs/What_s_New_in_OpenUI5_1_131_7d24d94.md diff --git a/docs/0index.md b/docs/0index.md index aa558ab3..3ec23b9b 100644 --- a/docs/0index.md +++ b/docs/0index.md @@ -6,6 +6,7 @@ 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.131](What_s_New_in_OpenUI5_1_131_7d24d94.md) - [What's New in OpenUI5 1.130](What_s_New_in_OpenUI5_1_130_85609d4.md) - [Previous Versions](Previous_Versions_6660a59.md) - [What's New in OpenUI5 1.129](What_s_New_in_OpenUI5_1_129_d22b8af.md) diff --git a/docs/Pages_Which_One_Should_I_Choose_8a860c0.md b/docs/Pages_Which_One_Should_I_Choose_8a860c0.md index 48a536e6..5300ea20 100644 --- a/docs/Pages_Which_One_Should_I_Choose_8a860c0.md +++ b/docs/Pages_Which_One_Should_I_Choose_8a860c0.md @@ -18,7 +18,7 @@ OpenUI5 applications are used in different environments: They can either be embe ### Standalone App -A **standalone OpenUI5 application** could use an `sap.m.Page` control as the root control of its views. The `Page` control provides a visually distinguished header bar with space for an application \(or page\) title and has a built-in *Back* button allowing the user to navigate back to the previous page. You can enable the *Back* button by setting the `Page`'s `showNavButton` property to `true`. +A **standalone OpenUI5 application** could use `sap.m.Page` controls as root controls of its views. The `Page` control provides a visually distinguished header bar with space for an application \(or page\) title and has a built-in *Back* button allowing the user to navigate back to the previous page. You can enable the *Back* button by setting the `Page`'s `showNavButton` property to `true`. *** @@ -26,7 +26,7 @@ A **standalone OpenUI5 application** could use an `sap.m.Page` control as the ro ### Embedded App -On the other hand, an **embedding shell** \(like SAP Build Work Zone or the SAP Fiori launchpad\) might already come with its own header containing a *Back* button and space for a title. Using an `sap.m.Page` control would then lead to a duplicate header and possibly even duplicate*Back* buttons. +An **embedding shell** \(like SAP Build Work Zone or the SAP Fiori launchpad\) might already come with its own header containing a *Back* button and space for a title. Using an `sap.m.Page` control would then lead to a duplicate header and possibly even a duplicate *Back* button. The `sap.f.DynamicPage` control could be your preferred alternative in such a scenario as it comes without a header bar and *Back* button but still offers the option to configure a title if needed, as well as many other features on top of a plain `sap.m.Page`. diff --git a/docs/Step_27_Unit_Test_with_QUnit_TypeScript_750c8c1.md b/docs/Step_27_Unit_Test_with_QUnit_TypeScript_750c8c1.md index 7e7a9bb2..57fb64cd 100644 --- a/docs/Step_27_Unit_Test_with_QUnit_TypeScript_750c8c1.md +++ b/docs/Step_27_Unit_Test_with_QUnit_TypeScript_750c8c1.md @@ -121,15 +121,15 @@ The page will be referenced in the test suite that we will create next. -
-
+
+
``` @@ -154,27 +154,28 @@ For more information, see [Concept and Basic Setup](Concept_and_Basic_Setup_22f5 > There are currently no types available for the test suite configuration. Please refer to [Configuration Options](Configuration_Options_738ed02.md) to see all options. ```ts + export default { - name: "QUnit test suite for UI5 TypeScript Walkthrough", - defaults: { - page: "ui5://test-resources/ui5/walkthrough/Test.qunit.html?testsuite={suite}&test={name}", - qunit: { - version: 2 - }, - ui5: { - theme: "sap_horizon" - }, - loader: { - paths: { - "ui5/walkthrough": "../" - } - } - }, - tests: { - "unit/unitTests": { - title: "UI5 TypeScript Walkthrough - Unit Tests" - } - } + name: "QUnit test suite for UI5 TypeScript Walkthrough", + defaults: { + page: "ui5://test-resources/ui5/walkthrough/Test.qunit.html?testsuite={suite}&test={name}", + qunit: { + version: 2 + }, + ui5: { + theme: "sap_horizon" + }, + loader: { + paths: { + "ui5/walkthrough": "../" + } + } + }, + tests: { + "unit/unitTests": { + title: "UI5 TypeScript Walkthrough - Unit Tests" + } + } }; ``` @@ -190,13 +191,13 @@ We also create a corresponding `testsuite.qunit.html` in the same folder. This i - - @@ -212,7 +213,7 @@ If we now open the `webapp/test/testsuite.qunit.html` file in the browser and se - All unit tests are placed in the webapp/test/unit folder of the app. -- The default naming convention for the test suite is `testsuite.qunit.html` and `testsuite.qunit.ts`. When adding additional test suites, the naming must follow the pattern`testsuite..qunit.html`/`testsuite..qunit.ts`. +- The default naming convention for the test suite is `testsuite.qunit.html` and `testsuite.qunit.ts`. When adding additional test suites, the naming must follow the pattern `testsuite..qunit.html`/`testsuite..qunit.ts`. - All test files referenced in the test suite end with `.qunit.ts`. diff --git a/docs/Step_27_Unit_Test_with_QUnit_e1ce1de.md b/docs/Step_27_Unit_Test_with_QUnit_e1ce1de.md index b5f55d17..14a8e6f5 100644 --- a/docs/Step_27_Unit_Test_with_QUnit_e1ce1de.md +++ b/docs/Step_27_Unit_Test_with_QUnit_e1ce1de.md @@ -101,8 +101,9 @@ We create a new `unitTests.qunit.js` file under `webapp/test/unit/`. This module Inside the `unitTests.qunit.js` file we import the unit test for the custom formatter. This ensures that any tests related to the custom formatter functionality will be included when running our unit tests. ```js + sap.ui.define([ - "./model/formatter" + "./model/formatter" ]); ``` @@ -150,29 +151,31 @@ Additionally, the `sap_horizon` theme is configured in the `ui5` section, where The test suite serves as the entry point for all tests within our project such as the previously created `unit/unitTests` \(The `.qunit.js` extension is omitted and will be added automatically during runtime\). The previously created generic `Test.qunit.html` file is referenced as the test `page` and configured with query parameters so that individual tests can be run. The placeholders `{suite}` and `{name}` are replaced with the suite and test names respectively. For more information, see [Concept and Basic Setup](Concept_and_Basic_Setup_22f50c0.md). ```js + + sap.ui.define(() => { - "use strict"; - return { - name: "QUnit test suite for UI5 Walkthrough", - defaults: { - page: "ui5://test-resources/ui5/walkthrough/Test.qunit.html?testsuite={suite}&test={name}", - qunit: { - version: 2 - }, - ui5: { - theme: "sap_horizon" - }, - loader: { - paths: { + "use strict"; + return { + name: "QUnit test suite for UI5 Walkthrough", + defaults: { + page: "ui5://test-resources/ui5/walkthrough/Test.qunit.html?testsuite={suite}&test={name}", + qunit: { + version: 2 + }, + ui5: { + theme: "sap_horizon" + }, + loader: { + paths: { "ui5/walkthrough": "../" - } - } - }, - tests: { - "unit/unitTests": { - title: "UI5 Walkthrough - Unit Tests" - } - } + } + } + }, + tests: { + "unit/unitTests": { + title: "UI5 Walkthrough - Unit Tests" + } + } }; }); ``` diff --git a/docs/Step_28_Integration_Test_with_OPA_9bf4dce.md b/docs/Step_28_Integration_Test_with_OPA_9bf4dce.md index 495e2b0c..29694937 100644 --- a/docs/Step_28_Integration_Test_with_OPA_9bf4dce.md +++ b/docs/Step_28_Integration_Test_with_OPA_9bf4dce.md @@ -155,8 +155,9 @@ We create a new `opaTests.qunit.js` file under `webapp/test/integration/`. This module imports our `NavigationJourney` and is the entrypoint for all integration tests in the project. ```js + sap.ui.define([ - "./NavigationJourney" + "./NavigationJourney" ]); ``` @@ -169,19 +170,20 @@ sap.ui.define([ Finally we reference the new `integration/opaTests.qunit.js` in the `testsuite.qunit.js` file. The `.qunit.js` extension is omitted and will be added automatically during runtime. ```js + sap.ui.define(() => { - "use strict"; - return { - // ... - tests: { - "unit/unitTests": { - title: "UI5 Walkthrough - Unit Tests" - }, - "integration/opaTests": { - title: "UI5 Walkthrough - Integration Tests" - } - } - }; + "use strict"; + return { + // ... + tests: { + "unit/unitTests": { + title: "UI5 Walkthrough - Unit Tests" + }, + "integration/opaTests": { + title: "UI5 Walkthrough - Integration Tests" + } + } + }; }); ``` diff --git a/docs/Step_28_Integration_Test_with_OPA_TypeScript_412f0b6.md b/docs/Step_28_Integration_Test_with_OPA_TypeScript_412f0b6.md index 8b5004ee..18d695cc 100644 --- a/docs/Step_28_Integration_Test_with_OPA_TypeScript_412f0b6.md +++ b/docs/Step_28_Integration_Test_with_OPA_TypeScript_412f0b6.md @@ -164,16 +164,17 @@ import "./NavigationJourney"; Finally we reference the new `integration/opaTests.qunit.ts` in the `testsuite.qunit.ts` file. The `.qunit.ts` extension is omitted and will be added automatically during runtime. ```ts + export default { // ... - tests: { - "unit/unitTests": { - title: "UI5 TypeScript Walkthrough - Unit Tests" - }, - "integration/opaTests": { - title: "UI5 TypeScript Walkthrough - Integration Tests" - } - } + tests: { + "unit/unitTests": { + title: "UI5 TypeScript Walkthrough - Unit Tests" + }, + "integration/opaTests": { + title: "UI5 TypeScript Walkthrough - Integration Tests" + } + } }; ``` diff --git a/docs/What_s_New_in_OpenUI5_1_129_d22b8af.md b/docs/What_s_New_in_OpenUI5_1_129_d22b8af.md index 11533cdd..24261dc8 100644 --- a/docs/What_s_New_in_OpenUI5_1_129_d22b8af.md +++ b/docs/What_s_New_in_OpenUI5_1_129_d22b8af.md @@ -8,8 +8,6 @@ view on: [demo kit nightly build](https://sdk.openui5.org/nightly/#/topic/d22b8af563784d8cbcff8afd3955734e) | [demo kit latest release](https://sdk.openui5.org/topic/d22b8af563784d8cbcff8afd3955734e) - - ## What's New in OpenUI5 1.129 With this release OpenUI5 is upgraded from version 1.128 to 1.129. @@ -73,90 +71,6 @@ Feature -**Harmonized Context Menu in Key User Adaptation** - - - - -**Harmonized Context Menu in Key User Adaptation** - -The context menu is now consistent when you select elements. It no longer depends on how you select an element, such as using the left or right mouse button. The familiar right-click context menu now also appears when you left-click an element. - -Changed•Feature•Info Only•1.129 - - - - -Info Only - - - - -2024-10-03 - - - - - - -1.129 - - - - -New - - - - -Feature - - - - -**What's New Dialog in Key User Adaptation** - - - - -**What's New Dialog in Key User Adaptation** - -The *What's New* dialog keeps you informed about the latest updates, features, and improvements in key user adaptation. - -After an upgrade, the dialog automatically shows the new features introduced with the new version. If you're interested in features from previous versions, you can find an overview in the \(More Actions\) menu in the toolbar. - -New•Feature•Info Only•1.129 - - - - -Info Only - - - - -2024-10-03 - - - - - - -1.129 - - - - -Changed - - - - -Feature - - - - **OpenUI5 OData V4 Model** diff --git a/docs/What_s_New_in_OpenUI5_1_131_7d24d94.md b/docs/What_s_New_in_OpenUI5_1_131_7d24d94.md new file mode 100644 index 00000000..f45993c9 --- /dev/null +++ b/docs/What_s_New_in_OpenUI5_1_131_7d24d94.md @@ -0,0 +1,673 @@ + + +| loio | +| -----| +| 7d24d94d6bbe4a988265994a4a41eff6 | + +
+ +view on: [demo kit nightly build](https://sdk.openui5.org/nightly/#/topic/7d24d94d6bbe4a988265994a4a41eff6) | [demo kit latest release](https://sdk.openui5.org/topic/7d24d94d6bbe4a988265994a4a41eff6)
+ + + +## What's New in OpenUI5 1.131 + +With this release OpenUI5 is upgraded from version 1.130 to 1.131. + +> ### Note: +> Content marked as **[Preview](https://help.sap.com/docs/whats-new-disclaimer)** is provided as a courtesy, without a warranty, and may be subject to change. For more information, see the [preview disclaimer](https://help.sap.com/docs/whats-new-disclaimer). + +**** + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +Version + + + +Type + + + +Category + + + +Title + + + +Description + + + +Action + + + +Available as of + +
+ +Upcoming + + + +Deleted + + + +Announcement + + + +**End of Cloud Provisioning for OpenUI5 Versions \(Q4/2024\)** + + + +**End of Cloud Provisioning for OpenUI5 Versions \(Q4/2024\)** + +The following OpenUI5 versions will be removed from the OpenUI5 Content Delivery Network \(CDN\) after the end of Q4/2024. + +**Minor Versions Reaching Their End of Cloud Provisioning** + +The following versions including all patches will be removed entirely: + +- 1.114 +- 1.117 +- 1.118 +- 1.119 + +**Action**: Upgrade to a version that is still in maintenance. + +**Patch Versions Reaching Their End of Cloud Provisioning** + +The following patches will be removed: + +- Long-term maintenance versions: + + - 1.71.59 to 1.71.60 + - 1.84.39 to 1.84.40 + - 1.96.23 to 1.96.24 + - 1.108.20 to 1.108.22 + - 1.120.0 to 1.120.1 + + **Action**: Upgrade to the latest available patch for the respective OpenUI5 version. + + +For more information, see [Version Overview](https://sdk.openui5.org/versionoverview.html). + +**[Preview](https://help.sap.com/docs/whats-new-disclaimer)**•Deleted•Announcement•Info Only•Upcoming + + + +Info Only + + + +9999-01-01 + +
+ +1.131 + + + +Deprecated + + + +Feature + + + +**Deprecations** + + + +**Deprecations** + +There are currently no major deprecations. For a complete list of all deprecations, see [Deprecated APIs](https://sdk.openui5.org/api/deprecated). + +Deprecated•Feature•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.ui.mdc.Table`** + + + +**`sap.ui.mdc.Table`** + +- To collapse/expand either an entire node or an entire tree in tables with `TreeTableType`, we have introduced a `MenuButton`. For each functionality, the related function must be implemented in the configuration object of `TableDelegate`. For OData V4, we have already implemented this as a default functionality. For more information, see the [API Reference](https://sdk.openui5.org/api/module:sap/ui/mdc/TableDelegate%23methods/sap/ui/mdc/TableDelegate.fetchExpandAndCollapseConfiguration). + +- We have enabled sticky group headers by default for tables with `ResponsiveTableType`. Group headers now remain in a fixed position at the top of the page during vertical scrolling. For more information, see the [Sample](https://sdk.openui5.org/entity/sap.ui.mdc.Table/sample/sap.ui.mdc.demokit.sample.table.TableJson). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.List`, `sap.m.Table`, `sap.m.Tree`, `sap.ui.mdc.Table,` `sap.ui.table.AnalyticalTable`, `sap.ui.table.Table`, `sap.ui.table.TreeTable` ** + + + +**`sap.m.List`, `sap.m.Table`, `sap.m.Tree`, `sap.ui.mdc.Table,` `sap.ui.table.AnalyticalTable`, `sap.ui.table.Table`, `sap.ui.table.TreeTable` ** + +We now also support the `Indication09` and `Indication10` color values for row highlights. Due to the accessibility contrast requirements, only values of `Indication01` to `Indication10` are supported. For more information, see the [API Reference](https://sdk.openui5.org/api/sap.ui.table.RowSettings%23methods/getHighlight). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Feature + + + +**OpenUI5 Formatter** + + + +**OpenUI5 Formatter** + +When using the currency instance of `sap.ui.core.format.NumberFormat` with the `style` format option set to `short` or `long`, the number of decimals provided with custom currencies or defined in the Unicode Common Locale Data Repository is not applied for formatting. + +Changed•Feature•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Feature + + + +**`sap.ui.model.sorter`** + + + +**`sap.ui.model.sorter`** + +We have provided getters for the binding path and the sorting order parameter of `sap.ui.model.sorter`. + +Changed•Feature•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Feature + + + +**OpenUI5 OData V4 Model** + + + +**OpenUI5 OData V4 Model** + +The new version of the OpenUI5 OData V4 model introduces the following features: + +- You can now modify the annotations of a separate value help service using local annotation files. For more information, see [Value Lists](Value_Lists_ab267a6.md). + +- We have provided the experimental `separateReceived` event at the `sap.ui.model.odata.v4.ODataListBinding` for columns loaded separately using the experimental `$$separate` binding parameter introduced with OpenUI5 1.129. + + +Changed•Feature•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Feature + + + +**Improved Focus Handling in OpenUI5** + + + +**Improved Focus Handling in OpenUI5** + +Whenever a UI5 element loses focus due to becoming disabled, invisible, or destroyed, the focus now automatically shifts to the next logical element, ensuring improved navigation and accessibility. Control developers can customize this behavior by overriding the default `onfocusfail` handler to meet specific control requirements. + +For more information, see the [API Reference](https://sdk.openui5.org/api/sap.ui.core.Element%23methods/onfocusfail). + +Changed•Feature•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.Combobox`** + + + +**`sap.m.Combobox`** + +The down-arrow navigation has been updated to align with the specifications and the ARIA standard. Now, if there is a selection made through the type-ahead \(autocomplete\) functionality, pressing the [Down Arrow\] key moves the focus to the next available item in the dropdown menu. + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.IconTabBar`** + + + +**`sap.m.IconTabBar`** + +We have made some visual improvements when the `headerBackgroundDesign` is set to `Transparent`. Now, the control won't show any unnecessary borders or shadows, and looks better when used in content with a transparent design. For more information, see the [API Reference](https://sdk.openui5.org/api/sap.m.IconTabBar). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.MaskInput`** + + + +**`sap.m.MaskInput`** + +We have introduced a new `submit` event that fires when users press [Enter\] and submit a value. The event is fired only when the control is `enabled` and `editable`, regardless of whether there's a change in the submitted value. For more information, see the [API Reference](https://sdk.openui5.org/api/sap.m.MaskInput). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.Menu`** + + + +**`sap.m.Menu`** + +We have introduced a new `beforeClose` event, fired when the menu is closed. For more information, see the [API Reference](https://sdk.openui5.org/api/sap.m.Menu). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.m.Popover`** + + + +**`sap.m.Popover`** + +Users can now resize the control in all directions, depending on the position of the opener. For more information, see the [Sample](https://sdk.openui5.org/entity/sap.m.Popover/sample/sap.m.sample.Popover). + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ +1.131 + + + +Changed + + + +Control + + + +**`sap.ui.integration.widgets.Card`** + + + +**`sap.ui.integration.widgets.Card`** + +You can now set actions in the card header to be placed as nested items in a menu. This feature allows you to group multiple actions. For more information, see the [Custom Actions](https://sdk.openui5.org/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/index.html#/explore/extension/customActions) and the [Host Actions](https://sdk.openui5.org/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/index.html#/explore/hostActions) samples. + +Changed•Control•Info Only•1.131 + + + +Info Only + + + +2024-11-28 + +
+ diff --git a/docs/What_s_New_in_OpenUI5_99ac68a.md b/docs/What_s_New_in_OpenUI5_99ac68a.md index 0ed826a8..9c60044b 100644 --- a/docs/What_s_New_in_OpenUI5_99ac68a.md +++ b/docs/What_s_New_in_OpenUI5_99ac68a.md @@ -30,6 +30,10 @@ You are familiar with OpenUI5 app development, but do you want to learn how to d +- **[What's New in OpenUI5 1.131](What_s_New_in_OpenUI5_1_131_7d24d94.md "With + this release OpenUI5 is upgraded + from version 1.130 to 1.131.")** +With this release OpenUI5 is upgraded from version 1.130 to 1.131. - **[What's New in OpenUI5 1.130](What_s_New_in_OpenUI5_1_130_85609d4.md "With this release OpenUI5 is upgraded from version 1.129 to 1.130.")** diff --git a/docs/index.json b/docs/index.json index 2d94c732..7a58dc6f 100644 --- a/docs/index.json +++ b/docs/index.json @@ -5,6 +5,9 @@ "What's New in OpenUI5": { "link": "What_s_New_in_OpenUI5_99ac68a.md", "items": { + "What's New in OpenUI5 1.131": { + "link": "What_s_New_in_OpenUI5_1_131_7d24d94.md" + }, "What's New in OpenUI5 1.130": { "link": "What_s_New_in_OpenUI5_1_130_85609d4.md" }, diff --git a/docs/index.md b/docs/index.md index aa558ab3..3ec23b9b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,6 +6,7 @@ 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.131](What_s_New_in_OpenUI5_1_131_7d24d94.md) - [What's New in OpenUI5 1.130](What_s_New_in_OpenUI5_1_130_85609d4.md) - [Previous Versions](Previous_Versions_6660a59.md) - [What's New in OpenUI5 1.129](What_s_New_in_OpenUI5_1_129_d22b8af.md) diff --git a/docs/sidebar.md b/docs/sidebar.md index edc8a74c..849a89f2 100644 --- a/docs/sidebar.md +++ b/docs/sidebar.md @@ -1,5 +1,6 @@ - [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.131](What_s_New_in_OpenUI5_1_131_7d24d94.md) - [What's New in OpenUI5 1.130](What_s_New_in_OpenUI5_1_130_85609d4.md) - [Previous Versions](Previous_Versions_6660a59.md) - [What's New in OpenUI5 1.129](What_s_New_in_OpenUI5_1_129_d22b8af.md)