mario-core 2.9.316-lang → 2.9.317-lang
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48064,7 +48064,7 @@ var initialState = {
|
|
|
48064
48064
|
isLoginGoogle: false,
|
|
48065
48065
|
inforUserGoogle: null,
|
|
48066
48066
|
language: DEFAULT_LANGUAGE_CODE,
|
|
48067
|
-
|
|
48067
|
+
layoutRTL: "ltr",
|
|
48068
48068
|
amplitude: {
|
|
48069
48069
|
user_id: "",
|
|
48070
48070
|
status: "",
|
|
@@ -48119,7 +48119,7 @@ var commonReducer = toolkit.createReducer(initialState, function (builder) {
|
|
|
48119
48119
|
}).addCase(setLanguage, function (state, action) {
|
|
48120
48120
|
state.language = action.payload;
|
|
48121
48121
|
}).addCase(setRTLLanguage, function (state, action) {
|
|
48122
|
-
state.
|
|
48122
|
+
state.layoutRTL = action.payload;
|
|
48123
48123
|
}).addCase(showFontSize, function (state, action) {
|
|
48124
48124
|
state.defaultFontSize = action.payload;
|
|
48125
48125
|
}).addCase(setSandboxMode, function (state, action) {
|