@@ -11,6 +11,7 @@ theme | sap_fiori_3, sap_belize, sap_belize_hcb | sap_fiori_3 |
11
11
language | en, de, es, etc... | en | Language to be used for translatable texts
12
12
[ RTL] ( #rtl ) | true, false | false | When true, sets global text direction to right-to-left
13
13
compactSize | true, false | false | When set, enforces compact density (smaller margins/paddings)
14
+ [ animationMode] ( #animationMode ) | full, basic, minimal, none | full | Defines different animation scenarios or levels
14
15
calendarType | Gregorian, Islamic, Buddhist, Japanese, Persian | Gregorian | Default calendar type for date-related web components
15
16
[ noConflict] ( #noConflict ) | true, false | Object | false | When set to true, all events will be fired with a "ui5-" prefix only
16
17
[ formatSettings] ( #formatSettings ) | See the [ Format settings] ( #formatSettings ) section below | Empty object | Allows to override locale-specific configuration
@@ -22,6 +23,17 @@ When the `rtl` setting is set to `true`, UI5 Web Components will adjust their st
22
23
However, you should also set the HTML attribute ` dir ` to ` rtl ` on the ` body ` or ` html ` or any other relevant region of your application
23
24
so that the rest of your application is also affected.
24
25
26
+ <a name =" animationMode " ></a >
27
+ ###Animation Mode
28
+
29
+ Animation modes allow to specify different animation scenarios or levels.
30
+ - When ` full ` all animations run unrestricted.
31
+ - When ` basic ` more light-weight set of animations would run.
32
+ - When ` minimal ` animations of fundamental functionality are included.
33
+ - When ` none ` all animations are completely suspended.
34
+
35
+ * Please note that each component determines which animations would run for a specific mode.*
36
+
25
37
<a name =" noConflict " ></a >
26
38
### No conflict
27
39
@@ -100,6 +112,7 @@ import { getTheme, setTheme } from "@ui5/webcomponents-base/dist/config/Theme.js
100
112
import { getNoConflict , setNoConflict } from " @ui5/webcomponents-base/dist/config/NoConflict.js" ;
101
113
import { getCompactSize } from " @ui5/webcomponents-base/dist/config/CompactSize.js" ;
102
114
import { getRTL } from " @ui5/webcomponents-base/dist/config/RTL.js" ;
115
+ import { getCompactSize } from " @ui5/webcomponents-base/dist/config/AnimationMode.js" ;
103
116
import { getLanguage } from " @ui5/webcomponents-base/dist/config/Language.js" ;
104
117
import { getCalendarType } from " @ui5/webcomponents-base/dist/config/CalendarType.js" ;
105
118
import { getFirstDayOfWeek } from " @ui5/webcomponents-base/dist/config/FormatSettings.js" ;
0 commit comments