@gearbox-protocol/ui-kit 3.12.0-next.1 → 3.12.0-next.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnchainSDK } from '@gearbox-protocol/sdk';
|
|
2
2
|
import { TokenData } from '@gearbox-protocol/sdk/common-utils';
|
|
3
3
|
import { default as React } from 'react';
|
|
4
4
|
import { Address } from 'viem';
|
|
@@ -6,7 +6,7 @@ import { OraclesListProps } from './oracles-list';
|
|
|
6
6
|
/** Props for {@link OraclesAndLTLineView}. */
|
|
7
7
|
export interface OraclesAndLTLineViewProps {
|
|
8
8
|
readonly last: boolean;
|
|
9
|
-
readonly sdk:
|
|
9
|
+
readonly sdk: OnchainSDK | undefined;
|
|
10
10
|
readonly explorerInfo: OraclesListProps["explorerInfo"];
|
|
11
11
|
readonly token: TokenData;
|
|
12
12
|
readonly pool: Address;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnchainSDK } from '@gearbox-protocol/sdk';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
3
|
import { OraclesAndLTLineViewProps } from './oracles-and-lt-line-view';
|
|
4
4
|
import { OraclesAndLTTableRowModel } from './types';
|
|
5
5
|
/** Props for {@link OraclesAndLTTableView}. */
|
|
6
6
|
export interface OraclesAndLTTableViewProps {
|
|
7
|
-
readonly sdk:
|
|
7
|
+
readonly sdk: OnchainSDK | undefined;
|
|
8
8
|
readonly explorerInfo: OraclesAndLTLineViewProps["explorerInfo"];
|
|
9
9
|
readonly rows: ReadonlyArray<OraclesAndLTTableRowModel>;
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gearbox-protocol/ui-kit",
|
|
3
|
-
"version": "3.12.0-next.
|
|
3
|
+
"version": "3.12.0-next.2",
|
|
4
4
|
"description": "Internal UI components",
|
|
5
5
|
"repository": "https://github.com/gearbox-protocol/ui-kit",
|
|
6
6
|
"license": "MIT",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"@commitlint/cli": "^20.1.0",
|
|
154
154
|
"@commitlint/config-conventional": "^20.0.0",
|
|
155
155
|
"@gearbox-protocol/biome-config": "^1.0.2",
|
|
156
|
-
"@gearbox-protocol/sdk": "
|
|
156
|
+
"@gearbox-protocol/sdk": "14.5.10",
|
|
157
157
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
158
158
|
"@storybook/addon-a11y": "^10.0.8",
|
|
159
159
|
"@storybook/addon-docs": "^10.0.8",
|