@@ -9,7 +9,7 @@ There are several configuration settings that affect all UI5 Web Components glob
9
9
------------ | ----------------------------------------------- | ------------- | -------------------------------------------------------------
10
10
[ theme] ( #theme ) | sap_fiori_3, sap_fiori_3_dark, sap_belize, sap_belize_hcb, sap_belize_hcw | sap_fiori_3 | Visual theme
11
11
language | en, de, es, etc... | en | Language to be used for translatable texts
12
- [ RTL] ( #rtl ) | true, false | false | When true, sets global text direction to right-to-left
12
+ [ RTL] ( #rtl ) ( ** deprecated since 1.0.0-rc.8 ** ) | true, false | false | When true, sets global text direction to right-to-left
13
13
[ animationMode] ( #animationMode ) | full, basic, minimal, none | full | Defines different animation scenarios or levels
14
14
calendarType | Gregorian, Islamic, Buddhist, Japanese, Persian | Gregorian | Default calendar type for date-related web components
15
15
[ noConflict] ( #noConflict ) | true, false | false | When set to true, all events will be fired with a "ui5-" prefix only
@@ -30,10 +30,11 @@ The `theme` setting values above are the technical names of our themes.
30
30
31
31
<a name =" rtl " ></a >
32
32
### RTL
33
-
34
- When the ` rtl ` setting is set to ` true ` , UI5 Web Components will adjust their styling accordingly.
35
- However, you should also set the HTML attribute ` dir ` to ` rtl ` on the ` body ` or ` html ` , or any other relevant region of your application
36
- so that the rest of your application is also affected.
33
+ ** Deprecated as of 1.0.0-rc.8**
34
+
35
+ In order to have RTL mode, just set the HTML attribute ` dir ` to ` rtl ` on the ` body ` , ` html ` or any other relevant region of your application.
36
+
37
+ This configuration setting should not be used by applications. It is only internally used for specific integration scenarios.
37
38
38
39
<a name =" animationMode " ></a >
39
40
### Animation Mode
@@ -95,7 +96,6 @@ In order to provide configuration settings, include the following ```<script>```
95
96
``` html
96
97
<script data-ui5-config type =" application/json" >
97
98
{
98
- " rtl" : true ,
99
99
" language" : " ja" ,
100
100
" calendarType" : " Japanese" ,
101
101
" formatSettings" : {
@@ -121,7 +121,6 @@ To do so, please import the desired functionality from the respective `"@ui5/web
121
121
``` js
122
122
import { getTheme , setTheme } from " @ui5/webcomponents-base/dist/config/Theme.js" ;
123
123
import { getNoConflict , setNoConflict } from " @ui5/webcomponents-base/dist/config/NoConflict.js" ;
124
- import { getRTL } from " @ui5/webcomponents-base/dist/config/RTL.js" ;
125
124
import { getAnimationMode } from " @ui5/webcomponents-base/dist/config/AnimationMode.js" ;
126
125
import { getLanguage } from " @ui5/webcomponents-base/dist/config/Language.js" ;
127
126
import { getCalendarType } from " @ui5/webcomponents-base/dist/config/CalendarType.js" ;
0 commit comments