@orderly.network/trading 2.8.1 → 2.8.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.
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +8354 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8340 -6
- 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;
|
|
@@ -413,6 +415,8 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
413
415
|
lastFundingRate: string | undefined;
|
|
414
416
|
estFundingRate: string | undefined;
|
|
415
417
|
estFundingFee: string;
|
|
418
|
+
lastFundingRateAnnualized: string | undefined;
|
|
419
|
+
estFundingRateAnnualized: string | undefined;
|
|
416
420
|
};
|
|
417
421
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
418
422
|
|
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;
|
|
@@ -413,6 +415,8 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
|
|
|
413
415
|
lastFundingRate: string | undefined;
|
|
414
416
|
estFundingRate: string | undefined;
|
|
415
417
|
estFundingFee: string;
|
|
418
|
+
lastFundingRateAnnualized: string | undefined;
|
|
419
|
+
estFundingRateAnnualized: string | undefined;
|
|
416
420
|
};
|
|
417
421
|
type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
|
|
418
422
|
|