@rango-dev/widget-embedded 0.14.1-next.17 → 0.14.1-next.18
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/store/settings.d.ts +1 -1
- package/package.json +2 -2
- package/src/constants/languages.ts +1 -1
package/dist/store/settings.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export declare const useSettingsStore: {
|
|
|
57
57
|
infiniteApprove: () => boolean;
|
|
58
58
|
disabledLiquiditySources: () => string[];
|
|
59
59
|
theme: () => ThemeMode;
|
|
60
|
-
language: () => "en" | "es" | "
|
|
60
|
+
language: () => "en" | "es" | "ja" | "fr";
|
|
61
61
|
affiliateRef: () => string | null;
|
|
62
62
|
affiliatePercent: () => number | null;
|
|
63
63
|
affiliateWallets: () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.14.1-next.
|
|
3
|
+
"version": "0.14.1-next.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@rango-dev/queue-manager-core": "^0.17.0",
|
|
24
24
|
"@rango-dev/queue-manager-rango-preset": "^0.17.1-next.2",
|
|
25
25
|
"@rango-dev/queue-manager-react": "^0.17.0",
|
|
26
|
-
"@rango-dev/ui": "^0.17.1-next.
|
|
26
|
+
"@rango-dev/ui": "^0.17.1-next.11",
|
|
27
27
|
"@rango-dev/wallets-react": "^0.3.1-next.1",
|
|
28
28
|
"@rango-dev/wallets-shared": "^0.17.1-next.0",
|
|
29
29
|
"bignumber.js": "^9.1.1",
|
|
@@ -13,7 +13,7 @@ export const LANGUAGES: LanguageItem[] = [
|
|
|
13
13
|
{ title: 'English', label: 'English', local: 'en', SVGFlag: English },
|
|
14
14
|
{ title: 'Spanish', label: 'Español', local: 'es', SVGFlag: Spanish },
|
|
15
15
|
{ title: 'French', label: 'Français', local: 'fr', SVGFlag: French },
|
|
16
|
-
{ title: 'Japanese', label: '日本語', local: '
|
|
16
|
+
{ title: 'Japanese', label: '日本語', local: 'ja', SVGFlag: Japanese },
|
|
17
17
|
];
|
|
18
18
|
|
|
19
19
|
export const DEFAULT_LANGUAGE = 'en';
|