@bluxcc/react 0.1.19 → 0.1.20
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/assets/logos.d.ts +1 -0
- package/dist/containers/Pages/SelectAsset/index.d.ts +1 -1
- package/dist/containers/Pages/Send/SendForm.d.ts +3 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/wallets/configs/hotConfig.d.ts +2 -0
- package/package.json +10 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -11,7 +11,8 @@ export declare enum SupportedWallets {
|
|
|
11
11
|
Freighter = "Freighter",
|
|
12
12
|
Xbull = "xBull",
|
|
13
13
|
Lobstr = "LOBSTR",
|
|
14
|
-
Hana = "Hana"
|
|
14
|
+
Hana = "Hana",
|
|
15
|
+
Hot = "Hot"
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
17
18
|
* Enum defining the various Stellar network environments.
|
|
@@ -146,8 +147,7 @@ export declare enum Routes {
|
|
|
146
147
|
SIGN_TRANSACTION = "SIGN_TRANSACTION",// User sign transaction view
|
|
147
148
|
SEND = "SEND",// User sign transaction view
|
|
148
149
|
ACTIVITY = "ACTIVITY",// User sign transaction view
|
|
149
|
-
OTP = "OTP"
|
|
150
|
-
SELECT_ASSET = "SELECT_ASSET"
|
|
150
|
+
OTP = "OTP"
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
* Modal state management interface.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluxcc/react",
|
|
3
3
|
"author": "Blux team",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.20",
|
|
5
5
|
"homepage": "https://blux.cc",
|
|
6
6
|
"description": "Connecting to the Stellar Ecosystem and Beyond",
|
|
7
7
|
"repository": {
|
|
@@ -39,26 +39,28 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/js": "^9.17.0",
|
|
42
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
42
43
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
44
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
43
45
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
44
46
|
"@rollup/plugin-terser": "^0.4.4",
|
|
45
47
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
48
|
+
"@tailwindcss/postcss": "^4.1.6",
|
|
46
49
|
"@types/react": "^19.0.2",
|
|
47
50
|
"@types/react-dom": "^19.0.2",
|
|
48
51
|
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
49
52
|
"@typescript-eslint/parser": "^8.19.1",
|
|
50
|
-
"autoprefixer": "^10.4.20",
|
|
51
53
|
"eslint": "^9.17.0",
|
|
52
54
|
"eslint-plugin-react": "^7.37.3",
|
|
53
55
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
54
56
|
"globals": "^15.14.0",
|
|
55
|
-
"postcss": "^8.
|
|
57
|
+
"postcss": "^8.5.3",
|
|
56
58
|
"prettier": "^3.5.3",
|
|
57
59
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
58
60
|
"rollup": "^4.29.1",
|
|
59
61
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
60
62
|
"rollup-plugin-postcss": "^4.0.2",
|
|
61
|
-
"tailwindcss": "^
|
|
63
|
+
"tailwindcss": "^4.1.6",
|
|
62
64
|
"tslib": "^2.8.1",
|
|
63
65
|
"typescript": "^5.7.2",
|
|
64
66
|
"typescript-eslint": "^8.19.1"
|
|
@@ -69,5 +71,8 @@
|
|
|
69
71
|
},
|
|
70
72
|
"sideEffects": [
|
|
71
73
|
"*.css"
|
|
72
|
-
]
|
|
74
|
+
],
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@hot-wallet/sdk": "^1.0.11"
|
|
77
|
+
}
|
|
73
78
|
}
|