@xswap-link/sdk 0.8.5 → 0.8.7
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/.github/workflows/pr_agent.yml +22 -0
- package/CHANGELOG.md +12 -0
- package/dist/index.global.js +116 -116
- package/dist/index.js +10 -10
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
- package/src/components/Swap/SwapView/SwapPanel/ChainPanel/ChainPicker/ChainItem/index.tsx +5 -7
- package/src/components/Swap/SwapView/SwapPanel/ChainPanel/ChainPicker/index.tsx +18 -2
- package/src/components/Swap/SwapView/SwapPanel/ChainPanel/index.tsx +1 -24
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/QuickPickTokenItem/index.tsx +2 -11
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/TokenItem/index.tsx +1 -1
- package/src/components/Swap/SwapView/SwapPanel/TokenPanel/TokenPicker/index.tsx +13 -6
- package/src/components/Swap/SwapView/SwapPanel/index.tsx +5 -1
- package/src/constants/index.ts +1 -1
- package/src/context/SwapProvider.tsx +66 -41
- package/src/utils/validation.ts +199 -180
- package/tailwind.config.js +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: AI Review
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [opened]
|
|
6
|
+
issue_comment:
|
|
7
|
+
jobs:
|
|
8
|
+
pr_agent_job:
|
|
9
|
+
if: ${{ github.event.sender.type != 'Bot' }}
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
issues: write
|
|
13
|
+
pull-requests: write
|
|
14
|
+
contents: write
|
|
15
|
+
name: Run pr agent on every pull request, respond to user comments
|
|
16
|
+
steps:
|
|
17
|
+
- name: PR Agent action step
|
|
18
|
+
id: pragent
|
|
19
|
+
uses: Codium-ai/pr-agent@main
|
|
20
|
+
env:
|
|
21
|
+
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
|
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @xswap-link/xswap-sdk
|
|
2
2
|
|
|
3
|
+
## 0.8.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c3b4ce3: Change initial chain and token values according to new specs
|
|
8
|
+
|
|
9
|
+
## 0.8.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6128c75: fixed widget width on mobile
|
|
14
|
+
|
|
3
15
|
## 0.8.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|