@kodiak-finance/orderly-trading 2.8.18 → 2.8.19-rc.0
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/index.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +9130 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9117 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
package/dist/index.d.mts
CHANGED
|
@@ -109,6 +109,8 @@ interface TradingViewConfigInterface {
|
|
|
109
109
|
customCssUrl?: string;
|
|
110
110
|
colorConfig?: ColorConfigInterface;
|
|
111
111
|
locale?: TradingviewWidgetPropsInterface["locale"];
|
|
112
|
+
enabled_features?: string[];
|
|
113
|
+
disabled_features?: string[];
|
|
112
114
|
}
|
|
113
115
|
interface ColorConfigInterface {
|
|
114
116
|
chartBG?: string;
|
|
@@ -410,6 +412,11 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
410
412
|
fundingPeriod: string;
|
|
411
413
|
capFunding: string;
|
|
412
414
|
floorFunding: string;
|
|
415
|
+
lastFundingRate: string | undefined;
|
|
416
|
+
estFundingRate: string | undefined;
|
|
417
|
+
estFundingFee: string;
|
|
418
|
+
lastFundingRateAnnualized: string | undefined;
|
|
419
|
+
estFundingRateAnnualized: string | undefined;
|
|
413
420
|
};
|
|
414
421
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
415
422
|
|
|
@@ -435,6 +442,7 @@ declare const useTradingScript: () => TradingPageState & {
|
|
|
435
442
|
onShowPortfolioSheet: () => void;
|
|
436
443
|
navigateToPortfolio: (() => void) | undefined;
|
|
437
444
|
isFirstTimeDeposit: boolean;
|
|
445
|
+
symbolInfoBarHeight: number;
|
|
438
446
|
max2XLSplitRef: RefObject<Split>;
|
|
439
447
|
tradingviewAndOrderbookSplitRef: RefObject<Split>;
|
|
440
448
|
onTradingviewAndOrderbookDragging: (preSize: number, nextSize: number) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -109,6 +109,8 @@ interface TradingViewConfigInterface {
|
|
|
109
109
|
customCssUrl?: string;
|
|
110
110
|
colorConfig?: ColorConfigInterface;
|
|
111
111
|
locale?: TradingviewWidgetPropsInterface["locale"];
|
|
112
|
+
enabled_features?: string[];
|
|
113
|
+
disabled_features?: string[];
|
|
112
114
|
}
|
|
113
115
|
interface ColorConfigInterface {
|
|
114
116
|
chartBG?: string;
|
|
@@ -410,6 +412,11 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
410
412
|
fundingPeriod: string;
|
|
411
413
|
capFunding: string;
|
|
412
414
|
floorFunding: string;
|
|
415
|
+
lastFundingRate: string | undefined;
|
|
416
|
+
estFundingRate: string | undefined;
|
|
417
|
+
estFundingFee: string;
|
|
418
|
+
lastFundingRateAnnualized: string | undefined;
|
|
419
|
+
estFundingRateAnnualized: string | undefined;
|
|
413
420
|
};
|
|
414
421
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
415
422
|
|
|
@@ -435,6 +442,7 @@ declare const useTradingScript: () => TradingPageState & {
|
|
|
435
442
|
onShowPortfolioSheet: () => void;
|
|
436
443
|
navigateToPortfolio: (() => void) | undefined;
|
|
437
444
|
isFirstTimeDeposit: boolean;
|
|
445
|
+
symbolInfoBarHeight: number;
|
|
438
446
|
max2XLSplitRef: RefObject<Split>;
|
|
439
447
|
tradingviewAndOrderbookSplitRef: RefObject<Split>;
|
|
440
448
|
onTradingviewAndOrderbookDragging: (preSize: number, nextSize: number) => void;
|