@rainlanguage/ui-components 0.0.1-alpha.68 → 0.0.1-alpha.69
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/components/detail/TanstackOrderQuote.svelte +1 -1
- package/dist/components/detail/VaultDetail.svelte +1 -1
- package/dist/components/input/InputOrderHash.svelte +1 -1
- package/dist/components/input/InputRegistryUrl.svelte +1 -1
- package/dist/components/input/InputToken.svelte +2 -2
- package/dist/components/tables/VaultBalanceChangesTable.svelte +1 -1
- package/dist/components/wallet/WalletConnect.svelte +1 -1
- package/package.json +2 -2
|
@@ -36,7 +36,7 @@ $: orderModalArg = order;
|
|
|
36
36
|
|
|
37
37
|
<div class="mt-4">
|
|
38
38
|
<div class="mb-4 flex items-center justify-between">
|
|
39
|
-
<h2 class="text-lg font-semibold">Order
|
|
39
|
+
<h2 class="text-lg font-semibold">Order quotes</h2>
|
|
40
40
|
<div class="flex items-center gap-x-1">
|
|
41
41
|
{#if $orderQuoteQuery.data && $orderQuoteQuery.data.length > 0 && isHex($orderQuoteQuery.data[0].blockNumber)}
|
|
42
42
|
<EditableSpan
|
|
@@ -97,7 +97,7 @@ onDestroy(() => {
|
|
|
97
97
|
</CardProperty>
|
|
98
98
|
|
|
99
99
|
<CardProperty data-testid="vaultDetailOwnerAddress">
|
|
100
|
-
<svelte:fragment slot="key">Owner
|
|
100
|
+
<svelte:fragment slot="key">Owner address</svelte:fragment>
|
|
101
101
|
<svelte:fragment slot="value">
|
|
102
102
|
<Hash type={HashType.Wallet} value={data.owner} />
|
|
103
103
|
</svelte:fragment>
|
|
@@ -14,5 +14,5 @@ const loadRegistryUrl = () => {
|
|
|
14
14
|
placeholder="Enter URL to raw strategy registry file"
|
|
15
15
|
bind:value={newRegistryUrl}
|
|
16
16
|
/>
|
|
17
|
-
<Button class="text-nowrap" on:click={loadRegistryUrl}>Load
|
|
17
|
+
<Button class="text-nowrap" on:click={loadRegistryUrl}>Load registry URL</Button>
|
|
18
18
|
</div>
|
|
@@ -35,10 +35,10 @@ function decimalsComplete({ detail }) {
|
|
|
35
35
|
</div>
|
|
36
36
|
|
|
37
37
|
{#if !isAddressValid && address.length > 0}
|
|
38
|
-
<Helper class="mt-2 text-sm" color="red">Invalid
|
|
38
|
+
<Helper class="mt-2 text-sm" color="red">Invalid address</Helper>
|
|
39
39
|
{/if}
|
|
40
40
|
|
|
41
|
-
<Helper class="mt-2 text-sm">Token
|
|
41
|
+
<Helper class="mt-2 text-sm">Token address</Helper>
|
|
42
42
|
</div>
|
|
43
43
|
<div class="w-32 grow-0 break-all" data-testid="token-decimals-input">
|
|
44
44
|
<input
|
|
@@ -35,7 +35,7 @@ const AppTable = TanstackAppTable;
|
|
|
35
35
|
rowHoverable={false}
|
|
36
36
|
>
|
|
37
37
|
<svelte:fragment slot="title">
|
|
38
|
-
<Heading tag="h5" class="mb-4 mt-6 font-normal">Vault
|
|
38
|
+
<Heading tag="h5" class="mb-4 mt-6 font-normal">Vault balance changes</Heading>
|
|
39
39
|
</svelte:fragment>
|
|
40
40
|
<svelte:fragment slot="head">
|
|
41
41
|
<TableHeadCell padding="p-4">Date</TableHeadCell>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rainlanguage/ui-components",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.69",
|
|
4
4
|
"description": "A component library for building Svelte applications to be used with Raindex.",
|
|
5
5
|
"license": "LicenseRef-DCL-1.0",
|
|
6
6
|
"author": "Rain Open Source Software Ltd",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@fontsource/dm-sans": "5.1.0",
|
|
54
54
|
"@imask/svelte": "7.6.1",
|
|
55
55
|
"@observablehq/plot": "0.6.16",
|
|
56
|
-
"@rainlanguage/orderbook": "0.0.1-alpha.
|
|
56
|
+
"@rainlanguage/orderbook": "0.0.1-alpha.69",
|
|
57
57
|
"@reown/appkit": "1.6.4",
|
|
58
58
|
"@reown/appkit-adapter-wagmi": "1.6.4",
|
|
59
59
|
"@sentry/sveltekit": "7.120.0",
|