optimized-react-component-library-xyz123 2.5.7 → 2.5.8
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.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1670,7 +1670,8 @@ var createGlobalLanguageSlice = (initialConfig, options) => {
|
|
|
1670
1670
|
languageSupportLoaded: true,
|
|
1671
1671
|
backButton: initialLang.backButton,
|
|
1672
1672
|
forwardButton: initialLang.forwardButton,
|
|
1673
|
-
sendButton: initialLang.sendButton
|
|
1673
|
+
sendButton: initialLang.sendButton,
|
|
1674
|
+
restartButton: initialLang.restartButton
|
|
1674
1675
|
};
|
|
1675
1676
|
const slice = createSlice({
|
|
1676
1677
|
name,
|
|
@@ -1685,6 +1686,7 @@ var createGlobalLanguageSlice = (initialConfig, options) => {
|
|
|
1685
1686
|
state.backButton = lang.backButton;
|
|
1686
1687
|
state.forwardButton = lang.forwardButton;
|
|
1687
1688
|
state.sendButton = lang.sendButton;
|
|
1689
|
+
state.restartButton = lang.restartButton;
|
|
1688
1690
|
},
|
|
1689
1691
|
setGlobalLangauage: (state, action) => {
|
|
1690
1692
|
state.languageSupport = action.payload.languageSupport;
|
|
@@ -1693,6 +1695,7 @@ var createGlobalLanguageSlice = (initialConfig, options) => {
|
|
|
1693
1695
|
state.backButton = lang.backButton;
|
|
1694
1696
|
state.forwardButton = lang.forwardButton;
|
|
1695
1697
|
state.sendButton = lang.sendButton;
|
|
1698
|
+
state.restartButton = lang.restartButton;
|
|
1696
1699
|
state.languageSupportLoaded = true;
|
|
1697
1700
|
}
|
|
1698
1701
|
}
|
|
@@ -1715,7 +1718,8 @@ var makeglobalLanguageSelectors = (selectSlice) => {
|
|
|
1715
1718
|
...applicationContent,
|
|
1716
1719
|
backButton: match.backButton,
|
|
1717
1720
|
forwardButton: match.forwardButton,
|
|
1718
|
-
sendButton: match.sendButton
|
|
1721
|
+
sendButton: match.sendButton,
|
|
1722
|
+
restartButton: match.restartButton
|
|
1719
1723
|
};
|
|
1720
1724
|
}
|
|
1721
1725
|
);
|