You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Currently we don't check if the `lang` is registered in the backoffice. We should do that. We can do that by checking if the `lang` is in the `languages` array of the `language` resource and potentially make sure that UmbLocalizationRegistry only loads the localizations and some other mechanism reloads to another language (currently it does both)
5
-
6
4
/**
7
5
* The base class for all Umbraco LitElement elements.
8
6
*
@@ -19,7 +17,7 @@ export class UmbLitElement extends UmbElementMixin(LitElement) {
19
17
* @example 'ltr'
20
18
* @example 'rtl'
21
19
*/
22
-
@property()dir: 'rtl'|'ltr'|''='';
20
+
@property()overridedir: 'rtl'|'ltr'|''='';
23
21
24
22
/**
25
23
* The language of the element.
@@ -29,5 +27,5 @@ export class UmbLitElement extends UmbElementMixin(LitElement) {
0 commit comments