@make-software/csprclick-ui 1.5.0 → 1.7.2
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/.eslintignore +1 -0
- package/README.md +0 -1
- package/dist/cjs/lib/index.js +15 -7
- package/dist/cjs/lib/lib/BuyCspr/api/useOnRamApi.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/components/BuyCSPRForm.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/components/ChooseProvider.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/components/NoAvailableProviders.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/components/ProviderRow.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/components/RedirectionBlocked.d.ts +1 -1
- package/dist/cjs/lib/lib/BuyCspr/styles.d.ts +8 -0
- package/dist/cjs/lib/lib/BuyCspr/types.d.ts +1 -1
- package/dist/cjs/lib/lib/ChangeAccountConfirmation/ChangeAccountConfirmation.d.ts +1 -1
- package/dist/cjs/lib/lib/ClickUI.d.ts +1 -1
- package/dist/cjs/lib/lib/CrossNavigationMenu/InnerMenu.d.ts +3 -1
- package/dist/cjs/lib/lib/CustomSettingsSelector/CustomSettingsSelector.d.ts +2 -1
- package/dist/cjs/lib/lib/InfoPopup/InfoPopup.d.ts +1 -1
- package/dist/cjs/lib/lib/LangSwitch/components/LangSwitchContainerMobile.d.ts +1 -1
- package/dist/cjs/lib/lib/OneClickSignIn/OneClickSignIn.d.ts +1 -1
- package/dist/cjs/lib/lib/ProviderConnection/ProviderConnection.d.ts +1 -1
- package/dist/cjs/lib/lib/SignIn/components/SocialLogin.d.ts +1 -1
- package/dist/cjs/lib/lib/SkeletonLoader/SkeletonLoader.d.ts +1 -1
- package/dist/cjs/lib/lib/SwitchAccount/SwitchAccount.d.ts +2 -2
- package/dist/cjs/lib/lib/SwitchCurrency/SwitchCurrency.d.ts +2 -2
- package/dist/cjs/lib/lib/SwitchCurrency/components/CurrencyItemContainer.d.ts +1 -1
- package/dist/cjs/lib/lib/TopBar/TopBar.d.ts +1 -1
- package/dist/cjs/lib/lib/TopBar/components/CopyHashMenuItem.d.ts +1 -1
- package/dist/cjs/lib/lib/TopBar/components/DropdownPopupItem.d.ts +1 -1
- package/dist/cjs/lib/lib/TopBar/components/MobileDropdownContainer.d.ts +1 -1
- package/dist/cjs/lib/lib/TransactionReview/MessageSignatureInstructions.d.ts +1 -1
- package/dist/cjs/lib/lib/WalletConnect/WalletConnectConnection.d.ts +1 -1
- package/dist/cjs/lib/lib/WalletConnect/components/NewPairing.d.ts +1 -1
- package/dist/cjs/lib/lib/components/AccountListItem.d.ts +2 -2
- package/dist/cjs/lib/lib/components/FooterPolicies.d.ts +1 -1
- package/dist/cjs/lib/lib/components/ScrollContainer.d.ts +1 -1
- package/dist/cjs/lib/lib/types/customTopBarMenuSettings.d.ts +1 -1
- package/dist/cjs/lib/lib/types/networks.d.ts +1 -1
- package/dist/cjs/lib/lib/types/theme.d.ts +99 -6
- package/dist/index.d.ts +102 -9
- package/dist/lib/index.js +15 -7
- package/package.json +12 -11
- package/package.json.local +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@make-software/csprclick-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "CSPR.click UI package for React applications",
|
|
5
5
|
"main": "dist/cjs/lib/index.js",
|
|
6
6
|
"module": "dist/lib/index.js",
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
"repository": "https://github.com/make-software/casper-click-react",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"qrcode.react": "^3.1.0",
|
|
11
|
-
"react-loading-skeleton": "^3.3.1"
|
|
11
|
+
"react-loading-skeleton": "^3.3.1",
|
|
12
|
+
"react-select": "^5.8.3"
|
|
12
13
|
},
|
|
13
14
|
"peerDependencies": {
|
|
14
|
-
"@make-software/csprclick-core-client": "^1.
|
|
15
|
-
"@make-software/csprclick-core-types": "^1.
|
|
15
|
+
"@make-software/csprclick-core-client": "^1.7.2",
|
|
16
|
+
"@make-software/csprclick-core-types": "^1.7.2",
|
|
16
17
|
"react": ">=17.0.2",
|
|
17
18
|
"react-country-flag": "^3.1.0",
|
|
18
19
|
"react-dom": ">=17.0.2",
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
|
|
28
29
|
"lint": "eslint .",
|
|
29
30
|
"lint:fix": "eslint --fix",
|
|
30
|
-
"format": "prettier --write
|
|
31
|
+
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
|
|
31
32
|
},
|
|
32
33
|
"eslintConfig": {
|
|
33
34
|
"extends": [
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
56
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
|
|
56
|
-
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#
|
|
57
|
+
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#82b547662bd2b070fcde818b74950b30b95750aa",
|
|
57
58
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
58
59
|
"@rollup/plugin-image": "^3.0.2",
|
|
59
60
|
"@rollup/plugin-json": "^6.0.0",
|
|
@@ -70,12 +71,12 @@
|
|
|
70
71
|
"@typescript-eslint/parser": "^5.57.1",
|
|
71
72
|
"cross-env": "^7.0.3",
|
|
72
73
|
"dotenv": "^16.3.1",
|
|
73
|
-
"eslint": "^8.
|
|
74
|
-
"eslint-config-prettier": "^
|
|
75
|
-
"eslint-plugin-
|
|
76
|
-
"eslint-plugin-
|
|
74
|
+
"eslint": "^8.56.0",
|
|
75
|
+
"eslint-config-prettier": "^9.1.0",
|
|
76
|
+
"eslint-plugin-formatjs": "^4.12.2",
|
|
77
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
77
78
|
"gulp": "^5.0.0",
|
|
78
|
-
"prettier": "^2.
|
|
79
|
+
"prettier": "^3.2.5",
|
|
79
80
|
"react": "18.2.0",
|
|
80
81
|
"react-dom": "18.2.0",
|
|
81
82
|
"rollup": "^3.28.1",
|
package/package.json.local
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@make-software/csprclick-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "CSPR.click UI package for React applications",
|
|
5
5
|
"main": "dist/cjs/lib/index.js",
|
|
6
6
|
"module": "dist/lib/index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"repository": "https://github.com/make-software/casper-click-react",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"qrcode.react": "^3.1.0",
|
|
11
|
-
"react-loading-skeleton": "^3.3.1"
|
|
11
|
+
"react-loading-skeleton": "^3.3.1",
|
|
12
|
+
"react-select": "^5.8.3"
|
|
12
13
|
},
|
|
13
14
|
"peerDependencies": {
|
|
14
15
|
"@make-software/csprclick-core-client": "file:../casper-click-websdk/dist/web-sdk",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
56
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
|
|
56
|
-
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#
|
|
57
|
+
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#82b547662bd2b070fcde818b74950b30b95750aa",
|
|
57
58
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
58
59
|
"@rollup/plugin-image": "^3.0.2",
|
|
59
60
|
"@rollup/plugin-json": "^6.0.0",
|