@make-software/csprclick-ui 1.3.0 → 1.4.3
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/cjs/lib/assets/animations/dotsDark.gif +0 -0
- package/dist/cjs/lib/assets/animations/dotsLight.gif +0 -0
- package/dist/cjs/lib/assets/animations/spinnerDark.gif +0 -0
- package/dist/cjs/lib/assets/animations/spinnerLight.gif +0 -0
- package/dist/cjs/lib/assets/generic-wallet-logo-dark.svg +4 -0
- package/dist/cjs/lib/assets/generic-wallet-logo.svg +4 -0
- package/dist/cjs/lib/assets/icons/ic-error.svg +10 -0
- package/dist/cjs/lib/assets/icons/ic-no-provider.png +0 -0
- package/dist/cjs/lib/assets/logos/casper-signer-sign.png +0 -0
- package/dist/cjs/lib/assets/logos/casper-wallet-sign.png +0 -0
- package/dist/cjs/lib/assets/logos/cspr-click-mono-black.png +0 -0
- package/dist/cjs/lib/assets/logos/walletconnect-logo.svg +16 -0
- package/dist/cjs/lib/assets/logos/walletconnect-white-bg.svg +3 -0
- package/dist/cjs/lib/index.js +11 -6
- package/dist/cjs/lib/lib/Click.d.ts +1 -1
- package/dist/cjs/lib/lib/ProviderConnection/ProviderConnection.d.ts +1 -1
- package/dist/cjs/lib/lib/{ProviderConnection/components → TransactionReview}/DeploySignatureInstructions.d.ts +3 -1
- package/dist/cjs/lib/lib/{ProviderConnection/components → TransactionReview}/MessageSignatureInstructions.d.ts +2 -1
- package/dist/cjs/lib/lib/TransactionReview/TransactionReviewHandler.d.ts +2 -0
- package/dist/cjs/lib/lib/WalletConnect/WalletConnectConnection.d.ts +22 -0
- package/dist/cjs/lib/lib/WalletConnect/components/ListAccounts.d.ts +13 -0
- package/dist/cjs/lib/lib/WalletConnect/components/NewPairing.d.ts +10 -0
- package/dist/cjs/lib/lib/WalletConnect/components/PairedWalletListItem.d.ts +13 -0
- package/dist/cjs/lib/lib/WalletConnect/components/PairedWallets.d.ts +13 -0
- package/dist/cjs/lib/lib/components/AccountIdenticon.d.ts +9 -0
- package/dist/cjs/lib/lib/components/AccountListItemMenu.d.ts +2 -1
- package/dist/cjs/lib/lib/components/WalletLogo.d.ts +3 -2
- package/dist/cjs/lib/lib/constants/index.d.ts +1 -0
- package/dist/cjs/lib/lib/index.d.ts +1 -0
- package/dist/cjs/lib/lib/types/wallet.d.ts +2 -11
- package/dist/index.d.ts +14 -13
- package/dist/lib/assets/animations/dotsDark.gif +0 -0
- package/dist/lib/assets/animations/dotsLight.gif +0 -0
- package/dist/lib/assets/animations/spinnerDark.gif +0 -0
- package/dist/lib/assets/animations/spinnerLight.gif +0 -0
- package/dist/lib/assets/generic-wallet-logo-dark.svg +4 -0
- package/dist/lib/assets/generic-wallet-logo.svg +4 -0
- package/dist/lib/assets/icons/ic-error.svg +10 -0
- package/dist/lib/assets/icons/ic-no-provider.png +0 -0
- package/dist/lib/assets/logos/casper-signer-sign.png +0 -0
- package/dist/lib/assets/logos/casper-wallet-sign.png +0 -0
- package/dist/lib/assets/logos/cspr-click-mono-black.png +0 -0
- package/dist/lib/assets/logos/walletconnect-logo.svg +16 -0
- package/dist/lib/assets/logos/walletconnect-white-bg.svg +3 -0
- package/dist/lib/index.js +11 -6
- package/package.json +10 -9
- package/package.json.local +9 -5
- package/dist/cjs/lib/lib/CustomerActionWindow/CustomerActionWindow.d.ts +0 -9
- package/dist/cjs/lib/lib/components/ModalHeader.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@make-software/csprclick-ui",
|
|
3
|
-
"version": "1.3
|
|
3
|
+
"version": "1.4.3",
|
|
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",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"repository": "https://github.com/make-software/casper-click-react",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"qrcode.react": "^3.1.0",
|
|
11
|
+
"react-loading-skeleton": "^3.3.1"
|
|
12
|
+
},
|
|
9
13
|
"peerDependencies": {
|
|
10
|
-
"@make-software/csprclick-core-client": "^1.
|
|
11
|
-
"@make-software/csprclick-core-types": "^1.
|
|
14
|
+
"@make-software/csprclick-core-client": "^1.4.5",
|
|
15
|
+
"@make-software/csprclick-core-types": "^1.4.5",
|
|
12
16
|
"react": ">=17.0.2",
|
|
13
17
|
"react-country-flag": "^3.1.0",
|
|
14
18
|
"react-dom": ">=17.0.2",
|
|
@@ -49,7 +53,7 @@
|
|
|
49
53
|
},
|
|
50
54
|
"devDependencies": {
|
|
51
55
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
|
|
52
|
-
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#
|
|
56
|
+
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#37096b29652e4dee14e114003c21c43f9ff5c81b",
|
|
53
57
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
54
58
|
"@rollup/plugin-image": "^3.0.2",
|
|
55
59
|
"@rollup/plugin-json": "^6.0.0",
|
|
@@ -70,7 +74,7 @@
|
|
|
70
74
|
"eslint-config-prettier": "^8.8.0",
|
|
71
75
|
"eslint-plugin-prettier": "^4.2.1",
|
|
72
76
|
"eslint-plugin-react": "^7.32.2",
|
|
73
|
-
"gulp": "^
|
|
77
|
+
"gulp": "^5.0.0",
|
|
74
78
|
"prettier": "^2.8.7",
|
|
75
79
|
"react": "18.2.0",
|
|
76
80
|
"react-dom": "18.2.0",
|
|
@@ -86,8 +90,5 @@
|
|
|
86
90
|
"blockchain",
|
|
87
91
|
"wallet",
|
|
88
92
|
"react"
|
|
89
|
-
]
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"react-loading-skeleton": "^3.3.1"
|
|
92
|
-
}
|
|
93
|
+
]
|
|
93
94
|
}
|
package/package.json.local
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@make-software/csprclick-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.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",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"repository": "https://github.com/make-software/casper-click-react",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"qrcode.react": "^3.1.0",
|
|
11
|
+
"react-loading-skeleton": "^3.3.1"
|
|
12
|
+
},
|
|
9
13
|
"peerDependencies": {
|
|
10
|
-
"@make-software/csprclick-core-client": "file:../
|
|
11
|
-
"@make-software/csprclick-core-types": "file:../
|
|
14
|
+
"@make-software/csprclick-core-client": "file:../casper-click-websdk/dist/web-sdk",
|
|
15
|
+
"@make-software/csprclick-core-types": "file:../casper-click-websdk/dist/types",
|
|
12
16
|
"react": ">=17.0.2",
|
|
13
17
|
"react-country-flag": "^3.1.0",
|
|
14
18
|
"react-dom": ">=17.0.2",
|
|
@@ -49,7 +53,7 @@
|
|
|
49
53
|
},
|
|
50
54
|
"devDependencies": {
|
|
51
55
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
|
|
52
|
-
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#
|
|
56
|
+
"@make-software/cspr-ui": "github:make-software/cspr-ui-library#37096b29652e4dee14e114003c21c43f9ff5c81b",
|
|
53
57
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
54
58
|
"@rollup/plugin-image": "^3.0.2",
|
|
55
59
|
"@rollup/plugin-json": "^6.0.0",
|
|
@@ -70,7 +74,7 @@
|
|
|
70
74
|
"eslint-config-prettier": "^8.8.0",
|
|
71
75
|
"eslint-plugin-prettier": "^4.2.1",
|
|
72
76
|
"eslint-plugin-react": "^7.32.2",
|
|
73
|
-
"gulp": "^
|
|
77
|
+
"gulp": "^5.0.0",
|
|
74
78
|
"prettier": "^2.8.7",
|
|
75
79
|
"react": "18.2.0",
|
|
76
80
|
"react-dom": "18.2.0",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
interface CustomerActionWindowProps {
|
|
2
|
-
isOpen: boolean;
|
|
3
|
-
title: string;
|
|
4
|
-
img?: string;
|
|
5
|
-
information?: string;
|
|
6
|
-
onDismiss: () => void;
|
|
7
|
-
}
|
|
8
|
-
declare const CustomerActionWindow: (props: CustomerActionWindowProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export default CustomerActionWindow;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ThemeModeType } from '@make-software/cspr-ui';
|
|
2
|
-
interface ModalHeaderProps {
|
|
3
|
-
onDismiss: () => void;
|
|
4
|
-
themeMode?: ThemeModeType;
|
|
5
|
-
}
|
|
6
|
-
declare const ModalHeader: ({ onDismiss, themeMode }: ModalHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default ModalHeader;
|