@orderly.network/ui-tradingview 2.10.1 → 2.10.2-alpha.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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +395 -88
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +398 -91
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -15459,6 +15459,8 @@ interface ColorConfigInterface {
|
|
|
15459
15459
|
closeIcon?: string;
|
|
15460
15460
|
volumeUpColor?: string;
|
|
15461
15461
|
volumeDownColor?: string;
|
|
15462
|
+
/** Liquidation line color; should match Position list Liq. Price (e.g. from --oui-color-warning-light). */
|
|
15463
|
+
liqLineColor?: string;
|
|
15462
15464
|
}
|
|
15463
15465
|
|
|
15464
15466
|
type TradingviewLocaleCode = LanguageCode;
|
|
@@ -15473,7 +15475,7 @@ interface TradingviewWidgetPropsInterface {
|
|
|
15473
15475
|
colorConfig?: ColorConfigInterface;
|
|
15474
15476
|
libraryPath?: string;
|
|
15475
15477
|
fullscreen?: boolean;
|
|
15476
|
-
theme?:
|
|
15478
|
+
theme?: "dark" | "light";
|
|
15477
15479
|
loadingScreen?: LoadingScreenOptions;
|
|
15478
15480
|
/**
|
|
15479
15481
|
* The locale of the tradingview.
|
package/dist/index.d.ts
CHANGED
|
@@ -15459,6 +15459,8 @@ interface ColorConfigInterface {
|
|
|
15459
15459
|
closeIcon?: string;
|
|
15460
15460
|
volumeUpColor?: string;
|
|
15461
15461
|
volumeDownColor?: string;
|
|
15462
|
+
/** Liquidation line color; should match Position list Liq. Price (e.g. from --oui-color-warning-light). */
|
|
15463
|
+
liqLineColor?: string;
|
|
15462
15464
|
}
|
|
15463
15465
|
|
|
15464
15466
|
type TradingviewLocaleCode = LanguageCode;
|
|
@@ -15473,7 +15475,7 @@ interface TradingviewWidgetPropsInterface {
|
|
|
15473
15475
|
colorConfig?: ColorConfigInterface;
|
|
15474
15476
|
libraryPath?: string;
|
|
15475
15477
|
fullscreen?: boolean;
|
|
15476
|
-
theme?:
|
|
15478
|
+
theme?: "dark" | "light";
|
|
15477
15479
|
loadingScreen?: LoadingScreenOptions;
|
|
15478
15480
|
/**
|
|
15479
15481
|
* The locale of the tradingview.
|