@orderly.network/ui-tradingview 2.8.1 → 2.8.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 +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +4084 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4081 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -80,6 +80,14 @@ interface TradingviewWidgetPropsInterface {
|
|
|
80
80
|
root?: string;
|
|
81
81
|
content?: string;
|
|
82
82
|
};
|
|
83
|
+
/**
|
|
84
|
+
* Additional enabled features to merge with default enabled features
|
|
85
|
+
*/
|
|
86
|
+
enabled_features?: string[];
|
|
87
|
+
/**
|
|
88
|
+
* Additional disabled features to merge with default disabled features
|
|
89
|
+
*/
|
|
90
|
+
disabled_features?: string[];
|
|
83
91
|
}
|
|
84
92
|
interface TradingviewUIPropsInterface {
|
|
85
93
|
tradingViewScriptSrc?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,14 @@ interface TradingviewWidgetPropsInterface {
|
|
|
80
80
|
root?: string;
|
|
81
81
|
content?: string;
|
|
82
82
|
};
|
|
83
|
+
/**
|
|
84
|
+
* Additional enabled features to merge with default enabled features
|
|
85
|
+
*/
|
|
86
|
+
enabled_features?: string[];
|
|
87
|
+
/**
|
|
88
|
+
* Additional disabled features to merge with default disabled features
|
|
89
|
+
*/
|
|
90
|
+
disabled_features?: string[];
|
|
83
91
|
}
|
|
84
92
|
interface TradingviewUIPropsInterface {
|
|
85
93
|
tradingViewScriptSrc?: string;
|