@lifi/widget 1.0.0 → 1.0.1

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/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @lifi/widget
2
+
3
+ LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
4
+
5
+ ## Installation
6
+
7
+ Install the package in your project directory with:
8
+
9
+ ```sh
10
+ // with npm
11
+ npm install @lifi/widget
12
+
13
+ // with yarn
14
+ yarn add @lifi/widget
15
+ ```
16
+
17
+ ## Documentation
18
+
19
+ [The documentation.](https://docs.li.fi/)
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const ButtonTooltip: ({ title, children, }: {
2
3
  title?: string | undefined;
3
4
  children: JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { SwapFormTypeProps } from '../../providers/SwapFormProvider';
2
3
  export declare const SwapInputAdornment: ({ formType }: SwapFormTypeProps) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@lifi/widget",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
+ "description": "LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.",
4
5
  "sideEffects": false,
5
6
  "main": "./index.js",
6
7
  "module": "./index.js",
@@ -23,12 +24,24 @@
23
24
  "bugs": {
24
25
  "url": "https://github.com/lifinance/widget/issues"
25
26
  },
27
+ "keywords": [
28
+ "widget",
29
+ "lifi-widget",
30
+ "bridge",
31
+ "swap",
32
+ "cross-chain",
33
+ "multi-chain",
34
+ "metamask",
35
+ "ethereum",
36
+ "web3",
37
+ "lifi"
38
+ ],
26
39
  "dependencies": {
27
40
  "@emotion/react": "^11.9.0",
28
41
  "@emotion/styled": "^11.8.1",
29
42
  "@ethersproject/experimental": "^5.6.2",
30
43
  "@ethersproject/providers": "^5.6.8",
31
- "@lifi/wallet-management": "^1.0.0",
44
+ "@lifi/wallet-management": "^1.0.1",
32
45
  "@lifinance/sdk": "^1.0.0-beta.8",
33
46
  "@mui/icons-material": "^5.8.2",
34
47
  "@mui/lab": "^5.0.0-alpha.84",
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { SwapFormTypeProps } from '../../providers/SwapFormProvider';
2
3
  export declare const ChainSelect: ({ formType }: SwapFormTypeProps) => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const SearchTokenInput: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const SelectWalletPage: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const AdvancedPreferences: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const GasPriceSelect: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const SettingsPage: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const SlippageInput: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Status } from '@lifinance/sdk';
2
3
  export declare function CircularProgress({ status }: {
3
4
  status: Status;