@@ -7,7 +7,7 @@ There are several configuration settings that affect all UI5 Web Components glob
7
7
8
8
Setting | Values | Default value | Description
9
9
------------ | ----------------------------------------------- | ------------- | -------------------------------------------------------------
10
- [ theme] ( #theme ) | sap_fiori_3, sap_fiori_3_dark, sap_belize, sap_belize_hcb, sap_belize_hcw | sap_fiori_3 | Visual theme
10
+ [ theme] ( #theme ) | sap_fiori_3, sap_fiori_3_dark, sap_fiori_3_hcb, sap_fiori_3_hcw, 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
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
@@ -24,6 +24,8 @@ UI5 Web Components contain different content densities for certain controls that
24
24
The ` theme ` setting values above are the technical names of our themes.
25
25
- The ` sap_fiori_3 ` is known as ` Quartz Light ` and it`s the default theme.
26
26
- The ` sap_fiori_3_dark ` is known as ` Quartz Dark ` .
27
+ - The ` sap_fiori_3_hcb ` is known as ` Quartz High Contrast Black ` .
28
+ - The ` sap_fiori_3_hcw ` is known as ` Quartz High Contrast White ` .
27
29
- The ` sap_belize ` is known as ` Belize ` .
28
30
- The ` sap_belize_hcb ` is known as ` High Contrast Black ` .
29
31
- The ` sap_belize_hcw ` is known as ` High Contrast White ` .
@@ -66,19 +68,19 @@ For example, when the `ui5-switch` is toggled, it fires a `change` event, but al
66
68
67
69
The ` noConflict ` configuration setting allows certain control over this behavior:
68
70
- When ` false ` (default value) all custom events are fired with and without the ` ui5- ` prefix.
69
- - When ` true ` all custom events are fired with the ` ui5- ` prefix ** only** .
71
+ - When ` true ` all custom events are fired with the ` ui5- ` prefix ** only** .
70
72
This is handy for example, if the name of an event happens to collide with the name of an event provided by a third-party library.
71
73
- When an object is supplied, just the specified events will be fired with the ` ui5- ` prefix ** only** .
72
- All other events will be fired normally - once with the prefix, and once without it.
74
+ All other events will be fired normally - once with the prefix, and once without it.
73
75
The format of this object is as follows:
74
76
``` json
75
77
{
76
78
"events" : [" selection-change" , " header-click" ]
77
79
}
78
80
```
79
81
* Please note that other keys may be added to this object in the future for the purpose of name conflict resolution.*
80
-
81
- In the above example, only the ` selection-change ` and ` header-click ` events will be fired with a prefix.
82
+
83
+ In the above example, only the ` selection-change ` and ` header-click ` events will be fired with a prefix.
82
84
You can still use them by listening to ` ui5-selection-change ` and ` ui5-header-click ` , but the names ` selection-change ` and ` header-click ` will be
83
85
free for use by other UI components and libraries without name collision.
84
86
0 commit comments